• 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...
  • 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...
  • Return Statements inside Case Statements
    I encountered a wierd runtime error after compiling and running the following statement: FuncCall(unsigned char casenum) { switch (casenum) { case 0x00: return 0x0100; default: return 0x1000;...
  • Key de-bouncing in 4x4 matrix....
    hi , i am not well in english ,try to understand my language. here i am using 4x4 matrix keypad .... problem: key de bouncing problem requirement: when i press key and i hold it some time...
  • 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...