Skip to content

Commit

Permalink
style: fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
elagil committed Jul 29, 2024
1 parent 39c11c9 commit 03940dc
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions embassy-usb/src/class/uac1/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,23 @@
//! Class Definition for Audio Devices", Release 1.0.
//!
//! Currently, only a single output streaming interface supported (implementation of a speaker).
use crate::control::{self, InResponse, OutResponse, Recipient, Request, RequestType};
use crate::descriptor::{SynchronizationType, UsageType};
use crate::driver::{Driver, Endpoint, EndpointError, EndpointIn, EndpointOut, EndpointType};
use crate::types::InterfaceNumber;
use crate::{Builder, Handler};
use class_codes::*;
use core::cell::{Cell, RefCell};
use core::future::poll_fn;
use core::mem::MaybeUninit;
use core::sync::atomic::{AtomicBool, AtomicU32, Ordering};
use core::task::Poll;

use class_codes::*;
use embassy_sync::blocking_mutex::CriticalSectionMutex;
use embassy_sync::waitqueue::WakerRegistration;
use heapless::Vec;

use crate::control::{self, InResponse, OutResponse, Recipient, Request, RequestType};
use crate::descriptor::{SynchronizationType, UsageType};
use crate::driver::{Driver, Endpoint, EndpointError, EndpointIn, EndpointOut, EndpointType};
use crate::types::InterfaceNumber;
use crate::{Builder, Handler};

mod terminal_type;
pub use terminal_type::TerminalType;

Expand Down

0 comments on commit 03940dc

Please sign in to comment.