diff options
Diffstat (limited to 'cortex-m-rt/examples/rand.rs')
-rw-r--r-- | cortex-m-rt/examples/rand.rs | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/cortex-m-rt/examples/rand.rs b/cortex-m-rt/examples/rand.rs deleted file mode 100644 index 358868b..0000000 --- a/cortex-m-rt/examples/rand.rs +++ /dev/null @@ -1,24 +0,0 @@ -//! Use rand crate to ensure it's configured for no_std compatbility - -#![deny(warnings)] -#![no_main] -#![no_std] - -extern crate cortex_m_rt as rt; -use rt::entry; - -extern crate panic_halt; - -extern crate rand; -use rand::Rng; -use rand::SeedableRng; - -// the program entry point -#[entry] -fn main() -> ! { - let seed: [u8; 16] = [0; 16]; - let mut rng = rand::rngs::SmallRng::from_seed(seed); - let _ = rng.gen::<u32>(); - - loop {} -} |