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_serial.cpp
- Committer:
- va009039
- Date:
- 2015-06-20
- Revision:
- 1:eea17a20509b
- Parent:
- 0:3395699bd0df
- Child:
- 2:c0c2a61188a9
File content as of revision 1:eea17a20509b:
#if 0 // https://developer.mbed.org/handbook/USBSerial #include "mbed.h" #include "USBSerial.h" #include "STM32_USB48MHz.h" int main() { STM32_HSI_USB48MHz(); // HSI,USB48MHz,SYSCLK32MHz USBSerial serial; while(1) { serial.printf("I am a virtual serial port\r\n"); wait_ms(1000); } } #endif