main API Callbacks#
These callbacks were contributed by the main API.
Functions#
Performs any additional initialization required at system startup.
Called in each iteration of the main application loop.
Function Documentation#
emberAfMainInitCallback#
void emberAfMainInitCallback (void )
Performs any additional initialization required at system startup.
N/A |
Main Init.
This function is called when the application starts and can be used to perform any additional initialization required at system startup.
1430
of file ./app/ncp/doc/callback.doc
emberAfMainTickCallback#
void emberAfMainTickCallback (void )
Called in each iteration of the main application loop.
N/A |
Main Tick.
This function is called in each iteration of the main application loop and can be used to perform periodic functions. The frequency with which this function is called depends on how quickly the main loop runs. If the application blocks at any time during the main loop, this function will not be called until execution resumes.
1442
of file ./app/ncp/doc/callback.doc