25#include "periph_cpu.h"
37#define LED0_PIN GPIO_PIN(0, 25)
38#define LED0_ON do {SIO->GPIO_OUT_SET = 1UL << 25;} while (0)
39#define LED0_OFF do {SIO->GPIO_OUT_CLR = 1UL << 25;} while (0)
40#define LED0_TOGGLE do {SIO->GPIO_OUT_XOR = 1UL << 25;} while (0)
41#define LED0_NAME "LED(Green)"
Configuration of CPU peripherals for the Raspberry Pi Pico.
Low-level GPIO peripheral driver interface definitions.