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.
Dependencies: mbed mbed-STM32F103C8T6 USBDevice_STM32F103
Revision 1:0e1269402efd, committed 2016-07-08
- Comitter:
- hudakz
- Date:
- Fri Jul 08 21:29:34 2016 +0000
- Parent:
- 0:0279e8c1f111
- Child:
- 2:2c819b99d216
- Commit message:
- Updated
Changed in this revision
| main.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/main.cpp Fri Jul 08 21:19:45 2016 +0000
+++ b/main.cpp Fri Jul 08 21:29:34 2016 +0000
@@ -6,7 +6,7 @@
DigitalOut myled(LED1);
int main() {
- confSysClock(48); // Configuring system clock for USB
+ confSysClock(48); //Configure system clock (72MHz HSE clock, 48MHz APB1 peripheral clock)
USBSerial usbSerial;
pc.baud(9600);
@@ -14,7 +14,7 @@
while(1) {
myled = !myled;
pc.printf("I am a serial port\r\n");
- usbSerial.printf("I am an USB serial port\r\n");
+ usbSerial.printf("I am a USB serial port\r\n");
wait_ms(1000);
}
}