aboutsummaryrefslogtreecommitdiff
path: root/embassy-stm32/src/lib.rs
diff options
context:
space:
mode:
authorBob McWhirter <[email protected]>2021-04-26 14:11:46 -0400
committerBob McWhirter <[email protected]>2021-04-26 14:11:46 -0400
commit0713947d675d98fbbeea0132a3d6ff1a4fdcf0fc (patch)
tree9a927995b16de3aa3eeddca63c345f98c839b78a /embassy-stm32/src/lib.rs
parentdc919c236d7ec7fe443b41cbaf3ad267fcacb7ca (diff)
Stub in RNG impl.
Diffstat (limited to 'embassy-stm32/src/lib.rs')
-rw-r--r--embassy-stm32/src/lib.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/embassy-stm32/src/lib.rs b/embassy-stm32/src/lib.rs
index 909d3466f..6d34a616d 100644
--- a/embassy-stm32/src/lib.rs
+++ b/embassy-stm32/src/lib.rs
@@ -20,6 +20,9 @@ pub mod gpio;
20#[macro_use] 20#[macro_use]
21pub mod usart; 21pub mod usart;
22 22
23#[macro_use]
24pub mod rng;
25
23// This must go LAST so that it sees the `impl_foo!` macros 26// This must go LAST so that it sees the `impl_foo!` macros
24mod chip; 27mod chip;
25pub use chip::{peripherals, Peripherals}; 28pub use chip::{peripherals, Peripherals};