Skip to content

Commit 81b8f45

Browse files
committed
Merge branch 'touch'
2 parents 056145d + f35cbb0 commit 81b8f45

File tree

5 files changed

+9
-3
lines changed

5 files changed

+9
-3
lines changed

.github/workflows/ci-common.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,10 @@ jobs:
171171
- bootloader-btc-production
172172
- bootloader-plus
173173
- bootloader-plus-development
174+
- bootloader-plus-production
174175
- bootloader-plus-debug
176+
- bootloader-btc-plus-development
177+
- bootloader-btc-plus-production
175178
- firmware
176179
- firmware-btc
177180
- factory-setup

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,9 @@ customers cannot upgrade their bootloader, its changes are recorded separately.
159159

160160
## Bootloader
161161

162+
### v1.1.1
163+
- Fix touch in plus bootloader
164+
162165
### v1.1.0
163166
- Update manufacturer HID descriptor to bitbox.swiss
164167
- Implement OP_HARDWARE endpoint, to identify the secure chip model

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ endif()
9797
# Example 'v1.0.0'. They MUST not contain a pre-release label such as '-beta'.
9898
set(FIRMWARE_VERSION "v9.23.0")
9999
set(FIRMWARE_BTC_ONLY_VERSION "v9.23.0")
100-
set(BOOTLOADER_VERSION "v1.1.0")
100+
set(BOOTLOADER_VERSION "v1.1.1")
101101

102102
find_package(PythonInterp 3.6 REQUIRED)
103103

src/bootloader/startup.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ int main(void)
8383
platform_init();
8484
__stack_chk_guard = rand_sync_read32(&RAND_0);
8585
screen_init();
86-
#ifdef BOOTLOADER_DEVDEVICE
86+
#if defined(BOOTLOADER_DEVDEVICE) || PLATFORM_BITBOX02PLUS == 1
8787
qtouch_init();
8888
#endif
8989
bootloader_jump();

src/platform/driver_init.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,7 @@ void bootloader_init(void)
395395
_oled_set_pins();
396396
_ptc_clock_init();
397397

398-
#ifdef BOOTLOADER_DEVDEVICE
398+
#if defined(BOOTLOADER_DEVDEVICE) || PLATFORM_BITBOX02PLUS == 1
399399
// Only needed for qtouch, which is only needed in the devdevice bootloader.
400400
_timer_peripheral_init();
401401
#endif

0 commit comments

Comments
 (0)