cbAppWarmStart()
解説
cbAppWarmStart(bool_t bStart)
is called after RAM retention sleep is restored with bStart == FALSE
and then bStart == TRUE
. The bStart == TRUE
clause is used to initialize the application.
When waking from sleep, where RAM is not retained, cbAppColdStart()
is called.
Some hardware states, such as RAM and DIO, are retained, so there is no need to reinitialise them.
Argument
Type | Name | Remark |
---|---|---|
|
| It is called twice on return from sleep, the first time as |
bStart
FALSE
: It is just after the microcontroller wakes up, and no initialization of peripherals etc. has been done. Here you can check the cause of the recovery from sleep (e.g. whether it is due to a timer or a DIO interrupt).
TRUE
: Called after the initialization of the TWELITE NET library and hardware API, but before the initialization of the library. The following procedure is described here.
Hardware initialisation (many peripherals are reinitialised; DIO settings are retained during sleep)
Starts MAC layer by
ToCoNet_vMacStart()
Returns
None
Sample code
最終更新