Linux debugging
Check our new training course
Linux debugging, tracing, profiling & perf. analysis
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
/* * Copyright (c) 2016-2018 Nordic Semiconductor ASA. * * SPDX-License-Identifier: Apache-2.0 */ #ifndef __INC_BOARD_H #define __INC_BOARD_H #include <soc.h> /* Push button switch 0 */ #define SW0_GPIO_PIN 13 #define SW0_GPIO_NAME CONFIG_GPIO_NRF5_P0_DEV_NAME #define SW0_GPIO_PIN_PUD GPIO_PUD_PULL_UP /* Push button switch 1 */ #define SW1_GPIO_PIN 14 #define SW1_GPIO_NAME CONFIG_GPIO_NRF5_P0_DEV_NAME #define SW1_GPIO_PIN_PUD GPIO_PUD_PULL_UP /* Push button switch 2 */ #define SW2_GPIO_PIN 15 #define SW2_GPIO_NAME CONFIG_GPIO_NRF5_P0_DEV_NAME #define SW2_GPIO_PIN_PUD GPIO_PUD_PULL_UP /* Push button switch 3 */ #define SW3_GPIO_PIN 16 #define SW3_GPIO_NAME CONFIG_GPIO_NRF5_P0_DEV_NAME #define SW3_GPIO_PIN_PUD GPIO_PUD_PULL_UP /* Onboard GREEN LED 0 */ #define LED0_GPIO_PIN 17 #define LED0_GPIO_PORT CONFIG_GPIO_NRF5_P0_DEV_NAME /* Onboard GREEN LED 1 */ #define LED1_GPIO_PIN 18 #define LED1_GPIO_PORT CONFIG_GPIO_NRF5_P0_DEV_NAME /* Onboard GREEN LED 2 */ #define LED2_GPIO_PIN 19 #define LED2_GPIO_PORT CONFIG_GPIO_NRF5_P0_DEV_NAME /* Onboard GREEN LED 3 */ #define LED3_GPIO_PIN 20 #define LED3_GPIO_PORT CONFIG_GPIO_NRF5_P0_DEV_NAME #endif /* __INC_BOARD_H */