We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ad7500 commit ce7ce2aCopy full SHA for ce7ce2a
examples/aes.rs
@@ -1,4 +1,4 @@
1
-// #![deny(warnings)]
+#![deny(warnings)]
2
#![no_main]
3
#![no_std]
4
@@ -21,7 +21,6 @@ fn main() -> ! {
21
let dp = stm32::Peripherals::take().expect("cannot take peripherals");
22
let mut rcc = dp.RCC.constrain();
23
let aes = dp.AES.constrain(&mut rcc);
24
- defmt::info!(">>");
25
let message = b"The quick brown ";
26
let key = Key::try_from_slice(&[01; 32]).unwrap();
27
0 commit comments