• pragma error
    When I try to compile (even a simple hello world program) I get the error message: "parsing invoke-/#pragma-line unknown control" Could anyone tell me why? Greetings, Chris van Diemen
  • #pragma iv
    Hello: I have a project where I use #pragma iv(0x600), with Silabs processor 8051F385. This processor indicates that interrupt 8 at 0x43 is "special" and when generating HEX file, the address is...
  • Scope of #pragma
    If I declare: #pragma optimize(0) void func1(void) ... void func2(void) ... void func3(void) ... Does this apply only for func1 or for all subsequent functions (i.e. func2,func3,etc)?...
  • #pragma STRING(XDATA) fatal-error
    I am having the problem that my program now uses 32kb which means the memory is full. void print(char *x) { while(*x) { SerialWrite(*x++);} } SerialWrite looks like: void SerialWrite(unsigned...
  • #pragma SRC
    Hello, I have a problem with #pragma SRC directive. First, when I write it at the begining of my C file the compiler (CARM) writes: MAIN.C(1): warning C2: 'SRC': unknown #pragma/control, line...