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
main.cpp
- Committer:
- hudakz
- Date:
- 2016-07-08
- Revision:
- 0:0279e8c1f111
- Child:
- 1:0e1269402efd
File content as of revision 0:0279e8c1f111:
#include "stm32f103c8t6.h"
#include "mbed.h"
#include "USBSerial.h"
Serial pc(PA_2, PA_3);
DigitalOut myled(LED1);
int main() {
confSysClock(48); // Configuring system clock for USB
USBSerial usbSerial;
pc.baud(9600);
while(1) {
myled = !myled;
pc.printf("I am a serial port\r\n");
usbSerial.printf("I am an USB serial port\r\n");
wait_ms(1000);
}
}