Problem with frame reception in UART DMA
Hello,
I am using the dma to receive data into the uart using the functions:
HAL_UARTEx_ReceiveToIdle_DMA(&huart2, UART_p.UART_Data, UART_DATA_LENGTH));
with UART_DATA_LENGTH = 200.
void HAL_UARTEx_RxEventCallback(UART_HandleTypeDef *huart, uint16_t Size);
DMA is configured in normal mode.
Everything works fine with frames < 100 characters but if I receive a frame > 100 characters then
the Size variable is equal to 100 while I have 130 characters. This then poses a problem for me when processing this frame in JSON.
Strange thing UART_Data is cut in two when I view it in debug mode.

Thanks for your help.
