RS-485: HAL_UART_Receive_IT() causes HAL_UART_RxCpltCallback() firing without any data to receive on the line
I'm transmitting 1 byte of data via HAL_UART_Transmit_IT(). After this byte is being fed to the UART HAL via the abovementioned method, the HAL_UART_TxCpltCallback() callback is being fired (which is completely normal). The problem comes during the c...