• Preprocessor directives
    Hello together, I'm coding a simple UART-Application on the MCBSTM32 eval board and have problems with the preprocessor directives. I studied the whole documentation here and I'm pretty sure I'm...
  • C166 preprocessor
    Hi all, Is there an official specification of the Keil C166 preprocessor output? We're currently using 3.12. - Do lines always start with #line or can there be whitespace in front of #line? ...
  • Preprocessor Confusion?
    Why does Keil's C51 preprocessor work fine with: #define MULTPLR (unsigned char)((float)9.114584e-5 * (float)18432000 / (float)12) ...but consistently give the wrong result with: #define...
  • UV2 preprocessor
    uv2 -b "project name.uv2" build the project. Anyone knows of any switch which will invoke preprocessor option also. I want to create the *.I files. Regards, John
  • preprocessor bug?
    #define SYSYEM LINUX #if SYSTEM == LINUX #define HDR "linux.h" #elif SYSTEM == WINDOWS #define HDR "windows.h" #elif SYSTEM == C51 #define HDR "c51.h" #else #define HDR "default...