Resolved! Why doesn't receiver-interrupt work on UART4 in this example when it works for USART1 and USART3?
#define STARTUP_MSG "Test Rx-interrupt\n" #include <stdio.h> #include "stm32f4xx_hal.h" #define get_RTC HAL_GetTick #define LED_inv HAL_GPIO_TogglePin(GPIOA,GPIO_PIN_5) #define LED_on HAL_GPIO_WritePin(GPIOA,GPIO_PIN_5,GPIO_PIN_SET) #define LED_o...