Functions

void emberAfMainInitCallback (void)
 Performs any additional initialization required at system startup.
 
void emberAfMainTickCallback (void)
 Called in each iteration of the main application loop.

Detailed Description

These callbacks were contributed by the main API.

Function Documentation

void emberAfMainInitCallback ( void  )

Performs any additional initialization required at system startup.

Main Init.

This function is called when the application starts and can be used to perform any additional initialization required at system startup.

void emberAfMainTickCallback ( void  )

Called in each iteration of the main application loop.

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.