Blocking of the program flow with data reception with interruption through the USART port
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2021-08-12 12:54 AM
I am having problems receiving data through the USART port. It enters the interrupt well but when it enters the HAL_UART_Receive function the program is blocked in the UART_WaitOnFlagUntilTimeout function.
As I understand it, this works, it waits until the RXNE bit is set to zero, but it is set to zero as soon as we enter the HAL_UART_Receive function.
I attach images so that you can see how my project code is, if someone can give me some advice whether I am doing it wrong or it is necessary to change something I would be very grateful.
- Labels:
-
STM32F4 Series
-
UART-USART
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2021-08-12 4:46 AM
Don't seem to understand how interrupts work.
Don't use the blocking function, use the HAL_UART_ReceiveIT() externally, and manage the fill content of the array in the callback.
Up vote any posts that you find helpful, it shows what's working..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2021-08-12 5:57 AM
Look at examples in CubeMX to understand the correct way to call things.
