Skip to content
Open
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
3 changes: 2 additions & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,10 @@ ELF=target/thumbv6m-none-eabi/release/flash-algo
rust-objdump --disassemble $ELF > target/disassembly.s
rust-objdump -x $ELF > target/dump.txt
rust-nm $ELF -n > target/nm.txt
# printf "Algo binary size: `rust-objcopy $ELF --remove-section DeviceData -O binary - | wc -c` bytes\n"

function bin {
rust-objcopy $ELF -O binary - | base64 $BASE64_FLAGS
rust-objcopy $ELF --remove-section DeviceData -O binary - | base64 $BASE64_FLAGS
}

function sym {
Expand Down
Loading