mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-06 05:15:46 +00:00
Added / Tested support for RNG on the STM32F767ZI nucleo board. Updated the SoC defconfig to auto-enable the driver when ENTROPY_GENERATOR is enabled, and updated the board README. Signed-off-by: Bilal Wasim <bilalwasim676@gmail.com>
22 lines
309 B
Plaintext
22 lines
309 B
Plaintext
# ST STM32F767ZI MCU configuration options
|
|
|
|
# Copyright (c) 2019 Roland Ma
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if SOC_STM32F767XX
|
|
|
|
config SOC
|
|
default "stm32f767xx"
|
|
|
|
config NUM_IRQS
|
|
default 110
|
|
|
|
if ENTROPY_GENERATOR
|
|
|
|
config ENTROPY_STM32_RNG
|
|
default y
|
|
|
|
endif # ENTROPY_GENERATOR
|
|
|
|
endif # SOC_STM32F767XX
|