Loading...
Searching...
No Matches

Board specific configuration for the E104-BT50xxA Test Board. More...

Detailed Description

Board specific configuration for the E104-BT50xxA Test Board.

Author
Benjamin Valentin benpi.nosp@m.cco@.nosp@m.googl.nosp@m.emai.nosp@m.l.com

Definition in file board.h.

#include "board_common.h"
+ Include dependency graph for board.h:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

LED pin configuration

#define LED0_PIN   GPIO_PIN(0, 30)
 
#define LED1_PIN   GPIO_PIN(0, 31)
 
#define LED_PORT   (NRF_P0)
 
#define LED0_MASK   (1 << 30)
 
#define LED1_MASK   (1 << 31)
 
#define LED_MASK   (LED0_MASK | LED1_MASK)
 
#define LED0_ON   (LED_PORT->OUTCLR = LED0_MASK)
 
#define LED0_OFF   (LED_PORT->OUTSET = LED0_MASK)
 
#define LED0_TOGGLE   (LED_PORT->OUT ^= LED0_MASK)
 
#define LED1_ON   (LED_PORT->OUTCLR = LED1_MASK)
 
#define LED1_OFF   (LED_PORT->OUTSET = LED1_MASK)
 
#define LED1_TOGGLE   (LED_PORT->OUT ^= LED1_MASK)
 

Button pin configuration

#define BTN0_PIN   GPIO_PIN(0, 21)
 
#define BTN0_MODE   GPIO_IN_PU
 
#define BTN1_PIN   GPIO_PIN(0, 29)
 
#define BTN1_MODE   GPIO_IN_PU
 

WS281x RGB LED configuration

#define WS281X_TIMER_DEV   TIMER_DEV(1)
 Timer device.
 
#define WS281X_TIMER_MAX_VALUE   TIMER_1_MAX_VALUE
 Timer max value.
 

Macro Definition Documentation

◆ BTN0_MODE

#define BTN0_MODE   GPIO_IN_PU

Definition at line 54 of file board.h.

◆ BTN0_PIN

#define BTN0_PIN   GPIO_PIN(0, 21)

Definition at line 53 of file board.h.

◆ BTN1_MODE

#define BTN1_MODE   GPIO_IN_PU

Definition at line 56 of file board.h.

◆ BTN1_PIN

#define BTN1_PIN   GPIO_PIN(0, 29)

Definition at line 55 of file board.h.

◆ LED0_MASK

#define LED0_MASK   (1 << 30)

Definition at line 36 of file board.h.

◆ LED0_OFF

#define LED0_OFF   (LED_PORT->OUTSET = LED0_MASK)

Definition at line 41 of file board.h.

◆ LED0_ON

#define LED0_ON   (LED_PORT->OUTCLR = LED0_MASK)

Definition at line 40 of file board.h.

◆ LED0_PIN

#define LED0_PIN   GPIO_PIN(0, 30)

Definition at line 32 of file board.h.

◆ LED0_TOGGLE

#define LED0_TOGGLE   (LED_PORT->OUT ^= LED0_MASK)

Definition at line 42 of file board.h.

◆ LED1_MASK

#define LED1_MASK   (1 << 31)

Definition at line 37 of file board.h.

◆ LED1_OFF

#define LED1_OFF   (LED_PORT->OUTSET = LED1_MASK)

Definition at line 45 of file board.h.

◆ LED1_ON

#define LED1_ON   (LED_PORT->OUTCLR = LED1_MASK)

Definition at line 44 of file board.h.

◆ LED1_PIN

#define LED1_PIN   GPIO_PIN(0, 31)

Definition at line 33 of file board.h.

◆ LED1_TOGGLE

#define LED1_TOGGLE   (LED_PORT->OUT ^= LED1_MASK)

Definition at line 46 of file board.h.

◆ LED_MASK

#define LED_MASK   (LED0_MASK | LED1_MASK)

Definition at line 38 of file board.h.

◆ LED_PORT

#define LED_PORT   (NRF_P0)

Definition at line 35 of file board.h.

◆ WS281X_TIMER_DEV

#define WS281X_TIMER_DEV   TIMER_DEV(1)

Timer device.

Definition at line 63 of file board.h.

◆ WS281X_TIMER_MAX_VALUE

#define WS281X_TIMER_MAX_VALUE   TIMER_1_MAX_VALUE

Timer max value.

Definition at line 64 of file board.h.