Teensy3.1 USB Serial and RTC test. Use this program to check the operation of the RTC after the 32KHz crystal has been fitted. If a back up cell has also been fitted the RTC will remain running after the main power has been removed. Reconnect the USB to the PC and the RTC time will be displayed when using a PC terminal program.

Dependencies:   USBDevice mbed-src

Fork of USBSerial-RTC-HelloWorld by Community Contributors

Revision:
7:5e693654d5b4
Parent:
6:aef06cd11ce4
Child:
8:90f8322a65f8
--- a/main.cpp	Wed Nov 30 11:17:49 2011 +0000
+++ b/main.cpp	Sun Oct 14 13:03:13 2012 +0000
@@ -1,14 +1,14 @@
-#include "mbed.h"
-#include "USBSerial.h"
-
-//Virtual serial port over USB
-USBSerial serial;
-
-int main(void) {
-
-    while(1)
-    {
-        serial.printf("I am a virtual serial port!\r\n");
-        wait(0.5);
-    }
-}
+#include "mbed.h"
+#include "USBSerial.h"
+ 
+//Virtual serial port over USB
+USBSerial serial;
+ 
+int main(void) {
+ 
+    while(1)
+    {
+        serial.printf("I am a virtual serial port\r\n");
+        wait(1);
+    }
+}
\ No newline at end of file