This commit adds initial support for the Silicon Labs EFM32 Giant Gecko GG11 StarterKit. Features supported for now are NVIC, SysTick, GPIO, Flash, Counter, I2C, UART and Ethernet. Support for Watchdog and ADC will follow as soon as their respective PRs are merged. Signed-off-by: Oane Kingma <o.kingma@interay.com>
16 lines
402 B
Text
16 lines
402 B
Text
# EFM32GG STK3701A board configuration
|
|
# Copyright (c) 2019 Interay Solutions B.V.
|
|
# Copyright (c) 2019 Oane Kingma
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if BOARD_EFM32GG_STK3701A
|
|
|
|
config BOARD_INIT_PRIORITY
|
|
int
|
|
default KERNEL_INIT_PRIORITY_DEFAULT
|
|
depends on GPIO
|
|
help
|
|
Board initialization priority. This must be bigger than
|
|
GPIO_GECKO_COMMON_INIT_PRIORITY.
|
|
|
|
endif # BOARD_EFM32GG_STK3701A
|