Hello, I'm trying to test this DC for the first time. As i said in the title, i'm using DEV-C++ (windows plateforme) Compiller wich already uses gcc, how can i...
Salut, J'utilise DEV-C++ sous windows et j'aimerai installer GNU Development Chain for 68HC11 & 68HC12. Comment devrai-je configurer le DC afin de ne pas...
Sorry about this post. I did not know where else to ask for help. Here is my problem: I am trying to upload an .s19 file to my eval board that is running ...
Eric Nist
enist@...
Oct 3, 2004 3:18 am
5398
I havn't had much experience with buffalo but from what I know it doesn't use any handshaking or whatever. Just straight forward RS232. Are all these...
Remko, Thank you for the response. I am still unsure how to load a text file up with Buffalo running on my eval board. I did tweak a upload program and I am...
Eric Nist
enist@...
Oct 3, 2004 2:03 pm
5400
Please direct your responses to: raj at stecs.com Company: Our Client is a stealth-mode networking startup focused on addressing the growing internal security...
Hi, I am having an interesting problem running my code and I don't know how to fix it. In trying to locate the problem of where the processor is getting hung...
Eric Nist
enist@...
Oct 8, 2004 2:50 am
5402
What compiler are you using? tomdean...
Thomas D. Dean
tomdean@...
Oct 8, 2004 5:54 am
5403
m6811-elf-gcc gel-hc1x-1.6 Eric ... --...
Eric Nist
enist@...
Oct 8, 2004 1:26 pm
5404
Use m6811-elf-objdump to examine the .elf file. You will see an rts at the end of the function. Are you compiling for an '11 or an '12? If your code is not...
Thomas D. Dean
tomdean@...
Oct 8, 2004 4:36 pm
5405
Please give me the code to simulate an external port interrupt.I'm using code warrior processor expert for programming.How to activate the ISR routine? ...
Thank you for your help. I modified an example vectors.s file, assembled it and linked vectors.o with the other object files. This solved the problem. Chris...
Hi everybody, I'm a newbie on this group and try to run 68hc11 under Linux. I've bought a CME11-E9-EVBU and want to run hello.c. After some mistakes, I have...
Hi All, I am new to this group. I have a AXIOM MC9S12DP256B (68hc12) board. I could write a hello.c and make hello.s19 for it. It loaded successfully to the...
Hi, I'm using m68hc11-elf-gcc and have run afoul of the optimizer. Apparently, when it sees something like printf("Hello world.\n") the optimizer says "Aha!...
Frazer Williams
pfw@...
Oct 11, 2004 9:33 pm
5411
Check how your debugger handles interrupts. They probably need to be put in a special table. Good Luck, Tom ... From: smaitra2 [mailto:smaitra2@...] Sent:...
... You should never uses printf this way. Use printf("%s","Hello world.\n") instead. (There has been a nice article in Dr.Dobbs about the (mis)use of printf...
... Really? I don't think it's unreasonable.. Especially in a micro environment :) ... Where? :) -- Daniel O'Connor software and network engineer for Genesis...
Daniel ... Depends.But printf is a killer anyway :-) ... Can't find the number. Has been this year. Simple problem: gets(mystring); printf(mystring); Now, make...
... Except that if you're already using it, it's going to make smaller code than writing puts.. (Unless you use #define but that's just silly) ... OK. ... This...
... Not to seem too stupid, but as a neophyte, I have to ask what the problem is. I tried it and obviously it didn't print "%x %x" but probably some critical...
John William Goodwine...
jgoodwin@...
Oct 12, 2004 2:03 pm
5417
John ... ^^^^^ Had to look up this :-) ... Sure, above example is simple, but the nice thing is %n which writes to the stack and might be used to alter some...
Hi all, I am using the gnu-68hc1x-2.92 ToolChain on a MC9S12NE64 Target, I am facing some problems using bit fields, Consider that if i define a structure...
Kiran Chandrashekaran...
kiran.nair@...
Oct 12, 2004 3:02 pm
5419
It is standard definition in C that bitfields in a struct can be laid out in either direction. It has been advised for decades not to use this method when a...
The way I did it (although I used dbug12), was to use a bootloader first and download the program. Then, when I run gdb (still with elf file on the command...
Tom, ... i have no idea about the different methods of generating "asembly listings", the one I'm using is via objdump -S and the C source is included when...
I thought you might want the options which are passed in gcc to as, which tells it to send the listing to stdout. Then there are switches to enable high-level...