• Conditional Compile
    I am using version 6.0 with a GNU makefile. I have conditional code (both *.C and *.A51)I want to enable/disable through the make file on the command line. I am using the #ifdef DEBUG #endif // for...
  • "conditional source"
    cross posted at 8052.com I have a module, which is used in four different products, that has way too many #ifdef's to be readable in debug and, at the same time, there is so much common code that making...
  • conditional if statement
    i want use if satement, to do something for the one time, example: main(){ char k; k=0; while(1){ if(k==0){ printfLCD("please only one time\n"); k=1; }//end if printfLCD("test message...
  • Conditional Breakpoint:
    I am a programmer at (C8051f980 (slabs I would like to try Conditional Breakpoint I did not know where to write the command line, for example BS COUNT ==4
  • Conditional compilation
    Hi, I am currently trying to get my code support two different type of LCD display, the only difference is the hardware level driver, so condional compilation directive has to be introduced. #ifdef...