• G coverage for cces code
    Hi, I have recently started working with g coverage, and its working great. But, I want to do coverage for a code in cces (Crosscore Embedded Studio). The gcc compiler is not reading my header files...
  • G coverage for cces code
    Hi, I have recently started working with g coverage, and its working great. But, I want to do coverage for a code in cces (Crosscore Embedded Studio). The gcc compiler is not reading my header files...
  • Dynamic Syntax Checking shows errors for switch case statement
    In the µVision editor(v5.13.0.0), the Dynamic Syntax Checking shows me an error for this switch case statement. Here is an example: switch (i) { case (int)("AB"[0]): break; default: break; } ...
  • Dynamic Syntax Checking shows errors for switch case statement
    In the µVision editor(v5.13.0.0), the Dynamic Syntax Checking shows me an error for this switch case statement. Here is an example: switch (i) { case (int)("AB"[0]): break; default: break; } ...
  • Switch / Case Optimization
    I've read through this thread: http://www.keil.com/forum/8020/ and I understand that: 1. For "a few" case values, I'll get a series of if / else if's. Not sure how many that is. 2. If the case...