diff options
author | Damien George <damien.p.george@gmail.com> | 2014-03-22 14:56:32 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-03-22 14:56:32 +0000 |
commit | ad7b84a7b9a1beb960d216995dd608b794440183 (patch) | |
tree | 42cd9a64d5a84343da64f57e3858466a820ac573 /stmhal/rng.h | |
parent | 684164a8cf8c2b989049d964ca7fc0419ada31ab (diff) | |
download | micropython-ad7b84a7b9a1beb960d216995dd608b794440183.tar.gz micropython-ad7b84a7b9a1beb960d216995dd608b794440183.zip |
stmhal: Add os module with a few basic functions.
Diffstat (limited to 'stmhal/rng.h')
-rw-r--r-- | stmhal/rng.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/stmhal/rng.h b/stmhal/rng.h index 99bc5dc5f6..5442d453c2 100644 --- a/stmhal/rng.h +++ b/stmhal/rng.h @@ -1,3 +1,4 @@ void rng_init(void); +uint32_t rng_get(void); MP_DECLARE_CONST_FUN_OBJ(pyb_rng_get_obj); |