12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- #ifndef PCA10031_H
- #define PCA10031_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- #include "nrf_gpio.h"
- #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 LEDS_ACTIVE_STATE 1
- #define LEDS_INV_MASK LEDS_MASK
- #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}
- #define BSP_LED_0 LED_RGB_RED
- #define BSP_LED_1 LED_RGB_GREEN
- #define BSP_LED_2 LED_RGB_BLUE
- #define BUTTONS_NUMBER 0
- #define BUTTONS_LIST {}
- #define RX_PIN_NUMBER 11
- #define TX_PIN_NUMBER 9
- #define CTS_PIN_NUMBER 10
- #define RTS_PIN_NUMBER 8
- #define HWFC true
- #ifdef __cplusplus
- }
- #endif
- #endif
|