| 202 | |
| 203 | |
| 204 | void blink42OD() { |
| 205 | if ( counter >= DURATION / PERIOD4 ) { |
| 206 | tBlink4On.disable(); |
| 207 | tBlink4Off.disable(); |
| 208 | |
| 209 | tBlink5On.setOnEnable( &blink51OE ); |
| 210 | tBlink5On.restartDelayed( 2 * TASK_SECOND ); |
| 211 | tBlink5Off.restartDelayed( 2 * TASK_SECOND + PERIOD5 / 2 ); |
| 212 | LEDOff(); |
| 213 | } |
| 214 | } |
| 215 | |
| 216 | |
| 217 | // === 5 ========================================== |
nothing calls this directly
no test coverage detected