Jump to bootloader STM32F103

Post here first, or if you can't find a relevant section!
Edogaldo
Posts: 10
Joined: Fri Jul 10, 2020 10:11 pm

Re: Jump to bootloader STM32F103

Post by Edogaldo »

Code: Select all

#if defined(USE_HAL_DRIVER)
HAL_RCC_DeInit();
#endif /* defined(USE_HAL_DRIVER) */
#if defined(USE_STDPERIPH_DRIVER)
RCC_DeInit();
#endif /* defined(USE_STDPERIPH_DRIVER) */
Can it be that neither USE_HAL_DRIVER nor USE_STDPERIPH_DRIVER are defined and thus the micro does not deinit the RCC?
Post Reply

Return to “General discussion”