This can help find unused symbols. Those end up without a type if 'default' is used instead of 'def_bool', which generates a warning. Search for "Kconfig.defconfig" in https://docs.zephyrproject.org/latest/application/kconfig-tips.html for a longer explanation. Keep the 'def_bool' for the following symbols, which seem to be deliberately defined only in Kconfig.defconfig files: - ALTERA_AVALON_I2C - ALTERA_AVALON_MSGDMA - ALTERA_AVALON_PIO - ALTERA_AVALON_QSPI - ALTERA_AVALON_SYSID - CLOCK_CONTROL_IMX_CCM - CPU_EM4_DMIPS - CPU_EM4_FPUDA - CPU_EM4_FPUS - FP_FPU_DA - I2C_GECKO Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
48 lines
620 B
Text
48 lines
620 B
Text
# Kconfig - EFR32 SLWSTK6061A board
|
|
#
|
|
# Copyright (c) 2018, Christian Taedcke
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
if BOARD_EFR32_SLWSTK6061A
|
|
|
|
config BOARD
|
|
default "efr32_slwstk6061a"
|
|
|
|
config CMU_HFXO_FREQ
|
|
default 38400000
|
|
|
|
config CMU_LFXO_FREQ
|
|
default 32768
|
|
|
|
if GPIO_GECKO
|
|
|
|
config GPIO_GECKO_PORTA
|
|
default y
|
|
|
|
config GPIO_GECKO_PORTB
|
|
default y
|
|
|
|
config GPIO_GECKO_PORTC
|
|
default y
|
|
|
|
config GPIO_GECKO_PORTD
|
|
default y
|
|
|
|
config GPIO_GECKO_PORTE
|
|
default n
|
|
|
|
config GPIO_GECKO_PORTF
|
|
default y
|
|
|
|
endif # GPIO_GECKO
|
|
|
|
if UART_GECKO
|
|
|
|
config USART_GECKO_0
|
|
default y
|
|
|
|
endif # UART_GECKO
|
|
|
|
endif # BOARD_EFR32_SLWSTK6061A
|