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.
Revision 0:41f6b1cbdfcd, committed 2019-03-14
- 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