Skip to content

Commit 32ee6fd

Browse files
committed
build: New make target bootloader-debug
A new make target for developing without screen or developing on the bootloader itself. Always jumps to firmware and has RTT enabled.
1 parent 3e4f0b4 commit 32ee6fd

File tree

4 files changed

+18
-1
lines changed

4 files changed

+18
-1
lines changed

CMakeLists.txt

+2
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,8 @@ if(CMAKE_CROSSCOMPILING)
8585
message(STATUS "size: ${CMAKE_SIZE} ${TOOLCHAIN_PREFIX}size")
8686
endif()
8787

88+
option(BOOTLOADER_NO_MENU "Build a bootloader that always boots" OFF)
89+
8890

8991
#-----------------------------------------------------------------------------
9092
# Create version header file

Makefile

+6-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ build/Makefile:
2828

2929
build-debug/Makefile:
3030
mkdir -p build-debug
31-
cd build-debug && cmake -DCMAKE_TOOLCHAIN_FILE=arm.cmake -DCMAKE_BUILD_TYPE=DEBUG ..
31+
cd build-debug && cmake -DCMAKE_TOOLCHAIN_FILE=arm.cmake -DCMAKE_BUILD_TYPE=DEBUG -DBOOTLOADER_NO_MENU=1 ..
3232
$(MAKE) -C py/bitbox02
3333

3434
build-build/Makefile:
@@ -77,6 +77,9 @@ bootloader-btc-development: | build
7777
$(MAKE) -C build bootloader-btc-development.elf
7878
bootloader-btc-production: | build
7979
$(MAKE) -C build bootloader-btc-production.elf
80+
# The debug bootloader doesn't have a menu, and always boots. Use gdb/RTT
81+
bootloader-debug: | build-debug
82+
$(MAKE) -C build-debug bootloader.elf
8083
factory-setup: | build
8184
$(MAKE) -C build factory-setup.elf
8285
docs: | build
@@ -115,6 +118,8 @@ jlink-flash-bootloader-btc-development: | build
115118
JLinkExe -NoGui 1 -if SWD -device ATSAMD51J20 -speed 4000 -autoconnect 1 -CommanderScript ./build/scripts/bootloader-btc-development.jlink
116119
jlink-flash-bootloader-btc: | build
117120
JLinkExe -NoGui 1 -if SWD -device ATSAMD51J20 -speed 4000 -autoconnect 1 -CommanderScript ./build/scripts/bootloader-btc.jlink
121+
jlink-flash-bootloader-debug: | build-debug
122+
JLinkExe -NoGui 1 -if SWD -device ATSAMD51J20 -speed 4000 -autoconnect 1 -CommanderScript ./build-debug/scripts/bootloader.jlink
118123
jlink-flash-firmware: | build
119124
JLinkExe -NoGui 1 -if SWD -device ATSAMD51J20 -speed 4000 -autoconnect 1 -CommanderScript ./build/scripts/firmware.jlink
120125
jlink-flash-firmware-btc: | build

src/CMakeLists.txt

+4
Original file line numberDiff line numberDiff line change
@@ -445,6 +445,10 @@ if(CMAKE_CROSSCOMPILING)
445445
target_link_libraries(${elf} PRIVATE --specs=nano.specs)
446446
target_compile_options(${elf} PRIVATE --specs=nosys.specs)
447447
target_link_libraries(${elf} PRIVATE --specs=nosys.specs)
448+
449+
if(BOOTLOADER_NO_MENU)
450+
target_compile_definitions(${elf} PRIVATE BOOTLOADER_NO_MENU)
451+
endif()
448452
endforeach(bootloader)
449453

450454
foreach(bootloader ${DEVDEVICE-BOOTLOADERS})

src/bootloader/bootloader.c

+6
Original file line numberDiff line numberDiff line change
@@ -962,6 +962,12 @@ void bootloader_jump(void)
962962

963963
_check_init(&bootdata);
964964

965+
#if defined(BOOTLOADER_NO_MENU)
966+
if (((uint32_t*)FLASH_APP_START)[1] != 0xffffffff) {
967+
_binary_exec(); /* no return */
968+
}
969+
#endif
970+
965971
#if PLATFORM_BITBOX02 == 1
966972
if (shared_data.fields.upside_down) {
967973
screen_rotate();

0 commit comments

Comments
 (0)