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
For CMSIS framework we can specify custom system-file with absolute or relative path:
board_build.cmsis.system_file = system_stm32h7xx_singlecore.c # relative using file from framework
board_build.cmsis.system_file = $PROJECT_DIR/system.c # absolute path - using file from project folder
But for startup file we can specify the relative path only
board_build.cmsis.startup_file = startup_stm32h7b3xx.s #ok
board_build.cmsis.startup_file = $PROJECT_DIR/startup.s #not work
It's not convenient, but easy to fix.
The text was updated successfully, but these errors were encountered:
For CMSIS framework we can specify custom system-file with absolute or relative path:
board_build.cmsis.system_file = system_stm32h7xx_singlecore.c # relative using file from framework
board_build.cmsis.system_file = $PROJECT_DIR/system.c # absolute path - using file from project folder
But for startup file we can specify the relative path only
board_build.cmsis.startup_file = startup_stm32h7b3xx.s #ok
board_build.cmsis.startup_file = $PROJECT_DIR/startup.s #not work
It's not convenient, but easy to fix.
The text was updated successfully, but these errors were encountered: