rustfmt
This commit is contained in:
parent
2634a57098
commit
b1ba272987
2 changed files with 4 additions and 10 deletions
|
@ -6,11 +6,8 @@ use aes_gcm::aead::{AeadInPlace, KeyInit};
|
|||
use aes_gcm::Aes128Gcm;
|
||||
use defmt::info;
|
||||
use embassy_executor::Spawner;
|
||||
use embassy_stm32::{
|
||||
bind_interrupts,
|
||||
cryp::{self, *},
|
||||
};
|
||||
use embassy_stm32::{peripherals, Config};
|
||||
use embassy_stm32::cryp::{self, *};
|
||||
use embassy_stm32::{bind_interrupts, peripherals, Config};
|
||||
use embassy_time::Instant;
|
||||
use {defmt_rtt as _, panic_probe as _};
|
||||
|
||||
|
|
|
@ -10,11 +10,8 @@ use aes_gcm::aead::{AeadInPlace, KeyInit};
|
|||
use aes_gcm::Aes128Gcm;
|
||||
use common::*;
|
||||
use embassy_executor::Spawner;
|
||||
use embassy_stm32::{
|
||||
bind_interrupts,
|
||||
cryp::{self, *},
|
||||
peripherals,
|
||||
};
|
||||
use embassy_stm32::cryp::{self, *};
|
||||
use embassy_stm32::{bind_interrupts, peripherals};
|
||||
use {defmt_rtt as _, panic_probe as _};
|
||||
|
||||
bind_interrupts!(struct Irqs {
|
||||
|
|
Loading…
Reference in a new issue