• What happens in this var declaration mistake?
    Here's an excerpt of my main module (the beginning of it): #include <ezusb.h> #include <ezregs.h> #include <tng.h> #include <string.h> #include "system.h" #include "lcd.h" #define IMG_SIZE...
  • LPC936 timer issues with xdata vars vs. idata vars
    I've had a working project/system for over 10 years now, and we developed an offshoot product using the same LPC936 chip. My delays on the working system uses Timer 0 and I have the interrupt set on...
  • Global Var
    HI!! I declared 3 global var, i call it inside diferent task and every execution this var should be updates but not to do it. I have a 8051 under evaluation board. Maybe can be a problem of my...
  • Does it possible to use local C-vars in "#pragma asm" block?
    Hi all. Does it possible to use local C-vars in "#pragma asm" block? I mean something like this: void Foo(void) { BYTE t; #pragma asm mov r0, t; // error A45: UNDEFINED SYMBOL ...
  • Issues with External RAM and xdata declaration ...
    Hi guys, I have my code defined in the uVision interface as LARGE and the memory model as SMALL, however, if I try to run the program with the memory model LARGE the program does not run (if everything...