| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- /* Copyright (c) 2014 Nordic Semiconductor. All Rights Reserved.
- *
- * The information contained herein is property of Nordic Semiconductor ASA.
- * Terms and conditions of usage are described in detail in NORDIC
- * SEMICONDUCTOR STANDARD SOFTWARE LICENSE AGREEMENT.
- *
- * Licensees are granted free, non-transferable use of the information. NO
- * WARRANTY of ANY KIND is provided. This heading must NOT be removed from
- * the file.
- *
- */
- #ifndef PCA10031_H
- #define PCA10031_H
- // LEDs definitions for PCA10031
- #define LEDS_NUMBER 3
- #define LED_START 21
- #define LED_RGB_RED 21
- #define LED_RGB_GREEN 22
- #define LED_RGB_BLUE 23
- #define LED_STOP 23
- #define LED_RGB_RED_MASK (1<<LED_RGB_RED)
- #define LED_RGB_GREEN_MASK (1<<LED_RGB_GREEN)
- #define LED_RGB_BLUE_MASK (1<<LED_RGB_BLUE)
- #define LEDS_LIST { LED_RGB_RED, LED_RGB_GREEN, LED_RGB_BLUE}
- // defining RGB led as 3 single LEDs
- #define BSP_LED_0 LED_RGB_RED
- #define BSP_LED_1 LED_RGB_GREEN
- #define BSP_LED_2 LED_RGB_BLUE
- #define BSP_LED_0_MASK (1<<BSP_LED_0)
- #define BSP_LED_1_MASK (1<<BSP_LED_1)
- #define BSP_LED_2_MASK (1<<BSP_LED_2)
- #define LEDS_MASK (BSP_LED_0_MASK | BSP_LED_1_MASK | BSP_LED_2_MASK)
- //defines which LEDs are lit when signal is low
- #define LEDS_INV_MASK LEDS_MASK
- // there are no user buttons
- #define BUTTONS_NUMBER 0
- #define BUTTONS_LIST {}
- #define BUTTONS_MASK 0x00000000
- // UART connection with J-Link
- #define RX_PIN_NUMBER 11
- #define TX_PIN_NUMBER 9
- #define CTS_PIN_NUMBER 10
- #define RTS_PIN_NUMBER 8
- #define HWFC true
- // Low frequency clock source to be used by the SoftDevice
- #ifdef S210
- #define NRF_CLOCK_LFCLKSRC NRF_CLOCK_LFCLKSRC_XTAL_20_PPM
- #else
- #define NRF_CLOCK_LFCLKSRC {.source = NRF_CLOCK_LF_SRC_XTAL, \
- .rc_ctiv = 0, \
- .rc_temp_ctiv = 0, \
- .xtal_accuracy = NRF_CLOCK_LF_XTAL_ACCURACY_20_PPM}
- #endif
- #endif
|