1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- #ifndef PCA10003_H
- #define PCA10003_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- #include "nrf_gpio.h"
- #define LED_START 18
- #define LED_0 18
- #define LED_1 19
- #define LED_STOP 19
- #define LEDS_ACTIVE_STATE 1
- #define LEDS_INV_MASK 0x00000000
- #define BSP_LED_0 LED_0
- #define BSP_LED_1 LED_1
- #define BUTTON_START 16
- #define BUTTON_0 16
- #define BUTTON_1 17
- #define BUTTON_STOP 17
- #define BUTTON_PULL NRF_GPIO_PIN_PULLUP
- #define BUTTONS_ACTIVE_STATE 0
- #define BSP_BUTTON_0 BUTTON_0
- #define BSP_BUTTON_1 BUTTON_1
- #define BUTTONS_NUMBER 2
- #define LEDS_NUMBER 2
- #define LEDS_LIST { LED_0, LED_1 }
- #define BUTTONS_LIST { BUTTON_0, BUTTON_1 }
- #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
|