nrf/mpconfigport: Enable seeding of the PRNG by the hardware RNG.

A suitable function already existed, so just the declaration was needed.
pull/10558/head
robert-hh 2023-01-23 12:09:05 +01:00 zatwierdzone przez Damien George
rodzic be420bf9bb
commit 0baf6c80d9
1 zmienionych plików z 5 dodań i 0 usunięć

Wyświetl plik

@ -277,6 +277,11 @@ typedef int mp_int_t; // must be pointer size
typedef unsigned int mp_uint_t; // must be pointer size
typedef long mp_off_t;
#if MICROPY_HW_ENABLE_RNG
#define MICROPY_PY_URANDOM_SEED_INIT_FUNC (rng_generate_random_word())
long unsigned int rng_generate_random_word(void);
#endif
#if BOARD_SPECIFIC_MODULES
#include "boardmodules.h"
#endif // BOARD_SPECIFIC_MODULES