EmbeddedRelated.com

IAR Inline Assembly Error Unknown symbol

Started by Addison Mayberry in LPC200012 years ago 1 reply

I just upgraded to the latest version of IAR Kickstart (code-limited). When I tried recompiling my code (which includes a lot of inline assembly),...

I just upgraded to the latest version of IAR Kickstart (code-limited). When I tried recompiling my code (which includes a lot of inline assembly), I got a large number of errors where there were none before. I found the issue, and reproduced it in the simple program below: [code] int main() { asm("test_label:\n"); asm("jmp test_label\n"); return 0; } [/c


Porting code from IAR to GCC printf problem

Started by Martin Steppuhn in LPC200017 years ago 5 replies

Hi, I am changing from IAR (Kickstart) to Keil with GCC. It works fine but there ist a problem with the printf(). My putchar() is working...

Hi, I am changing from IAR (Kickstart) to Keil with GCC. It works fine but there ist a problem with the printf(). My putchar() is working and Code like this also: if(uart0_kbhit()) { c = uart0_getc(); printf("%02X\r\n",c); } But if there is no "\n" at the end of the printf, the putchar is not called. So printf("Hello world!\n"); is working but printf("Hello world!"); ...


IAR Error could not open source file

Started by Guru C in LPC200015 years ago 2 replies

Hi, ? I am using IAR embedded workbench 4.41. ? I am getting fatal error as "Fatal Error[Pe005]: could not open source file "ysizet.h"...

Hi, ? I am using IAR embedded workbench 4.41. ? I am getting fatal error as "Fatal Error[Pe005]: could not open source file "ysizet.h" C:\Program Files\IAR Systems\Embedded Workbench 4.0 Kickstart\ARM\INC\string.h 12 " ? please anybody suggest how to solve this problem? ? ? Thanks ------------------------------------


Error message: "Code in HEX file exceeds Flash Limitations!"

Started by crapnuts in LPC200018 years ago 4 replies

subject: "Code in HEX file exceeds Flash Limitations!" My setup: Embedded Workbench 4.0 Kickstart IDE, WindowsXP the target: Embedded Artists...

subject: "Code in HEX file exceeds Flash Limitations!" My setup: Embedded Workbench 4.0 Kickstart IDE, WindowsXP the target: Embedded Artists LPC2103 USB QuickStart Board with QuickStart Prototype Board downloader: Philips LPC2000 Flash Utility V2.2.3 My code: NAME main PUBLIC main COMMON INTVEC:CODE CODE32 B main RSEG IC...