You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
incorrectly assumes that the flash vectors are at location zero. This is not true if a stage two bootloader is used. The actual address of the vector table can be easily found and should be used instead of a macro. FLASH_BASE cannot be changed as it's used all over the BSP. The error is not that FLASH_BASE is wrong, but rather that it's being used here.
Same mistake also appears in the templates; but these are not being used (and the source templates could be removed to avoid confusion):
This line:
Arduino_Core_STM32/system/STM32L0xx/system_stm32l0xx.c
Line 178 in f8c1f7d
incorrectly assumes that the flash vectors are at location zero. This is not true if a stage two bootloader is used. The actual address of the vector table can be easily found and should be used instead of a macro.
FLASH_BASE
cannot be changed as it's used all over the BSP. The error is not thatFLASH_BASE
is wrong, but rather that it's being used here.Same mistake also appears in the templates; but these are not being used (and the source templates could be removed to avoid confusion):
Arduino_Core_STM32/system/Drivers/CMSIS/Device/ST/STM32L0xx/Source/Templates/system_stm32l0xx.c
Line 178 in f8c1f7d
The text was updated successfully, but these errors were encountered: