Question
STM32F103RE combined UART receive via interrupt
Hi,I'am using STM32F103RE. i have enable 3 usart for GSM modem(USART1), Debug(UART4) and GPS(UART2). now i need to collect data under interrupt routing. it should be something like this, this is for ATMEL:D
ISR(USART0_TX_vect)
{
byte myChar= UDR0 ;
}i need to handle interrupt individually. i used this
HAL_UART_Receive_IT(&huart1,(uint8_t *)buff,10); but i have to call this everytime when i need read the receiver pin
i'am using STMcubeMX and KeiluVision
Thank in advance
