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
gpio_mux.h
Go to the documentation of this file.
1
/*
2
* Copyright (C) 2020 iosabi
3
*
4
* This file is subject to the terms and conditions of the GNU Lesser General
5
* Public License v2.1. See the file LICENSE in the top level directory for more
6
* details.
7
*/
8
23
#ifndef GPIO_MUX_H
24
#define GPIO_MUX_H
25
26
#include <stdint.h>
27
#include "
periph_cpu.h
"
28
29
#ifdef __cplusplus
30
extern
"C"
{
31
#endif
32
36
#define GPIO_T_ADDR_BASE(pin) (GPIOA_BASE + ((pin) & 0xf000u))
37
41
#define GPIO_T_ADDR(pin) ((GPIO_Type *)(GPIO_T_ADDR_BASE(pin)))
42
48
#define GPIO_T_PORT(pin) ((gpio_t)(pin) >> 12u)
49
53
#define GPIO_T_PIN(pin) ((pin) & 0x00ffu)
54
55
#if defined(GPIOB_BASE) && (GPIO_T_ADDR_BASE(GPIO_PIN(1, 1)) != GPIOB_BASE)
56
#error "GPIO_T_ADDR(GPIO_PIN(1, x)) must be the GPIOB address"
57
#endif
58
62
#define GPIO_T_IS_HWCS(pin) (((pin) & 0xff00u) == 0x8000)
63
67
#define GPIO_T_HWCS(pin) ((pin) & 0x0003u)
68
74
void
gpio_init_mux
(
gpio_t
pin, uint32_t func);
75
76
#ifdef __cplusplus
77
}
78
#endif
79
80
#endif
/* GPIO_MUX_H */
gpio_init_mux
void gpio_init_mux(gpio_t pin, uint32_t func)
Configure the pin mux to the given function.
gpio_t
uint16_t gpio_t
GPIO type identifier.
Definition
periph_cpu.h:117
periph_cpu.h
CPU specific definitions for internal peripheral handling.
Generated on Thu Apr 3 2025 10:49:40 by
1.12.0