Toggle navigation
Documentation
The friendly Operating System for the Internet of Things
Main Page
Related Pages
Supported Boards
Modules
Namespaces
Namespace List
Namespace Members
All
Functions
Variables
Enumerations
Data Structures
Data Structures
Class Hierarchy
Data Fields
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
w
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
Enumerator
Related Symbols
Files
File List
Globals
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Typedefs
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Enumerations
_
a
b
c
d
e
f
g
h
i
k
l
m
n
p
q
r
s
t
u
v
w
x
z
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
►
RIOT OS
•
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
Loading...
Searching...
No Matches
board.h
Go to the documentation of this file.
1
/*
2
* Copyright (C) 2023 Benjamin Valentin
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
18
#ifndef BOARD_H
19
#define BOARD_H
20
21
#include <stdint.h>
22
31
#define BTN0_PIN GPIO2
32
39
#define BTN0_MODE GPIO_IN
40
44
#ifndef BTN0_INT_FLANK
45
#define BTN0_INT_FLANK GPIO_FALLING
46
#endif
47
51
#define BTN1_PIN GPIO8
52
59
#define BTN1_MODE GPIO_IN
60
64
#ifndef BTN1_INT_FLANK
65
#define BTN1_INT_FLANK GPIO_FALLING
66
#endif
67
76
#define BTN2_PIN GPIO9
77
81
#define BTN2_MODE GPIO_IN_PU
82
86
#ifndef BTN2_INT_FLANK
87
#define BTN2_INT_FLANK GPIO_FALLING
88
#endif
94
#ifndef WS281X_PARAM_PIN
95
#define WS281X_PARAM_PIN GPIO10
96
#endif
97
101
#ifndef WS281X_PARAM_NUMOF
102
#define WS281X_PARAM_NUMOF 16
103
#endif
104
105
/* include common board definitions as last step */
106
#include "board_common.h"
107
108
#ifdef __cplusplus
109
extern
"C"
{
110
#endif
111
112
#ifdef __cplusplus
113
}
/* end extern "C" */
114
#endif
115
116
#endif
/* BOARD_H */
Generated on Thu Apr 3 2025 23:08:55 by
1.12.0