=== 3 =====================================
| 152 | |
| 153 | // === 3 ===================================== |
| 154 | void blink3CB() { |
| 155 | if ( tBlink3.isFirstIteration() ) { |
| 156 | _PP(millis()); |
| 157 | _PL(": Blink3 - Run Counter driven"); |
| 158 | } |
| 159 | |
| 160 | if ( tBlink3.getRunCounter() & 1 ) { |
| 161 | LEDOn(); |
| 162 | } |
| 163 | else { |
| 164 | LEDOff(); |
| 165 | } |
| 166 | |
| 167 | if ( tBlink3.isLastIteration() ) { |
| 168 | tBlink4On.setOnEnable( &blink41OE ); |
| 169 | tBlink4On.restartDelayed( 2 * TASK_SECOND ); |
| 170 | LEDOff(); |
| 171 | } |
| 172 | } |
| 173 | |
| 174 | |
| 175 | // === 4 ============================================= |
nothing calls this directly
no test coverage detected