• 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...
  • 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...
  • 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...
  • Locating members of a struct variable to absolute memory locations
    I would like to know if I can use "_at_" to locate struct members to absolute memory locations. For instance, I have a struct variable defined as following, xdata struct { unsigned char member1;...