Hello world

Dependencies:   mbed

Files at this revision

API Documentation at this revision

Comitter:
Niranjan_ravi
Date:
Thu Mar 14 23:04:27 2019 +0000
Commit message:
Hello World program for frdm boards

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
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Thu Mar 14 23:04:27 2019 +0000
@@ -0,0 +1,9 @@
+#include "mbed.h"
+ 
+Serial pc(USBTX, USBRX);
+int main() {
+    while(1) {
+        pc.baud(115200);
+        pc.printf("helloworld");
+    }
+}
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.bld	Thu Mar 14 23:04:27 2019 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/mbed_official/code/mbed/builds/e7ca05fa8600
\ No newline at end of file