Sample prog to test timer aspects

Dependencies:   TextLCD mbed-src

Testing mbed Timer

Revision:
1:fa206fcadfad
Parent:
0:a55017238349
Child:
2:a8c19b073684
--- a/main.cpp	Mon Mar 30 14:35:55 2015 +0000
+++ b/main.cpp	Mon Mar 30 14:44:14 2015 +0000
@@ -22,6 +22,7 @@
     lcd.printf("Testing Timer...\n");
     lcd.locate(0,1);  // Goto beginning of line = second par.
     lcd.printf("...us overflow  \n");
+    printf("Testing Timer us overflow\n");
 
     t.reset();
     t.start();
@@ -39,6 +40,6 @@
     lcd.locate(0,1);
     lcd.printf("Act. M: %08d",Millis);
 
-    printf("Last Millis: %06d",LastMillis);
-    printf("Act. Millis: %06d",Millis);
+    printf("Last Millis: %08d",LastMillis);
+    printf("Act. Millis: %08d",Millis);
 }