• error: using (__attribute(__at()))
    I'm using the uvision and I want to define a variable at a specific address. I figured out that it should work like int main(void) { int var __attribute__((__at(0x40001000))) = 20; } but...
  • error: using (__attribute(__at()))
    I'm using the uvision and I want to define a variable at a specific address. I figured out that it should work like int main(void) { int var __attribute__((__at(0x40001000))) = 20; } but...
  • Absolute variable location
    On my program for the LPC2129 using the RealView toolchain, For this line of code: unsigned int StandardFilter[2] _at_ 0xE0038000; I get the following error: CAN_RX.C(31): error: #65: expected...
  • Absolute variable location
    On my program for the LPC2129 using the RealView toolchain, For this line of code: unsigned int StandardFilter[2] _at_ 0xE0038000; I get the following error: CAN_RX.C(31): error: #65: expected...
  • Absolute Variable location problem
    I have the following code: volatile BYTE xdata RxQueue[RX_MAX_QUEUE] _at_ MEM_RXQUEUE; both RX_MAX_QUEUE and MEM_RXQUEUE is defined as constants. but I get an error: *** ERROR C129 IN...