Skip to content

Commit ce7ce2a

Browse files
committed
AES driver
1 parent 5ad7500 commit ce7ce2a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

examples/aes.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// #![deny(warnings)]
1+
#![deny(warnings)]
22
#![no_main]
33
#![no_std]
44

@@ -21,7 +21,6 @@ fn main() -> ! {
2121
let dp = stm32::Peripherals::take().expect("cannot take peripherals");
2222
let mut rcc = dp.RCC.constrain();
2323
let aes = dp.AES.constrain(&mut rcc);
24-
defmt::info!(">>");
2524
let message = b"The quick brown ";
2625
let key = Key::try_from_slice(&[01; 32]).unwrap();
2726

0 commit comments

Comments
 (0)