2016-07-01 17:36:35 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2016 Linaro Limited.
|
|
|
|
*
|
2017-01-19 09:01:01 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2016-07-01 17:36:35 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __INC_BOARD_H
|
|
|
|
#define __INC_BOARD_H
|
|
|
|
|
|
|
|
#include <soc.h>
|
|
|
|
|
2016-12-08 23:21:33 +08:00
|
|
|
/* Push button switch 0 */
|
|
|
|
#define SW0_GPIO_PIN 17
|
|
|
|
#define SW0_GPIO_NAME CONFIG_GPIO_NRF5_P0_DEV_NAME
|
|
|
|
|
|
|
|
/* Push button switch 1 */
|
|
|
|
#define SW1_GPIO_PIN 18
|
|
|
|
#define SW1_GPIO_NAME CONFIG_GPIO_NRF5_P0_DEV_NAME
|
|
|
|
|
|
|
|
/* Push button switch 2 */
|
|
|
|
#define SW2_GPIO_PIN 19
|
|
|
|
#define SW2_GPIO_NAME CONFIG_GPIO_NRF5_P0_DEV_NAME
|
|
|
|
|
|
|
|
/* Push button switch 3 */
|
|
|
|
#define SW3_GPIO_PIN 20
|
|
|
|
#define SW3_GPIO_NAME CONFIG_GPIO_NRF5_P0_DEV_NAME
|
|
|
|
|
|
|
|
/* Onboard GREEN LED 0 */
|
|
|
|
#define LED0_GPIO_PIN 21
|
|
|
|
#define LED0_GPIO_PORT CONFIG_GPIO_NRF5_P0_DEV_NAME
|
|
|
|
|
|
|
|
/* Onboard GREEN LED 1 */
|
|
|
|
#define LED1_GPIO_PIN 22
|
|
|
|
#define LED1_GPIO_PORT CONFIG_GPIO_NRF5_P0_DEV_NAME
|
|
|
|
|
|
|
|
/* Onboard GREEN LED 2 */
|
|
|
|
#define LED2_GPIO_PIN 23
|
|
|
|
#define LED2_GPIO_PORT CONFIG_GPIO_NRF5_P0_DEV_NAME
|
|
|
|
|
|
|
|
/* Onboard GREEN LED 3 */
|
|
|
|
#define LED3_GPIO_PIN 24
|
|
|
|
#define LED3_GPIO_PORT CONFIG_GPIO_NRF5_P0_DEV_NAME
|
|
|
|
|
2016-07-01 17:36:35 +08:00
|
|
|
#endif /* __INC_BOARD_H */
|