• Inexecutable statements inside switch case
    I have a segment of codes as follows. 'app' is a structure variable. The code can successfully pass the compiling process and run but contains some inexecutable important commands, which can't be...
  • Inexecutable statements inside switch case
    I have a segment of codes as follows. 'app' is a structure variable. The code can successfully pass the compiling process and run but contains some inexecutable important commands, which can't be...
  • switch case statement bouncing
    switch(periodplay) { default : NVIC_ST_RELOAD_R = 0;Sound_Off(); break; case 0x01: NVIC_ST_RELOAD_R = beatC0 ; break; case 0x02: NVIC_ST_RELOAD_R = beatD; break; case 0x04 : NVIC_ST_RELOAD_R =...
  • problem with case statement
    I am executing the following code part (KEIL development environment, Microcontroller ADuC7020). if I do insert the "case: 1" structure in func1(), the debugger does not start. If I delete the "case...
  • Switch Case Statement problem
    I am using switch statement as follows uint16 val; switch (val) { case 0x0000: ... break case 0x0001: ... break case 0x0000: ... break case 0x0000: ... break case 0x0000: ... break...