| 189 | |
| 190 | |
| 191 | void blink42OD() { |
| 192 | if ( counter >= DURATION / PERIOD4 ) { |
| 193 | tBlink4On.disable(); |
| 194 | tBlink4Off.disable(); |
| 195 | |
| 196 | tBlink5On.setOnEnable( &blink51OE ); |
| 197 | tBlink5On.restartDelayed( 2 * TASK_SECOND ); |
| 198 | tBlink5Off.restartDelayed( 2 * TASK_SECOND + PERIOD5 / 2 ); |
| 199 | LEDOff(); |
| 200 | } |
| 201 | } |
| 202 | |
| 203 | |
| 204 | // === 5 ========================================== |
nothing calls this directly
no test coverage detected