Skip to content

Commit

Permalink
renames stm binary
Browse files Browse the repository at this point in the history
  • Loading branch information
BlakeFreer committed Apr 13, 2024
1 parent 13f839d commit e9c9893
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion firmware/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ else
endif

st-flash: build
st-flash --reset write $(BUILD_DIR)/main.bin 0x08000000
st-flash --reset write $(BUILD_DIR)/$(PROJECT).bin 0x08000000

FORCE:
4 changes: 2 additions & 2 deletions firmware/mcal/stm32f767/PostBuild.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ add_custom_command(
TARGET main
POST_BUILD
COMMAND ${CMAKE_SIZE} $<TARGET_FILE:main>
COMMAND ${CMAKE_OBJCOPY} -O ihex $<TARGET_FILE:main> main.hex
COMMAND ${CMAKE_OBJCOPY} -O binary $<TARGET_FILE:main> main.bin
COMMAND ${CMAKE_OBJCOPY} -O ihex $<TARGET_FILE:main> ${PROJECT}.hex
COMMAND ${CMAKE_OBJCOPY} -O binary $<TARGET_FILE:main> ${PROJECT}.bin
# COMMAND ${CMAKE_OBJDUMP} -D -C $<TARGET_FILE:main> > main.s
)

0 comments on commit e9c9893

Please sign in to comment.