| 99 | static Task task6; |
| 100 | |
| 101 | void init() |
| 102 | { |
| 103 | Serial.begin(COM_SPEED_SERIAL); |
| 104 | Serial.systemDebugOutput(true); |
| 105 | |
| 106 | evaluateSpeed(); |
| 107 | |
| 108 | task1.queueDelegateCallback(); |
| 109 | |
| 110 | task2.setTimer(1600); |
| 111 | task2.callPlainOldOrdinaryFunction(); |
| 112 | |
| 113 | task3.setTimer(1900); |
| 114 | task3.showHowToUseBind(); |
| 115 | |
| 116 | task4.setTimer(1700); |
| 117 | task4.callMemberFunction(); |
| 118 | |
| 119 | task5.setTimer(1800); |
| 120 | task5.callLambda(); |
| 121 | } |
nothing calls this directly
no test coverage detected