• compile level else statement
    I'm not sure if this would work but I thought I'd bounce this off you guys anyway. So, I have an if/elseif/else statement and cut out the else part to cut down on code space. I thought about leaving...
  • STM32F401 in debug mode working else not
    Hi I have a simple code with uart2. When i running code in debug mode and i have to send 4 bytes of data all data been send but when I off debug button in keil and click reset button on board , code...
  • Debug Skipping Function with IF ELSE
    Summary: Device TI MSC1210 A user function called in main passes a pointer to an array and either a 1 or a 0. The function uses the 1/0 to decide which serial port to use. It then outputs data from...
  • Simple IF THEN ELSE and SELECT CASE for assember
    Simple IF THEN ELSE and SELECT CASE macros to be used in assember for micros. The Select case macros I found on internet. I want to put together because are a complement to the IF. Can be used...
  • printf statement not working after putchar statement is used.
    Hi All I am using following putchar routine. void srl_putchar(unsigned char send) { SBUF = send; while (!TI); TI = 0; } after using above routine to transfer a character via serial port i continued...