mirror of
https://github.com/zephyrproject-rtos/zephyr.git
synced 2024-12-04 10:18:24 +08:00
ada8d72888
According to the board porting guidelines, boards should "leave peripherals and their drivers disabled by default". In Zephyr we tipically enable GPIO and SERIAL, as they are virtually required by all samples/tests in tree. However, for the rest of peripherals it is up to the application/test to enable the necessary driver classes. It is also useful that board's Kconfig.defconfig enables certain driver peripherals based on a condition, e.g. enable I2C if SENSOR=y. Ref. https://docs.zephyrproject.org/latest/hardware/porting/ board_porting.html#general-recommendations This patch removes the following driver classes from defconfig files: - CONFIG_ADC - CONFIG_COUNTER - CONFIG_EEPROM - CONFIG_ENTROPY - CONFIG_ESPI - CONFIG_HWINFO - CONFIG_I2C - CONFIG_LED - CONFIG_NETWORKING - CONFIG_PS2 - CONFIG_PWM - CONFIG_SENSOR - CONFIG_SPI - CONFIG_SPI_SLAVE - CONFIG_WATCHDOG Note that a previous attempt was done in #38510. Fixes #30694 Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
17 lines
415 B
Plaintext
17 lines
415 B
Plaintext
#
|
|
# Seagate FireCuda Gaming SSD (FaZe) board
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
CONFIG_SYS_CLOCK_HW_CYCLES_PER_SEC=48000000
|
|
CONFIG_GPIO=y
|
|
CONFIG_BUILD_OUTPUT_HEX=y
|
|
CONFIG_SOC_SERIES_LPC11U6X=y
|
|
CONFIG_SOC_LPC11U67=y
|
|
CONFIG_MAIN_STACK_SIZE=512
|
|
CONFIG_ISR_STACK_SIZE=768
|
|
CONFIG_CLOCK_CONTROL_LPC11U6X_ENABLE_SRAM1=y
|
|
CONFIG_CLOCK_CONTROL_LPC11U6X_ENABLE_USB_RAM=y
|
|
CONFIG_CLOCK_CONTROL_LPC11U6X_PLL_SRC_SYSOSC=y
|