refactor: re-formatted files

This commit is contained in:
Yandrik 2023-03-15 20:17:26 +01:00
parent 60e5232ee9
commit ef12ae6b04
3 changed files with 16 additions and 25 deletions

View file

@ -139,8 +139,7 @@ impl embedded_hal_async::delay::DelayUs for Timer {
/// Register the Timer interrupt for the monotonic. /// Register the Timer interrupt for the monotonic.
#[macro_export] #[macro_export]
macro_rules! make_rp2040_monotonic_handler { macro_rules! make_rp2040_monotonic_handler {
() => { () => {{
{
#[no_mangle] #[no_mangle]
#[allow(non_snake_case)] #[allow(non_snake_case)]
unsafe extern "C" fn TIMER_IRQ_0() { unsafe extern "C" fn TIMER_IRQ_0() {
@ -149,12 +148,8 @@ macro_rules! make_rp2040_monotonic_handler {
pub struct Rp2040Token; pub struct Rp2040Token;
unsafe impl $crate::InterruptToken<$crate::rp2040::Timer> unsafe impl $crate::InterruptToken<$crate::rp2040::Timer> for Rp2040Token {}
for Rp2040Token
{
}
Rp2040Token Rp2040Token
} }};
};
} }

View file

@ -157,8 +157,7 @@ impl embedded_hal_async::delay::DelayUs for Systick {
/// Register the Systick interrupt for the monotonic. /// Register the Systick interrupt for the monotonic.
#[macro_export] #[macro_export]
macro_rules! make_systick_handler { macro_rules! make_systick_handler {
() => { () => {{
{
#[no_mangle] #[no_mangle]
#[allow(non_snake_case)] #[allow(non_snake_case)]
unsafe extern "C" fn SysTick() { unsafe extern "C" fn SysTick() {
@ -167,12 +166,8 @@ macro_rules! make_systick_handler {
pub struct SystickToken; pub struct SystickToken;
unsafe impl $crate::InterruptToken<$crate::systick::Systick> unsafe impl $crate::InterruptToken<$crate::systick::Systick> for SystickToken {}
for SystickToken
{
}
SystickToken SystickToken
} }};
};
} }

View file

@ -103,7 +103,8 @@ impl<T, const N: usize> Channel<T, N> {
#[macro_export] #[macro_export]
macro_rules! make_channel { macro_rules! make_channel {
($type:path, $size:expr) => {{ ($type:path, $size:expr) => {{
static mut CHANNEL: $crate::channel::Channel<$type, $size> = $crate::channel::Channel::new(); static mut CHANNEL: $crate::channel::Channel<$type, $size> =
$crate::channel::Channel::new();
// SAFETY: This is safe as we hide the static mut from others to access it. // SAFETY: This is safe as we hide the static mut from others to access it.
// Only this point is where the mutable access happens. // Only this point is where the mutable access happens.
@ -125,8 +126,8 @@ pub enum TrySendError<T> {
} }
impl<T> core::fmt::Debug for NoReceiver<T> impl<T> core::fmt::Debug for NoReceiver<T>
where where
T: core::fmt::Debug, T: core::fmt::Debug,
{ {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
write!(f, "NoReceiver({:?})", self.0) write!(f, "NoReceiver({:?})", self.0)
@ -134,8 +135,8 @@ impl<T> core::fmt::Debug for NoReceiver<T>
} }
impl<T> core::fmt::Debug for TrySendError<T> impl<T> core::fmt::Debug for TrySendError<T>
where where
T: core::fmt::Debug, T: core::fmt::Debug,
{ {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
match self { match self {
@ -146,8 +147,8 @@ impl<T> core::fmt::Debug for TrySendError<T>
} }
impl<T> PartialEq for TrySendError<T> impl<T> PartialEq for TrySendError<T>
where where
T: PartialEq, T: PartialEq,
{ {
fn eq(&self, other: &Self) -> bool { fn eq(&self, other: &Self) -> bool {
match (self, other) { match (self, other) {
@ -301,7 +302,7 @@ impl<'a, T, const N: usize> Sender<'a, T, N> {
Poll::Pending Poll::Pending
} }
}) })
.await; .await;
// Make sure the link is removed from the queue. // Make sure the link is removed from the queue.
drop(dropper); drop(dropper);
@ -431,7 +432,7 @@ impl<'a, T, const N: usize> Receiver<'a, T, N> {
Poll::Pending Poll::Pending
}) })
.await .await
} }
/// Returns true if there are no `Sender`s. /// Returns true if there are no `Sender`s.