aboutsummaryrefslogtreecommitdiff
path: root/examples/boot/application
diff options
context:
space:
mode:
authorGerhard de Clercq <[email protected]>2025-05-14 09:56:28 +0200
committerGerhard de Clercq <[email protected]>2025-05-14 09:56:28 +0200
commit2bbc2045a4a6cb1e489295d258ac0cdb6338f90a (patch)
treed33a81dc984eea4cb849b8cd454b4e87c7f38685 /examples/boot/application
parentd4d10bad0bc2f2bbfbad116fb07e27eea4ac5af2 (diff)
[usb-dfu examples] Alert users to customise their WinUSB GUIDs
Diffstat (limited to 'examples/boot/application')
-rw-r--r--examples/boot/application/stm32wb-dfu/src/main.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/examples/boot/application/stm32wb-dfu/src/main.rs b/examples/boot/application/stm32wb-dfu/src/main.rs
index 4d6556597..5e7b71f5a 100644
--- a/examples/boot/application/stm32wb-dfu/src/main.rs
+++ b/examples/boot/application/stm32wb-dfu/src/main.rs
@@ -22,7 +22,9 @@ bind_interrupts!(struct Irqs {
22 USB_LP => usb::InterruptHandler<peripherals::USB>; 22 USB_LP => usb::InterruptHandler<peripherals::USB>;
23}); 23});
24 24
25// This is a randomly generated GUID to allow clients on Windows to find our device 25// This is a randomly generated GUID to allow clients on Windows to find your device.
26//
27// N.B. update to a custom GUID for your own device!
26const DEVICE_INTERFACE_GUIDS: &[&str] = &["{EAA9A5DC-30BA-44BC-9232-606CDC875321}"]; 28const DEVICE_INTERFACE_GUIDS: &[&str] = &["{EAA9A5DC-30BA-44BC-9232-606CDC875321}"];
27 29
28#[embassy_executor::main] 30#[embassy_executor::main]