Search the web
Sign In
New User? Sign Up
gnu-m68hc11 · GNU 68HC11/HC12
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 6871 - 6900 of 9382   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
6871
Hi! I am trying to use gdb for debugging. In one of the timer interrupt applications, tried to watch the breakpoint on ISR. But I am doubtful whether...
hebs_s
Offline Send Email
Aug 2, 2005
2:43 pm
6872
Hi, Sorry forgot to mention two points as below. I am using DBug12 in POD mode for gdb debugging and GUI is ddd. regards, hebs ... changes...
hebs_s
Offline Send Email
Aug 2, 2005
3:03 pm
6873
Even if I can't help, answering the questions below might give some clues... ... Is this with the Jeff Whitis patch for gdb and 9S12 (or what target)? ... I'm...
Jefferson Smith
imajeff84663
Online Now Send Email
Aug 2, 2005
5:20 pm
6874
When I compile interrupt routines, there is a head and tail generated by GCC to save and restore _.tmp, _.xy, etc. I am trying to port FreeRTOS, and it is the...
Jefferson Smith
imajeff84663
Online Now Send Email
Aug 3, 2005
8:19 pm
6875
Look at http://www.speakeasy.org/~tomdean/os.html tomdean...
User Tomdean
tomdean@...
Send Email
Aug 3, 2005
9:04 pm
6876
Jeffs, Thanks! a lot. Sorry, I was not prepared to respond immediately. Pl find detailed answers to your queries.Request to provide further clues. regards, ...
hebs_s
Offline Send Email
Aug 4, 2005
6:38 am
6877
... Oh, I must have been thinking about another Jeff. It is Mark Whitis (I'm not good with names but I never forget a personality). Looks like same patch but...
Jefferson Smith
imajeff84663
Online Now Send Email
Aug 4, 2005
3:11 pm
6878
So you haven't solved it either. It looks like your code is saving every possible soft reg, and the programmer would have to remove the ones that are not used?...
Jefferson Smith
imajeff84663
Online Now Send Email
Aug 4, 2005
3:13 pm
6879
You can set the number of soft registers to some low value and just save those. I think you can get away with like three or four. It has been a long time... ...
User Tomdean
tomdean@...
Send Email
Aug 4, 2005
4:13 pm
6880
... Two _.d softregs is normal, but I get away mostly with 0 and 1 (my epressions are simple). I use -fomit-frame-pointer, but I notice it automatically uses...
Jefferson Smith
imajeff84663
Online Now Send Email
Aug 4, 2005
5:06 pm
6881
Look at __attribute__ for gcc. I believe there is a 'mark as used' attribute. Maybe you can do extern ... _.d1 __attribute((used))__ or, put...
User Tomdean
tomdean@...
Send Email
Aug 4, 2005
6:13 pm
6882
Hi all I am using a device with 64k memory. 48k (-2k due to back ground debugger) is for my program (linear without paging) and one page (0x3d) is being used...
Mark Butcher
mjbcswitzerland
Offline Send Email
Aug 4, 2005
11:07 pm
6883
Can someone please tell me how to get a vectors.c rather that vectors.s that I was able to get through the examples that came with the GCC compiler. Another...
sjellouli
Offline Send Email
Aug 5, 2005
2:21 am
6884
... Pretty easily: extern void _start(void); /* entry point in crt?.s */ void __attribute__ ((interrupt)) default_handler(void); void...
John-Mark Gurney
gurney_j@...
Send Email
Aug 5, 2005
4:44 am
6885
... Hmm. That sounds like a code generator issue, or environment issue. The code generator should generate a block of descriptors of areas to be zeroed, and...
Mike McCarty
Mike.McCarty@...
Send Email
Aug 5, 2005
1:34 pm
6886
Hey all, I am not quite sure how to go about doing inline asmbly with in GCC. I have a function that I'll just call foo for here and some global vars char...
Pete
prfetterer
Offline Send Email
Aug 5, 2005
1:53 pm
6887
... [snip] I found that CFLOW is installed on my machine (Fedora Core Linux). Mike -- p="p=%c%s%c;main(){printf(p,34,p,34);}";main(){printf(p,34,p,34);} This...
Mike McCarty
Mike.McCarty@...
Send Email
Aug 5, 2005
1:55 pm
6888
Look at http://www.speakeasy.org/~tomdean/os.html. You need to change the contents of EEPROM so the interrupt vectors point to some place in RAM. And, define...
User Tomdean
tomdean@...
Send Email
Aug 5, 2005
2:31 pm
6889
asm("ldx %0"::"m"( x )); asm("stx %0":"=m"( x ):); Look at the gcc doc on the m68hc11 site. http://www.gnu-m68hc11.org/ documentation, the gnu compiler,...
User Tomdean
tomdean@...
Send Email
Aug 5, 2005
2:42 pm
6890
I am designing a controller for experimental aircraft engine management. One of the requirements are robust environmental tolerance. My first version of the...
R. Michael Sharkey
rm_sharkey
Offline Send Email
Aug 5, 2005
3:32 pm
6891
Have you checked out the Megasquirt Forum? http://www.msefi.com We are using the HC08 for the original MS and the HCS12 for MSII. We have been having trouble...
Dean Manion
deaninkc
Offline Send Email
Aug 5, 2005
3:59 pm
6892
... [ Sorry to the list for getting slightly off topic here!!] Yes, I'm well aware of the Megasquirt project. :) This is good news. That's another option I'm...
R. Michael Sharkey
rm_sharkey
Offline Send Email
Aug 5, 2005
4:16 pm
6893
... My goal is to automatically exclude unused softregs. It looks like those attributes would only aid me to add more manually (something I could do myself...
Jefferson Smith
imajeff84663
Online Now Send Email
Aug 5, 2005
5:54 pm
6894
... migrating to ... small ... I thought the MC9S12C32 would be great, at least at the same frequency. Have you checked out those specs? It's designed with...
Jefferson Smith
imajeff84663
Online Now Send Email
Aug 5, 2005
6:12 pm
6895
... Hi Mike I did some more detailed work and can no longer reproduce the effect. Perhaps I was misinterpreting the map file previously. int i[100]; makes the...
Mark Butcher
mjbcswitzerland
Offline Send Email
Aug 5, 2005
6:41 pm
6896
Hi all Last night I added a little code and my project started to behave very strangely. After some debugging I found that some variables were not being...
Mark Butcher
mjbcswitzerland
Offline Send Email
Aug 5, 2005
6:52 pm
6897
... Thanks for the tip...yeah, they are modestly priced as well.....I've got some engineering samples on the way....boy, these families has such a bewildering ...
R. Michael Sharkey
rm_sharkey
Offline Send Email
Aug 5, 2005
9:00 pm
6898
... bewildering ... Still, nothing like PIC --jeffs...
Jefferson Smith
imajeff84663
Online Now Send Email
Aug 5, 2005
10:04 pm
6899
I tried making my .rodata overflow into the vectors, and I got a linker error (below). I did notice that as long as ld did not fill the space where .rodata ...
Jefferson Smith
imajeff84663
Online Now Send Email
Aug 5, 2005
10:15 pm
6900
I've been using the same compiler version for over 2 years, and I just downloaded/installed the latest one. I've been building/running the same program for...
ctrobot28
Offline Send Email
Aug 6, 2005
12:37 am
Messages 6871 - 6900 of 9382   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help