From 93955a2ba76af0f98257f29753156231323e4795 Mon Sep 17 00:00:00 2001 From: Anthony Hu Date: Tue, 23 Sep 2025 15:24:50 -0400 Subject: [PATCH] Fixing up a small documentation omission. --- wolfcrypt/src/port/rpi_pico/README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/wolfcrypt/src/port/rpi_pico/README.md b/wolfcrypt/src/port/rpi_pico/README.md index 240cc978276..2a5a638a7a3 100644 --- a/wolfcrypt/src/port/rpi_pico/README.md +++ b/wolfcrypt/src/port/rpi_pico/README.md @@ -38,7 +38,10 @@ To enable the RNG acceleration add the following: ```c #define WC_NO_HASHDRBG #define CUSTOM_RAND_GENERATE_BLOCK wc_pico_rng_gen_block +#define WC_RESEED_INTERVAL (1000000) ``` +NOTE: the value for `WC_RESEED_INTERVAL` here is just an example. You should find what is +most appropriate for your application and use case. In CMake you should add the following linking to both wolfSSL and the end application: