Skip to content

Commit 55c77a7

Browse files
committed
Merge branch 'usb-manufacturer'
2 parents 670fd1d + fa706d9 commit 55c77a7

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ customers cannot upgrade their bootloader, its changes are recorded separately.
77
## Firmware
88

99
### [Unreleased]
10+
- Update manufacturer HID descriptor to bitbox.swiss
1011

1112
### 9.21.0
1213
- Bitcoin: add support for sending to silent payment (BIP-352) addresses
@@ -147,6 +148,9 @@ customers cannot upgrade their bootloader, its changes are recorded separately.
147148

148149
## Bootloader
149150

151+
### v1.0.7
152+
- Update manufacturer HID descriptor to bitbox.swiss
153+
150154
### v1.0.6
151155
- Replace root pubkeys
152156

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ endif()
9898
# Example 'v1.0.0'. They MUST not contain a pre-release label such as '-beta'.
9999
set(FIRMWARE_VERSION "v9.21.0")
100100
set(FIRMWARE_BTC_ONLY_VERSION "v9.21.0")
101-
set(BOOTLOADER_VERSION "v1.0.6")
101+
set(BOOTLOADER_VERSION "v1.0.7")
102102

103103
find_package(PythonInterp 3.6 REQUIRED)
104104

src/usb/class/usb_desc.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,10 @@
6060

6161
#define USB_DESC_IMANUFACT 1
6262
#define USB_DESC_IMANUFACT_STR_DESC \
63-
30, /* bLength */ \
63+
26, /* bLength */ \
6464
0x03, /* bDescriptorType */ \
65-
's', 0, 'h', 0, 'i', 0, 'f', 0, 't', 0, 'c', 0, 'r', 0, 'y', 0, 'p', 0, 't', 0, 'o', 0, \
66-
'.', 0, 'c', 0, 'h', 0,
65+
'b', 0, 'i', 0, 't', 0, 'b', 0, 'o', 0, 'x', 0, '.', 0, 's', 0, 'w', 0, 'i', 0, 's', 0, \
66+
's', 0,
6767

6868
#define USB_DESC_IPRODUCT 2
6969
#if defined(BOOTLOADER)

0 commit comments

Comments
 (0)