Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

renames stm binary #97

Merged
merged 1 commit into from
Apr 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
)
Loading