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 Minor_test_serial by
main.cpp
00001 #include "mbed.h" 00002 #include "MODSERIAL.h" 00003 00004 DigitalOut myled(LED_GREEN); 00005 MODSERIAL pc(USBTX, USBRX); 00006 00007 int main() 00008 { 00009 pc.baud(115200); 00010 00011 00012 char c; 00013 c = pc.getc(); 00014 00015 pc.printf("input user: %c\r\n", c); 00016 00017 while (true) { 00018 myled = !myled; 00019 wait(0.3f); 00020 00021 } 00022 }
Generated on Sat Jul 16 2022 03:22:19 by
1.7.2
