• Strange problem with loop
    Hi. Ive been programing for nearly five months now so I am not a noob but I cannot understand this; for ( variable = 1 ; variable < 100 ; variable += 1 ) { // some code if ( foofar ) continue...
  • problem with loop counter
    I have just switched to KEIL from SDCC (it just wouldn't do what I needed!). I have a startup loop that allows some sleep time while some outboard sensors warm up. While they are doing this, I'm in a...
  • problem with loop counter
    I have just switched to KEIL from SDCC (it just wouldn't do what I needed!). I have a startup loop that allows some sleep time while some outboard sensors warm up. While they are doing this, I'm in a...
  • Strange problem with loop
    Hi. Ive been programing for nearly five months now so I am not a noob but I cannot understand this; for ( variable = 1 ; variable < 100 ; variable += 1 ) { // some code if ( foofar ) continue...
  • For loop problems, two deep
    In this program, I have a function where I have two for loops. Here's an example: "for (j = 0; j < 3; j++) { for (i = 0; i < 8; i++) { time = 1612 - (4 * i); wait (); } if (j < 2) {...