acd52832/include/board.h¶
For more information: http://aconno.de/acd52832/.
Board specific configuration for the ACD52832
-
LED0_PIN¶ 1
GPIO_PIN(0, 26)
-
LED_PORT¶ 1
(NRF_P0)
-
LED0_MASK¶ 1
(1 << 26)
-
LED0_ON¶ 1
(LED_PORT->OUTCLR = LED0_MASK)
-
LED0_OFF¶ 1
(LED_PORT->OUTSET = LED0_MASK)
-
LED0_TOGGLE¶ 1
(LED_PORT->OUT ^= LED0_MASK)
-
BTN0_PIN¶ 1
GPIO_PIN(0, 25)
-
BTN0_MODE¶ 1
GPIO_IN_PU
-
void
board_init(void)¶ Initialize board specific hardware, including clock, LEDs and std-IO.