STM32F103C8でUSBserialを使う(紹介)
目的
STM32F103C8の内部USBの仮想シリアルを使用する
全てそのまま
参考
#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);
}
}
Author And Source
この問題について(STM32F103C8でUSBserialを使う(紹介)), 我々は、より多くの情報をここで見つけました https://qiita.com/caa45040/items/90ab2e020fbb97e72614著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .