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:
- 2019-05-13
- Revision:
- 8:114dbc93d9f7
- Parent:
- 7:bd396db062ea
File content as of revision 8:114dbc93d9f7:
#include "stm32f103c8t6.h"
#include "mbed.h"
#include "USBSerial.h"
DigitalOut myled(LED1);
int main() {
confSysClock(); //Configure system clock (72MHz HSE clock, 48MHz USB clock)
Serial pc(PA_2, PA_3);
// USBSerial usbSerial; // connection is blocked when USB is not plugged in
USBSerial usbSerial(0x1f00, 0x2012, 0x0001, false); // connection is not blocked when USB is not plugged in
while(1) {
myled = !myled;
pc.printf("I am a serial port\r\n"); // 9600 bit/s
usbSerial.printf("I am a USB serial port\r\n"); // 12 Mbit/s (USB full-speed)
wait_ms(1000);
}
}