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) 2014 Freie Universität Berlin
3
* Copyright (C) 2015 Zolertia SL
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
22
#ifndef BOARD_H
23
#define BOARD_H
24
25
#include "cpu.h"
26
#include "board_common.h"
27
28
#ifdef __cplusplus
29
extern
"C"
{
30
#endif
31
36
#define LED0_PIN GPIO_PIN(3, 5)
37
#define LED1_PIN GPIO_PIN(3, 4)
38
#define LED2_PIN GPIO_PIN(3, 3)
39
40
#define LED0_MASK (1 << 5)
41
#define LED1_MASK (1 << 4)
42
#define LED2_MASK (1 << 3)
43
44
#define LED0_ON (GPIO_D->DATA |= LED0_MASK)
45
#define LED0_OFF (GPIO_D->DATA &= ~LED0_MASK)
46
#define LED0_TOGGLE (GPIO_D->DATA ^= LED0_MASK)
47
48
#define LED1_ON (GPIO_D->DATA |= LED1_MASK)
49
#define LED1_OFF (GPIO_D->DATA &= ~LED1_MASK)
50
#define LED1_TOGGLE (GPIO_D->DATA ^= LED1_MASK)
51
52
#define LED2_ON (GPIO_D->DATA |= LED2_MASK)
53
#define LED2_OFF (GPIO_D->DATA &= ~LED2_MASK)
54
#define LED2_TOGGLE (GPIO_D->DATA ^= LED2_MASK)
61
#define BTN0_PIN GPIO_PIN(0, 3)
62
#define BTN0_MODE GPIO_IN_PU
85
#define RF_SWITCH_GPIO GPIO_PD2
86
#define RF_SWITCH_SUB_GHZ gpio_set(RF_SWITCH_GPIO)
87
#define RF_SWITCH_2_4_GHZ gpio_clear(RF_SWITCH_GPIO)
88
#define RF_SWITCH_TOGGLE gpio_toggle(RF_SWITCH_GPIO)
95
#define SHUTDOWN_DONE_GPIO GPIO_PD0
96
#define SHUTDOWN_EN_GPIO GPIO_PD1
103
#define CC1200_SPI_DEV SSI0
104
#define CC1200_MOSI_GPIO GPIO_PB1
105
#define CC1200_MISO_GPIO GPIO_PB3
106
#define CC1200_SCLK_GPIO GPIO_PB2
107
#define CC1200_CSN_GPIO GPIO_PB5
108
#define CC1200_RESET_GPIO GPIO_PC7
109
#define CC1200_GPD0_GPIO GPIO_PB4
110
#define CC1200_GPD2_GPIO GPIO_PB0
113
#ifdef __cplusplus
114
}
/* end extern "C" */
115
#endif
116
#endif
/* BOARD_H */
Generated on Fri Apr 4 2025 15:37:34 by
1.12.0