#include "lm8.h" //#warning Investigate the proper msleep/usleep implementations const char _menu[] = "This is a test of the emergency broadcast system.\n" "\n" "This is only a test.\n" "\n" "Had this been a real emergency, grab your shorts and grunt.\n" "\n"; #if 0 static void puts (char *ch) { while (ch) { simple_putc (*ch); ch++; } } #endif void main (void) { #if 0 lm8_uart_init (0, 0x0000, 0); puts ("Hello World\n"); #endif // Main loop while (1) { } // Never return return; }