Hello to all. I have this EVAL-ADUC7026 Board from Analog Devices. Now i have a problem with the "hello world" Example: The ADUC7026 enters the Abort-Mode. I debuged it: The printf-function seems to use a putchar-function. There is a wrong address in C:\keil\arm\lib\putchar.c The Adress is 0xE0010014 (a LPC21xx address) So the ADUC7026 is in abort-mode. How can i work around. SOS HELP SOS Thanks in advice
Yould add the following line at the start of serial.c to avoid undefined externals:
#pragma INTERWORK int putchar (int c) { ... } ...
#pragma thumb int putchar(int ch) { /* Write character to Serial Port */ if (ch == '\n') { while(!(0x020==(COMSTA0 & 0x020))) {} COMTX = CR; /* output CR */ } while(!(0x020==(COMSTA0 & 0x020))) {} return (COMTX = ch); } Thank you all, your'e the greatest! :-)