24#include "periph_cpu.h"
35#define CONFIG_ZTIMER_USEC_WIDTH (16)
42#define LED0_PIN GPIO_PIN(PC, 23)
44#define LED0_ON (PIOC->PIO_CODR = PIO_PC23)
45#define LED0_OFF (PIOC->PIO_SODR = PIO_PC23)
46#define LED0_TOGGLE ((PIOC->PIO_ODSR & PIO_PC23) ? LED0_ON : LED0_OFF)
53#define BTN0_PIN GPIO_PIN(PA, 2)
54#define BTN0_MODE GPIO_IN_PU
Peripheral MCU configuration for SAM4S Xplained pro.
Low-level GPIO peripheral driver interface definitions.