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 
20 #ifndef BOARD_H
21 #define BOARD_H
22 
23 #include "cpu.h"
24 #include "periph_conf.h"
25 #include "periph_cpu.h"
26 #include "periph/gpio.h"
27 
28 #ifdef __cplusplus
29 extern "C" {
30 #endif
31 
32 #ifdef BOARD_RPI_PICO
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)"
44 #endif
45 
46 #ifdef __cplusplus
47 }
48 #endif
49 
50 #endif /* BOARD_H */
Peripheral MCU configuration for the Zigduino board.
Low-level GPIO peripheral driver interface definitions.