board.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2021 Otto-von-Guericke-Universität Magdeburg
3  *
4  * This file is subject to the terms and conditions of the GNU Lesser
5  * General Public License v2.1. See the file LICENSE in the top level
6  * directory for more details.
7  */
8 
9 #pragma once
10 
22 #include "cpu.h"
23 #include "periph_conf.h"
24 #include "periph_cpu.h"
25 #include "periph/gpio.h"
26 
27 #ifdef __cplusplus
28 extern "C" {
29 #endif
30 
31 #ifdef BOARD_RPI_PICO
36 #define LED0_PIN GPIO_PIN(0, 25)
37 #define LED0_ON do {SIO->GPIO_OUT_SET = 1UL << 25;} while (0)
38 #define LED0_OFF do {SIO->GPIO_OUT_CLR = 1UL << 25;} while (0)
39 #define LED0_TOGGLE do {SIO->GPIO_OUT_XOR = 1UL << 25;} while (0)
40 #define LED0_NAME "LED(Green)"
43 #endif
44 
45 #ifdef __cplusplus
46 }
47 #endif
48 
Peripheral MCU configuration for the Zigduino board.
Low-level GPIO peripheral driver interface definitions.