diff main.c @ 57:adc9b1555f9d

Add the ability to log temperatures to SD card. Fix a few warnings while I am here.
author Daniel O'Connor <darius@dons.net.au>
date Mon, 08 Apr 2013 22:20:40 +0930
parents b21db2b47a27
children f1c9a51e368a
line wrap: on
line diff
--- a/main.c	Sun Apr 07 22:44:23 2013 +0930
+++ b/main.c	Mon Apr 08 22:20:40 2013 +0930
@@ -94,7 +94,7 @@
 	if (!isprint(c))
 	    continue;
 
-	cmd.buf[cmd.state] = tolower(c);
+	cmd.buf[cmd.state] = c;
 
 	/* Echo back to the user */
 	comm_put(cmd.buf[cmd.state]);