mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-09 21:41:55 +00:00
The EFM32 Pearl Gecko Starter Kit contains sensors and peripherals demonstrating the usage of the EFM32PG MCU family. This patch adds basic support for this board and is copied from EFM32WG-STK3800. Signed-off-by: Gil Benkö <gil.benkoe@pm.me> Signed-off-by: Christian Taedcke <hacking@taedcke.com>
20 lines
423 B
Plaintext
20 lines
423 B
Plaintext
# Kconfig - EFM32PG STK3402A board configuration
|
|
#
|
|
# Copyright (c) 2018 Christian Taedcke
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if BOARD_EFM32PG_STK3402A
|
|
|
|
config BOARD_INIT_PRIORITY
|
|
int
|
|
|
|
# omit prompt to signify a "hidden" option
|
|
default KERNEL_INIT_PRIORITY_DEFAULT
|
|
depends on GPIO
|
|
help
|
|
Board initialization priority. This must be bigger than
|
|
GPIO_GECKO_COMMON_INIT_PRIORITY.
|
|
|
|
endif # BOARD_EFM32PG_STK3402A
|