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.
main.cpp
00001 #include "mbed.h" 00002 #include "USBSerial.h" 00003 00004 //Virtual serial port over USB 00005 USBSerial serial; 00006 Serial pc(USBTX, USBRX); 00007 00008 int main(void) { 00009 uint8_t buf[128]; 00010 while(1) 00011 { 00012 serial.scanf("%s", buf); 00013 serial.printf("recv: %s\r\n", buf); 00014 pc.printf("recv: %s\r\n", buf); 00015 } 00016 }
Generated on Thu Jul 14 2022 02:35:37 by
1.7.2