UART receive until idle line.
Hi! I'm trying to use the following function:
HAL_UARTEx_ReceiveToIdle_IT(&hlpuart1, lpuartRXbuffer, 64);I've seen a few example codes using it but otherwise google shows nothing when I search for it. I think I should get some callback but I cannot figure what should it be. I tried the following:
void HAL_UARTEx_RxEventCalllback(UART_HandleTypeDef *huart, uint16_t Size)
{
}But there is no response.
I'm new to the STM32 software environment, coming from Arduino and Atmel so any advice where to find such information helps a lot.
