Unable to Serial Print and Serial Plot on Serial1 with STM32duino core ( Solved ) #1862
-
Hi, Nevermind, its because i choose Board part number: Generic F103C6Tx Here the code i use to test
I have try it using STM32F103C6T6 board and STM32F103C8T6 board STM32F103C6T6
STM32F103C8T6
OS Kubuntu Linux Best regrads, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi, While Generic mapped Serial to Serial2 (PA3/PA2):Arduino_Core_STM32/variants/STM32F1xx/F103C4T_F103C6(T-U)/variant_generic.h Lines 131 to 143 in 75b051e See https://github.com/stm32duino/wiki/wiki/API#hardwareserial
|
Beta Was this translation helpful? Give feedback.
Hi,
this is normal.
BluePill defined default
Serial
instance to be mapped onSerial1
(PA9/PA10):Arduino_Core_STM32/variants/STM32F1xx/F103C4T_F103C6(T-U)/variant_BLUEPILL_F103C6.h
Lines 125 to 137 in 75b051e
While Generic mapped
Serial
toSerial2
(PA3/PA2):Arduino_Core_STM32/variants/STM32F1xx/F103C4T_F103C6(T-U)/variant_generic.h
Lines …