aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/boot/application/stm32wb-dfu/src/main.rs14
-rw-r--r--examples/boot/bootloader/stm32wb-dfu/src/main.rs14
2 files changed, 18 insertions, 10 deletions
diff --git a/examples/boot/application/stm32wb-dfu/src/main.rs b/examples/boot/application/stm32wb-dfu/src/main.rs
index 6236dfe52..4d6556597 100644
--- a/examples/boot/application/stm32wb-dfu/src/main.rs
+++ b/examples/boot/application/stm32wb-dfu/src/main.rs
@@ -70,11 +70,15 @@ async fn main(_spawner: Spawner) {
70 msos::PropertyData::RegMultiSz(DEVICE_INTERFACE_GUIDS), 70 msos::PropertyData::RegMultiSz(DEVICE_INTERFACE_GUIDS),
71 )); 71 ));
72 72
73 // For non-composite devices: 73 usb_dfu(&mut builder, &mut state, Duration::from_millis(2500), |func| {
74 usb_dfu(&mut builder, &mut state, Duration::from_millis(2500), None); 74 // You likely don't have to add these function level headers if your USB device is not composite
75 75 // (i.e. if your device does not expose another interface in addition to DFU)
76 // Or for composite devices: 76 func.msos_feature(msos::CompatibleIdFeatureDescriptor::new("WINUSB", ""));
77 // usb_dfu(&mut builder, &mut state, Duration::from_millis(2500), Some(DEVICE_INTERFACE_GUIDS)); 77 func.msos_feature(msos::RegistryPropertyFeatureDescriptor::new(
78 "DeviceInterfaceGUIDs",
79 msos::PropertyData::RegMultiSz(DEVICE_INTERFACE_GUIDS),
80 ));
81 });
78 82
79 let mut dev = builder.build(); 83 let mut dev = builder.build();
80 dev.run().await 84 dev.run().await
diff --git a/examples/boot/bootloader/stm32wb-dfu/src/main.rs b/examples/boot/bootloader/stm32wb-dfu/src/main.rs
index 8cfd4daa7..fea6f4a0d 100644
--- a/examples/boot/bootloader/stm32wb-dfu/src/main.rs
+++ b/examples/boot/bootloader/stm32wb-dfu/src/main.rs
@@ -78,11 +78,15 @@ fn main() -> ! {
78 msos::PropertyData::RegMultiSz(DEVICE_INTERFACE_GUIDS), 78 msos::PropertyData::RegMultiSz(DEVICE_INTERFACE_GUIDS),
79 )); 79 ));
80 80
81 // For non-composite devices: 81 usb_dfu::<_, _, _, _, 4096>(&mut builder, &mut state, |func| {
82 usb_dfu::<_, _, _, _, 4096>(&mut builder, &mut state, None); 82 // You likely don't have to add these function level headers if your USB device is not composite
83 83 // (i.e. if your device does not expose another interface in addition to DFU)
84 // Or for composite devices: 84 func.msos_feature(msos::CompatibleIdFeatureDescriptor::new("WINUSB", ""));
85 // usb_dfu::<_, _, _, _, 4096>(&mut builder, &mut state, Some(DEVICE_INTERFACE_GUIDS)); 85 func.msos_feature(msos::RegistryPropertyFeatureDescriptor::new(
86 "DeviceInterfaceGUIDs",
87 msos::PropertyData::RegMultiSz(DEVICE_INTERFACE_GUIDS),
88 ));
89 });
86 90
87 let mut dev = builder.build(); 91 let mut dev = builder.build();
88 embassy_futures::block_on(dev.run()); 92 embassy_futures::block_on(dev.run());