formatting again

This commit is contained in:
ragarnoy 2025-05-10 08:41:44 +02:00
parent 6b84bf5137
commit f52c77693e
No known key found for this signature in database
GPG Key ID: 7A8FB9858346157A
2 changed files with 2 additions and 3 deletions

View File

@ -87,15 +87,15 @@ mod shared {
}
use core::mem::MaybeUninit;
use defmt::*;
use embassy_executor::Spawner;
use embassy_stm32::gpio::{Level, Output, Speed};
use embassy_stm32::SharedData;
use embassy_time::Timer;
use {defmt_rtt as _, panic_probe as _};
// Use our shared state from the module
use shared::SHARED_LED_STATE;
use {defmt_rtt as _, panic_probe as _};
#[link_section = ".ram_d3"]
static SHARED_DATA: MaybeUninit<SharedData> = MaybeUninit::uninit();

View File

@ -2,7 +2,6 @@
#![no_main]
use core::mem::MaybeUninit;
use cortex_m::asm;
use cortex_m::peripheral::{MPU, SCB};
use defmt::*;