System Initialization
[Nut/OS API]

Nut/OS initialization. More...

Collaboration diagram for System Initialization:

Nut/OS initialization.

System initialization is implemented in the architecture dependant parts. Applications do not need to call any specific routine. The system is automatically initialized before the application main routine starts running.

Links to the architecture specific initialization

A bare minimum code sample

 #include <compiler.h>

 int main(void)
 {
     for (;;);
 } 

Including compiler.h is currently required to fix a problem with GCC's special handling of main().


© 2000-2010 by contributors - visit http://www.ethernut.de/