Hi all... When trying to do a standard m6811-elf-objcopy command, i get the error: BFD: Error: First section in segment (.rodata) starts at 0xfab1 BFD:...
409
John Hilton
hiltonj+gnuhc@...
Mar 5, 2001 7:14 am
I have recently downloaded and installed the Windows port of GCC for hc11. Would anyone have any advice how to get started easily? Perhaps a step-by step...
410
Mark Williams
hirm@...
Mar 6, 2001 8:50 am
Hi guys... Well im finding that somewhere in the startup code, the uP is getting lost or going into a never ending loop. Ive found that if i put my lil bit of...
411
Mujic
mujic@...
Mar 6, 2001 4:28 pm
Hi All, I found that there is no flag for SPI read on 6811. Just I see the SPIF which means transferring is completed. Does the SPIF mean also receiving is...
412
Mike McCarty
jmccarty@...
Mar 6, 2001 5:14 pm
... It isn't clear what your question is. Do you need a description of what each routine/instruction accomplishes? ... I'm not a gcc expert, so I can't make...
413
Clifford Heath
cjh@...
Mar 6, 2001 11:50 pm
... Most commercial compilers have some optimisation even with the optimiser turned off - gcc doesn't, as simple as that. Try running with "-Os", that seems to...
414
Mike McCarty
jmccarty@...
Mar 7, 2001 12:07 am
... Sorry, you are correct. BSS is Block Started by Symbol, though. [snip] ... Not if main is called, it isn't. ... Yes. My point exactly. ... Let me restate...
415
Clifford Heath
cjh@...
Mar 7, 2001 12:11 am
... Yes, funny that I never knew that (first came across BSS in 1979 :-). ... Ahh, I see what you meant. ... Yes, just define a __premain function and the...
416
yann gouy
yann_gouy@...
Mar 7, 2001 8:18 am
... yes, in Master mode or in Slave mode, SPIF seems transmitting and receiving completed as the spi is full duplex. ===== Yann La Terre est le berceau de...
417
Mark Williams
hirm@...
Mar 7, 2001 8:31 am
LoL.... thanks for all this guys, but i already knew all this (except what BSS stood for). As i said, the problem is that, the code i gave doesnt work. It gets...
418
John T. Volpe
jtvolpe@...
Mar 7, 2001 1:33 pm
Yes. SPIF is the flag for both transmitting and receiving. Since all SPI transmissions happen on a single master clock with a single shift register, any data...
419
Kevin
kevin@...
Mar 7, 2001 3:53 pm
... From: <gnu-m68hc11@yahoogroups.com> To: <gnu-m68hc11@yahoogroups.com> Sent: Wednesday, March 07, 2001 5:49 AM Subject: Digest Number 138 To Post a message,...
420
Stephane Carrez
stephane.carrez@...
Mar 7, 2001 9:35 pm
Hi! ... Looks strange. I've never seen that Were you doing some strange link with a modified linker script? Stephane ... Home...
421
Stephane Carrez
stephane.carrez@...
Mar 7, 2001 9:35 pm
Hi! ... I've still not finished the tutorial I started last year (:- ... Well, a starting point is to have a look at the examples, build them and play with...
422
Stephane Carrez
stephane.carrez@...
Mar 7, 2001 9:36 pm
Hi! ... Yes... In libgcc, exit is defined as follows: .globl exit .weak exit exit: _exit: fatal: cli wai bra fatal This exit() can be overriden by...
423
Mark Williams
hirm@...
Mar 8, 2001 11:52 am
... No, not at all... Unfortunatly tho, to try and solve the prob (which i did), i went and changed the makefile, so now i cannot remeber what caused it :( If...
424
A Ramachandran
ramc@...
Mar 8, 2001 8:50 pm
hi, I have just started using an M68HC11D0 with 192 bytes RAM and 8k EEPROM. The RAM starts at 0x40 to 0xff .There are registers from 0x0 to 0x3f . The...
425
Clifford Heath
cjh@...
Mar 8, 2001 11:04 pm
... Really? Or do you mean EPROM? ... You need page0 (rwx) : ORIGIN = 0x40, LENGTH = 0x40 data : ORIGIN = 0x80, LENGTH = 0x80 I think. You can move the...
426
dan@...
Mar 9, 2001 12:14 am
Hi, I've just joined the list. If it's any help, I've found compiling the assembler and linker with Symantec c++ ver7.5 for the dos platform to be no problem. ...
427
dan@...
Mar 11, 2001 6:13 pm
I have it up and running. Had to compile, assemble, and link by hand as I'm learning the compiler switches. Good exercise so I'd get a feel of what files do...
428
Mark Williams
hirm@...
Mar 12, 2001 12:30 pm
Hi all... Im trying to do a moderatly simple calculation on a number pulled from TIC1 (recalculated every second). The problem is that i want to do this calc...
429
Franco De Angelis
fda@...
Mar 12, 2001 2:32 pm
Hi, ... I have already faced this problem and I may help, but I'm delivering my thesis these days and I have absolutely no time for anything else. If nobody...
430
dan@...
Mar 13, 2001 5:19 am
Maybe I have more questions than answers. Q.First, 10 at 50 is 20% and at 10,000 is .1%, is this what you want? If you interrupt twice a revolution, that could...
431
Mark Williams
hirm@...
Mar 13, 2001 12:58 pm
First i should prolly say, i have started rewriting my application all in ASM.... not enough rom space for C. ... Well..... yeh :) 1 RPM accuracy would be...
432
Campbell, Barrie (N-C...
barrie.campbell@...
Mar 15, 2001 5:26 pm
Compile, link, etc all went ok, but when I objcopy the elf file to s19, Dbug12 wont load it. It complains of "Bad Binary Data". Anyone have an idea? I dont...
433
Jeff Webb
mustang@...
Mar 15, 2001 8:03 pm
It may be an end-of-line convention problem. I've had problems downloading unix-style srecords before. If you are running windoze, try opening the file in...
434
Campbell, Barrie (N-C...
barrie.campbell@...
Mar 15, 2001 8:20 pm
Ahhh......... I indeed use Linux, and the asm12 files would have been created/saved under DOS sooo you are saying I need to add ^M to the end of the lines? ...
435
Jeff Webb
mustang@...
Mar 16, 2001 12:09 am
I think you can do the translation using the "tr" program (try "info tr"), but I wrote a perl script when I ran into the problem. I've attached it to this...
436
Stephane Carrez
stephane.carrez@...
Mar 16, 2001 8:05 pm
Hi! ... You can use 'chop' to drop the \n. For example: #!/usr/bin/perl while (<STDIN>) { chop; print "$_\r\n"; } Stephane ... Home...
437
Jeff Webb
mustang@...
Mar 17, 2001 1:57 am
... I knew someone would have a nicer solution. You can tell I'm not a perl programmer... Jeff Webb...