How to make correct timing when using UART RX/TX and EXTI_Callback function at the sametime?
Hi, I'm using NUCLEO-F103RB board and I want to transmit data to PC using with UART.The code below is that if I receive data from PC, the specific data is transmitted to PC.int main() { while (1) { HAL_UART_Receive(&huart2, uartRxData, 2, 1000); ...