arduino-zero/include/board.h

Board specific definitions for the Arduino Zero board.

XTIMER
1
TIMER_DEV(1)
XTIMER_CHAN
1
(0)
LED0_PIN
1
GPIO_PIN(PA, 17)
LED_PORT
1
PORT->Group[PA]
LED0_MASK
1
(1 << 17)
LED0_ON
1
(LED_PORT.OUTSET.reg = LED0_MASK)
LED0_OFF
1
(LED_PORT.OUTCLR.reg = LED0_MASK)
LED0_TOGGLE
1
(LED_PORT.OUTTGL.reg = LED0_MASK)
void board_init(void)

Initialize board specific hardware, including clock, LEDs and std-IO.