Add pico_rand library (#1111)

Add a general purpose random number generator via pico_rand library. which tries to use as much real entropy as possible mixed into a PRNG

Co-authored-by: graham sanderson <graham.sanderson@raspberrypi.com>
This commit is contained in:
andygpz11
2023-01-26 19:25:27 +00:00
committed by GitHub
parent 67af83f069
commit b70f984f2a
12 changed files with 505 additions and 42 deletions

View File

@ -49,6 +49,7 @@ if (NOT PICO_BARE_METAL)
pico_add_subdirectory(pico_mem_ops)
pico_add_subdirectory(pico_malloc)
pico_add_subdirectory(pico_printf)
pico_add_subdirectory(pico_rand)
pico_add_subdirectory(pico_stdio)
pico_add_subdirectory(pico_stdio_semihosting)