User Activity

Hi everyone,I have written class that handles U(S)ART communication on top of HAL. In my application I have several objects of that class, e.g. one for USART2, another for LPUART1,...Currently, I have my own way of registering callbacks: I have stati...
Device: STM32L412Code: typedef void (*pFunction)(void);   volatile uint32_t addr = 0x1FFF0000; uint32_t JumpAddress = *(__IO uint32_t*) (addr + 4); pFunction Jump_To_Boot = (pFunction) JumpAddress;   #if defined(USE_HAL_DRIVER) HAL_RCC_DeInit(); #en...