aboutsummaryrefslogtreecommitdiff
path: root/cortex-m-rt/examples/rand.rs
diff options
context:
space:
mode:
Diffstat (limited to 'cortex-m-rt/examples/rand.rs')
-rw-r--r--cortex-m-rt/examples/rand.rs24
1 files changed, 24 insertions, 0 deletions
diff --git a/cortex-m-rt/examples/rand.rs b/cortex-m-rt/examples/rand.rs
new file mode 100644
index 0000000..e0cfd31
--- /dev/null
+++ b/cortex-m-rt/examples/rand.rs
@@ -0,0 +1,24 @@
+//! 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_semihosting;
+
+extern crate rand;
+use rand::Rng;
+use rand::SeedableRng;
+
+// the program entry point
+#[entry]
+fn main() -> ! {
+ let seed: [u8; 32] = [0; 32];
+ let mut rng = rand::ChaChaRng::from_seed(seed);
+ let _ = rng.gen::<u32>();
+
+ loop {}
+}