• Cannot access global Variable
    Hallo, in the module with "main()" I declare a global variable of typ: param_konfiguration (structure) param_konfiguration xdata p_konfiguration; In an other file I try to access this structure...
  • Accessing mapped global variable by reference
    Hello, I'm using the LPC2468 micro controller. I have a struct mapped to the I2C register and in the I2C interrupt I statically access that struct, and everything works fine. I've since broken...
  • Global Variable.
    In my project I have two files. as follows File A int x; main() { x=2; } File B extern int x; { x=4; } When I compile both files independatly, there is no error. When I link both modules...
  • Global variable
    In my project I am using four source code files. There is one variable, which is used in all four files. When I declared this variable in one file and compiled the file, the compilation was successful...
  • Accessing C variables in assembly
    Hi I am using inline assebmly in my C program i have a global variable unsigned int length; I want to access this variable in my inline assembly routine using direct addressing. How can i find the...