The unified diff between revisions [253c6510..] and [a39fe798..] is displayed below. It can also be downloaded as a raw diff.

This diff has been restricted to the following files: 'main.c'

#
# old_revision [253c65100e2208e0b8c93178896f5aab89e4ec0b]
# new_revision [a39fe7980c8f14b70401f4c97f3e10232dce016a]
#
# patch "main.c"
#  from [d5ad069a51eff072171a593f4f480b1e8aab11bb]
#    to [38594d91649f88377c87a52973d831d9ffeafb70]
#
============================================================
--- main.c	d5ad069a51eff072171a593f4f480b1e8aab11bb
+++ main.c	38594d91649f88377c87a52973d831d9ffeafb70
@@ -159,21 +159,35 @@ void average_sample(void)
 	putstr(")\r\n");
 }
 
-int main(void) {
-	int i;
+void menu_handler(void);
 
+int main(void) {
 	init_interrupt();
 	init_uart();
 	init_i2c();
 	init_pins();
 	init_timer();
+
+	event_register(EVENT_UART_INPUT, menu_handler);
+
 	putstr("Your entire life has been a mathematical error... a mathematical error I'm about to correct!\r\n");
 
+	putstr("prompt> ");
+
 	while (1) {
-		char c;
-		putstr("prompt> ");
-		while (!getch(&c))
-			FP0XVAL ^= 0x04000000;
+		FP0XVAL ^= 0x04000000;
+		event_dispatch();
+	}
+
+	return 0;
+}
+
+void menu_handler(void)
+{
+	int i;
+	char c;
+
+	while (getch(&c)) {
 		if (c == 0x0a)
 			continue;
 		putch(c);
@@ -265,7 +279,6 @@ int main(void) {
 			reply("Unrecognised command.");
 			break;
 		}
+		putstr("prompt> ");
 	}
-
-	return 0;
 }