• 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...
  • problem in absolute variable location
    I would appreciate your help to fix this problem: -------------------------------------------------- <main.c> // include files #include "main.h" // main int main(void) { //test code for...
  • 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...
  • How to initialize an array at absolute location in code memory
    Hi, I've to modify a code previously written in Tasking compiler and at many places I find code like _rom USIGN08 TempTable[CAL_TEMPERATURES] _at(0xf35c)= { 0x0F,0x28,0x51,0x7A,0x8F }; Here...
  • Locating costants at absolute memory address
    Hello everybody, I'm using a stm32 family device (stm32f4), it is possible to place constants at absolute memory address? In my case R/O base starts from 0x0800 0000 and my code look like this: ...