2018-03-27 18:17:40 +08:00
|
|
|
/*
|
|
|
|
* 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 */
|
2018-11-13 22:15:23 +08:00
|
|
|
#define BC_ENABLE_GPIO_NAME DT_GPIO_GECKO_PORTA_NAME
|
2018-03-27 18:17:40 +08:00
|
|
|
#define BC_ENABLE_GPIO_PIN 5
|
|
|
|
|
|
|
|
#endif /* __INC_BOARD_H */
|