aboutsummaryrefslogtreecommitdiff
path: root/embassy-usb
diff options
context:
space:
mode:
author9names <[email protected]>2024-12-28 23:41:36 +1100
committer9names <[email protected]>2024-12-28 23:48:14 +1100
commitadf3134e7d722d4c400e09715b3a49a7ffd45edb (patch)
tree5e82973aa6570616f831dac312a3056c0a0c01db /embassy-usb
parentb71696c8f54edba664e9bfe77a1d86d09d88f52c (diff)
embassy-usb: fix building with optional log feature
Diffstat (limited to 'embassy-usb')
-rw-r--r--embassy-usb/src/class/uac1/speaker.rs2
-rw-r--r--embassy-usb/src/types.rs6
2 files changed, 7 insertions, 1 deletions
diff --git a/embassy-usb/src/class/uac1/speaker.rs b/embassy-usb/src/class/uac1/speaker.rs
index 96456d94a..6c3a4e378 100644
--- a/embassy-usb/src/class/uac1/speaker.rs
+++ b/embassy-usb/src/class/uac1/speaker.rs
@@ -579,7 +579,7 @@ impl<'d> Control<'d> {
579 579
580 if endpoint_address != self.streaming_endpoint_address { 580 if endpoint_address != self.streaming_endpoint_address {
581 debug!( 581 debug!(
582 "Unhandled endpoint set request for endpoint {} and control {} with data {}", 582 "Unhandled endpoint set request for endpoint {} and control {} with data {:?}",
583 endpoint_address, control_selector, data 583 endpoint_address, control_selector, data
584 ); 584 );
585 return None; 585 return None;
diff --git a/embassy-usb/src/types.rs b/embassy-usb/src/types.rs
index cb9fe2576..ea6347c7d 100644
--- a/embassy-usb/src/types.rs
+++ b/embassy-usb/src/types.rs
@@ -18,6 +18,12 @@ impl From<InterfaceNumber> for u8 {
18 } 18 }
19} 19}
20 20
21impl core::fmt::Display for InterfaceNumber {
22 fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
23 write!(f, "{}", self.0)
24 }
25}
26
21/// A handle for a USB string descriptor that contains its index. 27/// A handle for a USB string descriptor that contains its index.
22#[derive(Copy, Clone, Eq, PartialEq)] 28#[derive(Copy, Clone, Eq, PartialEq)]
23#[cfg_attr(feature = "defmt", derive(defmt::Format))] 29#[cfg_attr(feature = "defmt", derive(defmt::Format))]