40.7.2.1. Main loop

//Include the default AVR io-header
//This file(avr/io.) holds all of the informations about the mcu's ports, setup-registers and so on
#include <avr/io.h>

//The normal main-routine
int main(void) {
    //Our main-loop
    for(;;) {
        //Do nothing
    }
    //The compiler requires us to retunr something, even though we never get here...
    return 0;
}
Licence Creative Commons
Elektronika a počítače, jejímž autorem je Radek Hnilica, podléhá licenci Creative Commons Uveďte autora-Nevyužívejte dílo komerčně-Zachovejte licenci 3.0 Česká republika .