I'm using STM32F103(blue pill). Usart1 connection with pl2303. My codes right hereuint8_t data;
/* USER CODE END 2 */
/* Infinite loop */
/* USER CODE BEGIN WHILE */
while (1)
{
HAL_Delay(1000);
if(HAL_USART_Receive(&husart1, &data, s...
I'm using stm32f103c8 development board. I want to use USART(Sync Mode) protocol not UART. But I couldn't find usart library. What is your suggestion? Can I pull from random github project files? Is that good solution?