cancel
Showing results for 
Search instead for 
Did you mean: 

STM32F303: Issue with USART interrupt triggering repeatedly after RS485 bus clash

jamesmessenger9
Associate
Posted on April 26, 2016 at 11:01

Hi all,

I am having an issue with USART behaviour and am wondering if any of you can help! I am using an STM32F303 with three of its USARTs in use, of which USART1 is configured as an asynchronous RS485 port with its DE line controlled automatically. The TX, RX and DE pins from the microcontroller are connected to a TI SN65HVD1792 RS485 transceiver, which presents four lines (TX+, TX-, RX+, RX-) to the user for communication.

I am using interrupt-driven USART communication, which in most cases works absolutely fine. However, I am having an issue with handling the error condition in which the RS485 link is configured as two-wire (TX+/RX+ and TX-/RX- connected together, to form a +ve/-ve pair of wires used for both transmission and reception) and more than one device on the bus tries to transmit at the same time. When this happens, the STM32 stops responding to all serial communications until the power is cycled.

Looking a little bit closer at what is going on, I see that USART1_IRQHandler in stm32f3xx_it.c is being called repeatedly - over and over until I power-cycle the board. This calls HAL_UART_IRQHandler(&huart1) in stm32f3xx_hal_uart.c, the function of which is to check which interrupt has occurred (parity error, frame error, noise error, overrun, wakeup from stop, rx register not empty, tx ready, tx complete), deal with it appropriately, and then clear the interrupt state. However, none of these specific interrupts are recognised as having triggered - execution just passes by all the ''if'' statements, the function exits, and then runs again - endlessly.

I can't find any way of recognising that this has occurred, as it doesn't throw up any of the recognised error conditions. I'm aware that RS485 bus clash is something that should be avoided by good system design, but we can't rule out the possibility that it will happen when the system is in a customer installation - and it needs to be able to recognise the error, ignore the ''clashed'' message and continue - needing to power cycle it is unacceptable.

Does anyone have any ideas as to how to recognise this condition / stop the system from entering an interrupt loop?

Thanks in advance
1 REPLY 1
AvaTar
Lead
Posted on April 26, 2016 at 15:38

I vaguely remember having had a similar issue with another STM32 MCU.

Clearing all error interrupts flags (if no TX and no RX) in the UART status register helped then, but I didn't have the time and permission to investigate any further.

Not sure if this helps, since it relates to ''normal'' UART mode (RS232), not RS485 mode.