2021-12-26 07:15 PM
HI:
STM32F103
STM32CUBEMX V4.25.1
As shown in the figure, I read one byte in 1line mode, but sent five bytes, four more than I wanted.
thanks
Solved! Go to Solution.
2021-12-26 08:07 PM
That's just how the hardware works in one line receive mode. The clock continues until the peripheral is disabled which takes some time, particularly at high data rates.
You can use two line mode, or use your own drivers to control the peripheral more exactly.
2021-12-26 08:07 PM
That's just how the hardware works in one line receive mode. The clock continues until the peripheral is disabled which takes some time, particularly at high data rates.
You can use two line mode, or use your own drivers to control the peripheral more exactly.
2021-12-27 12:07 AM
Thank you for your reply, which solves my problem. Unfortunately, I have to use single line mode.