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
periph_conf.h
Go to the documentation of this file.
1
/*
2
* Copyright (C) 2023 Gunar Schorcht
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
32
#ifndef PERIPH_CONF_H
33
#define PERIPH_CONF_H
34
35
#include <stdint.h>
36
37
#ifdef __cplusplus
38
extern
"C"
{
39
#endif
40
52
#ifndef I2C0_SPEED
53
#define I2C0_SPEED I2C_SPEED_FAST
54
#endif
55
#ifndef I2C0_SCL
56
#define I2C0_SCL GPIO5
57
#endif
58
#ifndef I2C0_SDA
59
#define I2C0_SDA GPIO6
60
#endif
76
#ifndef SPI0_CTRL
77
#define SPI0_CTRL SPI2_HOST
78
#endif
79
#ifndef SPI0_SCK
80
#define SPI0_SCK GPIO39
81
#endif
82
#ifndef SPI0_MISO
83
#define SPI0_MISO GPIO38
84
#endif
85
#ifndef SPI0_MOSI
86
#define SPI0_MOSI GPIO40
87
#endif
88
#ifndef SPI0_CS0
89
#define SPI0_CS0 GPIO41
90
#endif
100
#define UART0_TXD GPIO43
101
#define UART0_RXD GPIO44
105
#ifdef __cplusplus
106
}
/* end extern "C" */
107
#endif
108
109
/* include common peripheral definitions as last step */
110
#include "periph_conf_common.h"
111
112
#endif
/* PERIPH_CONF_H */
Generated on Sat Apr 5 2025 00:09:11 by
1.12.0