Zephyr Project API
4.0.99
A Scalable Open Source RTOS
Loading...
Searching...
No Matches
stm32-pinctrl-common.h
Go to the documentation of this file.
1
/*
2
* Copyright (c) 2017 Linaro Limited
3
*
4
* SPDX-License-Identifier: Apache-2.0
5
*/
6
7
#ifndef ZEPHYR_STM32_PINCTRL_COMMON_H_
8
#define ZEPHYR_STM32_PINCTRL_COMMON_H_
9
14
#define STM32_PORTA 0
/* IO port A */
15
#define STM32_PORTB 1
/* .. */
16
#define STM32_PORTC 2
17
#define STM32_PORTD 3
18
#define STM32_PORTE 4
19
#define STM32_PORTF 5
20
#define STM32_PORTG 6
21
#define STM32_PORTH 7
22
#define STM32_PORTI 8
23
#define STM32_PORTJ 9
24
#define STM32_PORTK 10
/* IO port K */
25
#define STM32_PORTM 12
/* IO port M (0xC) */
26
#define STM32_PORTN 13
27
#define STM32_PORTO 14
28
#define STM32_PORTP 15
/* IO port P (0xF) */
29
#define STM32_PORTQ 16
/* IO port Q (0x10) */
30
31
#ifndef STM32_PORTS_MAX
32
#define STM32_PORTS_MAX (STM32_PORTQ + 1)
33
#endif
34
38
#define STM32PIN(_port, _pin) \
39
(_port << 4 | _pin)
40
41
#endif
/* ZEPHYR_STM32_PINCTRL_COMMON_H_ */
include
zephyr
dt-bindings
pinctrl
stm32-pinctrl-common.h
Generated on Tue Feb 11 2025 02:55:25 for Zephyr Project API by
1.9.8