mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-18 08:35:21 +00:00
Also fixed missing newline at end of file Signed-off-by: David B. Kinder <david.b.kinder@intel.com>
18 lines
519 B
Plaintext
18 lines
519 B
Plaintext
# Kconfig.esp32 - esp32 random generator driver configuration
|
|
#
|
|
# Copyright (c) 2017 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config RANDOM_ESP32_RNG
|
|
bool "ESP32 random number generator driver"
|
|
depends on RANDOM_GENERATOR && SOC_ESP32
|
|
default n
|
|
select RANDOM_HAS_DRIVER
|
|
help
|
|
This option enables the random number generator for ESP32 SoCs.
|
|
|
|
With Wi-Fi and Bluetooth disabled, this will produce pseudo-random
|
|
numbers: noise from these radios are used to feed entropy in this
|
|
generator.
|