diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2018-10-03 22:40:01 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2018-10-11 10:50:51 -0400 |
commit | bc5e961d735f2994fab8f13cb2c39190c515774d (patch) | |
tree | 2f364ad2b864cbebfc4d46b88190d5a02e0ab901 /docs/stm32f1.md | |
parent | 1302514ea8723f05fc0a9ccdbc9cf45c4fa80f81 (diff) | |
download | kutter-bc5e961d735f2994fab8f13cb2c39190c515774d.tar.gz kutter-bc5e961d735f2994fab8f13cb2c39190c515774d.tar.xz kutter-bc5e961d735f2994fab8f13cb2c39190c515774d.zip |
stm32f1: Initial support for serial over USB
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'docs/stm32f1.md')
-rw-r--r-- | docs/stm32f1.md | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/docs/stm32f1.md b/docs/stm32f1.md index 04868ec6..e65113fd 100644 --- a/docs/stm32f1.md +++ b/docs/stm32f1.md @@ -20,10 +20,14 @@ STM32F1 port. Fixed pins ========== -The UART used for communication with the host is fixed to pins PA9 (TX) and PA10 -(RX). SWD pins (PA13/PA14) are enabled for debugging and cannot be used for any -I/O. SPI uses pins PB13/PB14/PB15, but the pins can be used as general I/O if -SPI is not used. +When using serial, the UART used for communication with the host is +fixed to pins PA9 (TX) and PA10 (RX). When using USB, the PA11 (D-) +and PA12 (D+) pins are reserved. The USB code assumes that PA12 (D+) +has a fixed pullup resistor attached to it. + +SWD pins (PA13/PA14) are enabled for debugging and cannot be used for +any I/O. SPI uses pins PB13/PB14/PB15, but the pins can be used as +general I/O if SPI is not used. Digital I/O =========== |