Functions | |
void | NutMain (void *arg) |
Main application routine. | |
NutIdle (void *arg) | |
Idle thread. | |
int | NutLoadConfig (void) |
Load Nut/OS configuration from the EEPROM. | |
int | NutSaveConfig (void) |
Save Nut/OS configuration in the EEPROM. | |
int | main (void) |
Nut/OS main entry. |
|
Nut/OS main entry.
This is the entry point for C programs. To hide neccessary system initialization from the user program, this entry point is included in the Nut/OS library as a separate object module. It will initialize memory management and the thread system and start an idle thread, which in turn initializes the timer functions. Finally NutMain() is called, which must be defined by the application and may be used to start additional application threads. |
|
Load Nut/OS configuration from the EEPROM.
This routine is automatically called during system initialization.
|
|
Main application routine. Nut/OS automatically calls this entry after initialization. |
|
Save Nut/OS configuration in the EEPROM.
|