MCPcopy Create free account
hub / github.com/SmingHub/Sming / init

Function init

samples/Basic_Delegates/app/application.cpp:101–121  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

99static Task task6;
100
101void 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}

Callers

nothing calls this directly

Calls 9

evaluateSpeedFunction · 0.85
systemDebugOutputMethod · 0.80
queueDelegateCallbackMethod · 0.80
setTimerMethod · 0.80
showHowToUseBindMethod · 0.80
callMemberFunctionMethod · 0.80
callLambdaMethod · 0.80
beginMethod · 0.45

Tested by

no test coverage detected