Does UART4 configured as UART_MODE_RX work?
I have STM32F765, did the configuration in CubeMX.I did try to receive with:uint8_t testData[10] = {0,}; HAL_StatusTypeDef status = 0; status = HAL_UART_Receive(&huart4, testData, 5, 2000);This did not work, status was HAL_TIMEOUT(I did try Receive_I...