Skip to content

Commit 9157696

Browse files
committed
Device restore DFU fix
1 parent b7da934 commit 9157696

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

config/sitemap.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -8223,8 +8223,8 @@
82238223
"date": "2023-11-08"
82248224
},
82258225
"getting-started/new.md": {
8226-
"hash": "cc8a1fabd35b5d9e594aa16df285fe975e2d180fd4e60fe6573e0ffcaeff423b",
8227-
"date": "2025-03-26"
8226+
"hash": "88cc1892b1fbf970d54fa885640da3991d95a6e63c06eb51705c2c678d67871b",
8227+
"date": "2025-03-27"
82288228
},
82298229
"getting-started/cloud/logic.md": {
82308230
"hash": "71a1026986a744d0446ae3a1156cbcb68840de48db731768ccedc6861c035c16",

src/assets/js/device-setup-usb.js

+1
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ $(document).ready(function() {
8484
const dcObj = deviceConstants[platformName];
8585
if (dcObj.id >= 0 && dcObj.generation >= 2 && dcObj.generation <= 4) {
8686
usbFilters.push({vendorId: 0x2b04, productId: (0xc000 | dcObj.id)});
87+
usbFilters.push({vendorId: 0x2b04, productId: (0xd000 | dcObj.id)});
8788
}
8889
}
8990

src/content/getting-started/new.md

+5
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@ When adding new items to this page:
2121
The header format must be exactly that because the search feature uses that to delimit entries, and determine the date of entries
2222
--}}
2323

24+
### Device restore DFU fix 2025-03-27
25+
26+
Fixed a recently introduced bug where you could not reconnect in DFU mode for Device Restore DFU, Web Device Doctor,
27+
and Product Device Flash Tool because no devices were displayed in the browser device selector.
28+
2429
### Band fit fix 2025-03-26
2530

2631
Fixed a bug in the Band Fit section of the [carrier list](/reference/cellular/cellular-carriers/). Countries were listed as

0 commit comments

Comments
 (0)