mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-02 01:54:29 +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>
15 lines
324 B
C
15 lines
324 B
C
/*
|
|
* Copyright (c) 2018 Christian Taedcke
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef __INC_BOARD_H
|
|
#define __INC_BOARD_H
|
|
|
|
/* This pin is used to enable the serial port using the board controller */
|
|
#define BC_ENABLE_GPIO_NAME DT_GPIO_GECKO_PORTA_NAME
|
|
#define BC_ENABLE_GPIO_PIN 5
|
|
|
|
#endif /* __INC_BOARD_H */
|