main API Callbacks#

These callbacks were contributed by the main API.

Functions#

void

Performs any additional initialization required at system startup.

void

Called in each iteration of the main application loop.

Function Documentation#

emberAfMainInitCallback#

void emberAfMainInitCallback (void )

Performs any additional initialization required at system startup.

Parameters
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.


Definition at line 1430 of file ./app/ncp/doc/callback.doc

emberAfMainTickCallback#

void emberAfMainTickCallback (void )

Called in each iteration of the main application loop.

Parameters
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.


Definition at line 1442 of file ./app/ncp/doc/callback.doc