/* This software is subject to the license described in the License.txt file included with this software distribution. You may not use this file except in compliance with this license. Copyright (c) Dynastream Innovations Inc. 2015 All rights reserved. */ #ifndef N5STARTERKIT_H #define N5STARTERKIT_H #include "nrf_gpio.h" // LEDs definitions for N5DK1 #define LEDS_NUMBER 4 // IO board active low leds // N5DK1 does not define LED_START or LED_STOP since the LEDS are not on sequential pins #define LED_A 8 //LED A on N5 Starter Kit IO Board #define LED_B 3 //LED B on N5 Starter Kit IO Board #define LED_C 15 //LED C on N5 Starter Kit IO Board #define LED_D 30 //LED D on N5 Starter Kit IO Board #define LEDS_LIST { LED_A, LED_B, LED_C, LED_D } #define BSP_LED_0 LED_A #define BSP_LED_1 LED_B #define BSP_LED_2 LED_C #define BSP_LED_3 LED_D #define BSP_LED_0_MASK (1<