• Multiple declaration of the same variable
    I builded a small project as follows: ============================= int a; int a; // Yes the same variable declared in the same way main() { ...// anything } ============================...
  • global variable/MULTIPLE PUBLIC DEFINITIONS
    Hi, I've split my project into files. I've defined some global variables in one of the header files as follows: unsigned char ToneDisp[16] = {'D','1','2','3','4','5','6','7','8','9','0',0x2A,0x23...
  • uVision multiple output file
    Hi all, I'm working with uVision2 v2.4 and I want to know if there's a way to define multiple output file names according to precompilation process. For example somthing like that: #ifdef _ED_ output_file_name...
  • Multiple HEX output file
    Hi,Sir! I want to get multiple hex file, for example, a boot section is a standlone hex file, other user code is another hex file? how to set up in UV4?
  • bdata across multiple files?
    I have data that I would like to efficiently address as both a byte and as 8 bits. The bdata type sounds like the way to go, but I can not make it work across multiple files. This program fails to compile...