aboutsummaryrefslogtreecommitdiff
path: root/examples/nrf/src/bin/usb_hid_mouse.rs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/nrf/src/bin/usb_hid_mouse.rs')
-rw-r--r--examples/nrf/src/bin/usb_hid_mouse.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/nrf/src/bin/usb_hid_mouse.rs b/examples/nrf/src/bin/usb_hid_mouse.rs
index e70dc51a5..c526c1c6f 100644
--- a/examples/nrf/src/bin/usb_hid_mouse.rs
+++ b/examples/nrf/src/bin/usb_hid_mouse.rs
@@ -50,7 +50,7 @@ async fn main(_spawner: Spawner, p: Peripherals) {
50 let mut device_descriptor = [0; 256]; 50 let mut device_descriptor = [0; 256];
51 let mut config_descriptor = [0; 256]; 51 let mut config_descriptor = [0; 256];
52 let mut bos_descriptor = [0; 256]; 52 let mut bos_descriptor = [0; 256];
53 let mut control_buf = [0; 16]; 53 let mut control_buf = [0; 64];
54 let request_handler = MyRequestHandler {}; 54 let request_handler = MyRequestHandler {};
55 55
56 let mut state = State::new(); 56 let mut state = State::new();