=== 3 =====================================
| 139 | |
| 140 | // === 3 ===================================== |
| 141 | void blink3CB() { |
| 142 | if ( tBlink3.isFirstIteration() ) { |
| 143 | _PP(millis()); |
| 144 | _PL(": Blink3 - Run Counter driven"); |
| 145 | } |
| 146 | |
| 147 | if ( tBlink3.getRunCounter() & 1 ) { |
| 148 | LEDOn(); |
| 149 | } |
| 150 | else { |
| 151 | LEDOff(); |
| 152 | } |
| 153 | |
| 154 | if ( tBlink3.isLastIteration() ) { |
| 155 | tBlink4On.setOnEnable( &blink41OE ); |
| 156 | tBlink4On.restartDelayed( 2 * TASK_SECOND ); |
| 157 | LEDOff(); |
| 158 | } |
| 159 | } |
| 160 | |
| 161 | |
| 162 | // === 4 ============================================= |
nothing calls this directly
no test coverage detected