• 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...
  • 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...
  • 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 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...
  • Locating initialized variables at absolute address
    Hello, As the Summary suggests, I am trying to Locate initialized variables at an absolute address in a code segment. I have followed the steps shown here http://www.keil.com/support/docs/301.htm...