Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of Example_printf by
Diff: main.cpp
- Revision:
- 0:f1ef33a82ddb
- Child:
- 1:039688a53fff
diff -r 000000000000 -r f1ef33a82ddb main.cpp
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp Tue Oct 07 02:15:37 2014 +0000
@@ -0,0 +1,10 @@
+//
+// This program prints "Hello World" to the terminal
+//
+#include "mbed.h"
+
+int main() {
+ printf("Hello World!\n\r");
+ while(1);
+ // Do nothing
+}