STM32L0 LPUART reboot
Hi,
MCU : STM32L010R8TX.
I have configured 2 UART peripheral in STM32.
LPUART1 for GNSS and UART2 for LTE Module Communication. Both are working on Interrupt Mode for receiving data.
Uart 2 communication is request and response based. When the LTE Module sends request STM32 will response to the system.
LPUart1 is initiated and enabled Interrupt. Currently the gnss module data is not processing. if uart rx callback is called ( HAL_UART_RxCpltCallback) it will check the uart Handler and abort Uart using HAL_UART_AbortReceive(&hlpuart1); and reinitiate aborted uart.
in HAL_UART_ErrorCallback also i am aborting and reinitiating Uart by clearing ErrorCode.
But in application am copying and processing only UART2 Received Buffer Data but not doing any process witih GNSS Uart (LPUART1) received data.
Does this cause a reboot of Mcu?
