ToCoNet_vMacStart()
Explanation
Initialization process of MAC layer.
It is usually written at the end of the second call processing part with TRUE argument in cbAppColdStart() , cbAppWarmStart() at startup.
For calls other than cbAppColdStart() and cbAppWarmStart(), the internal design is not such that problems can occur, but the behavior is undefined. If necessary, it is recommended to perform a sleep and then perform radio transmission after the sleep is restored.
Argument
None.
Returns
None.
Sample code
void cbAppWarmStart(bool_t bStart) {
if (!bStart) {
// very initial call
} else {
// initializing...
// finally start the MAC layer
ToCoNet_vMacStart();
}
}最終更新