Toggle navigation
Documentation
The friendly Operating System for the Internet of Things
board.h
Go to the documentation of this file.
1
/*
2
* Copyright (C) 2014 Freie Universität Berlin
3
* Copyright (C) 2015 PHYTEC Messtechnik GmbH
4
*
5
* This file is subject to the terms and conditions of the GNU Lesser General
6
* Public License v2.1. See the file LICENSE in the top level directory for more
7
* details.
8
*/
9
10
#pragma once
11
22
#include "cpu.h"
23
#include "
periph_conf.h
"
24
25
#ifdef __cplusplus
26
extern
"C"
27
{
28
#endif
29
34
#define LED0_PIN GPIO_PIN(PORT_B, 22)
35
#define LED1_PIN GPIO_PIN(PORT_E, 26)
36
#define LED2_PIN GPIO_PIN(PORT_B, 21)
37
38
#define LED0_MASK (1 << 22)
39
#define LED1_MASK (1 << 26)
40
#define LED2_MASK (1 << 21)
41
42
#define LED0_ON (GPIOB->PCOR = LED0_MASK)
43
#define LED0_OFF (GPIOB->PSOR = LED0_MASK)
44
#define LED0_TOGGLE (GPIOB->PTOR = LED0_MASK)
45
46
#define LED1_ON (GPIOE->PCOR = LED1_MASK)
47
#define LED1_OFF (GPIOE->PSOR = LED1_MASK)
48
#define LED1_TOGGLE (GPIOE->PTOR = LED1_MASK)
49
50
#define LED2_ON (GPIOB->PCOR = LED2_MASK)
51
#define LED2_OFF (GPIOB->PSOR = LED2_MASK)
52
#define LED2_TOGGLE (GPIOB->PTOR = LED2_MASK)
59
/* SW2, SW3 will short these pins to ground when pushed. PTA4 has an external
60
* pull-up resistor to VDD, but there is no external pull resistor on PTC6 */
61
/* BTN0 is mapped to SW2 */
62
#define BTN0_PIN GPIO_PIN(PORT_C, 6)
63
#define BTN0_MODE GPIO_IN_PU
64
/* BTN1 is mapped to SW3 */
65
#define BTN1_PIN GPIO_PIN(PORT_A, 4)
66
#define BTN1_MODE GPIO_IN_PU
73
#define FXOS8700_PARAM_I2C I2C_DEV(0)
74
#define FXOS8700_PARAM_ADDR 0x1E
77
#ifdef __cplusplus
78
}
79
#endif
80
periph_conf.h
Peripheral MCU configuration for the Zigduino board.
Generated on Mon Jun 30 2025 14:58:00 by
1.9.1