Prints "hello world" to serial console
Toolkit:AVR Development System
Location:/bipom/devtools/WinAVR/minimaxavrc/Examples/hello
int main (void) { /* Initialize the system */ uart1Init(19200); /* Send a simple message */ uart1Printf("\n\rHello World!"); for (;;); }