stm32workshop demo

Dependencies:   mbed

Files at this revision

API Documentation at this revision

Comitter:
STM32Workshop
Date:
Thu Nov 09 09:16:41 2017 +0000
Commit message:
temp commit prinf

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
mbed.bld Show annotated file Show diff for this revision Revisions of this file
diff -r 000000000000 -r 3d4c65473e9d main.cpp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Thu Nov 09 09:16:41 2017 +0000
@@ -0,0 +1,22 @@
+#include "mbed.h"
+
+//------------------------------------
+// Hyperterminal configuration
+// 9600 bauds, 8-bit data, no parity
+//------------------------------------
+
+Serial pc(SERIAL_TX, SERIAL_RX);
+
+DigitalOut myled(LED1);
+
+int main()
+{
+    pc.baud(57600);
+    int i = 1;
+    pc.printf("Hello World !\r\n");
+    while(1) {
+        wait(1);
+        pc.printf("This program runs since %d seconds.\r\n", i++);
+        myled = !myled;
+    }
+}
diff -r 000000000000 -r 3d4c65473e9d mbed.bld
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.bld	Thu Nov 09 09:16:41 2017 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/mbed_official/code/mbed/builds/fb8e0ae1cceb
\ No newline at end of file