36 lines
399 B
Plaintext
36 lines
399 B
Plaintext
# Kconfig - Silicon Labs EFR32FG1P platform configuration options
|
|
|
|
#
|
|
# Copyright (c) 2018 Christian Taedcke
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
if SOC_SERIES_EFR32FG1P
|
|
|
|
config GPIO
|
|
default y
|
|
|
|
if GPIO
|
|
|
|
config GPIO_GECKO
|
|
default y
|
|
|
|
endif # GPIO
|
|
|
|
if SERIAL
|
|
|
|
config UART_GECKO
|
|
default y
|
|
|
|
endif # SERIAL
|
|
|
|
if FLASH
|
|
|
|
config SOC_FLASH_GECKO
|
|
default y
|
|
|
|
endif # FLASH
|
|
|
|
endif # SOC_SERIES_EFR32FG1P
|