Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
SystemPeripheralsGpio.h
Go to the documentation of this file.
1// (c) IMT - Information Management Technology AG, CH-9470 Buchs, www.imt.ch.
2
3#ifndef SYSTEMPERIPHERALSGPIO_H
4#define SYSTEMPERIPHERALSGPIO_H
5
12
13#include "SystemMemoryMap.h"
14
19 GPIOA = 0,
20 GPIOB = 1,
21 GPIOC = 2,
22 GPIOD = 3,
23 GPIOE = 4
24};
25
26template<uint32_t base>
28
29template<>
31 static constexpr uint32_t value = GPIOA_BASE;
32};
33
34template<>
36 static constexpr uint32_t value = GPIOB_BASE;
37};
38
39template<>
41 static constexpr uint32_t value = GPIOC_BASE;
42};
43
44template<>
46 static constexpr uint32_t value = GPIOD_BASE;
47};
48
49template<>
51 static constexpr uint32_t value = GPIOE_BASE;
52};
53
54template<int base>
55struct gpio {
56 // Derive base address
58
59 struct BSRR {
62 };
63
65 struct CRL {
68 };
69
71 struct CRH {
74 };
75
78
80 struct ODR {
83 };
84
87};
88
98typedef enum {
105
109typedef enum {
114
118typedef enum {
119 // Analog Input
121 // Floating Input
123 // Input w/ PullDown
125 // Input w/ PullUp
127 // Output OpenDrain
129 // Output PushPull
131 // AlternateFunction OpenDrain
133 // AlternateFunction PushPull
134 GPIO_Mode_AF_PP = 0x18
136
140typedef struct {
141 uint16_t Pin;
142 GPIO_Speed Speed;
143 GPIO_Mode Mode;
145
149#define GPIO_Pin_0 ((uint16_t)0x0001)
150#define GPIO_Pin_1 ((uint16_t)0x0002)
151#define GPIO_Pin_2 ((uint16_t)0x0004)
152#define GPIO_Pin_3 ((uint16_t)0x0008)
153#define GPIO_Pin_4 ((uint16_t)0x0010)
154#define GPIO_Pin_5 ((uint16_t)0x0020)
155#define GPIO_Pin_6 ((uint16_t)0x0040)
156#define GPIO_Pin_7 ((uint16_t)0x0080)
157#define GPIO_Pin_8 ((uint16_t)0x0100)
158#define GPIO_Pin_9 ((uint16_t)0x0200)
159#define GPIO_Pin_10 ((uint16_t)0x0400)
160#define GPIO_Pin_11 ((uint16_t)0x0800)
161#define GPIO_Pin_12 ((uint16_t)0x1000)
162#define GPIO_Pin_13 ((uint16_t)0x2000)
163#define GPIO_Pin_14 ((uint16_t)0x4000)
164#define GPIO_Pin_15 ((uint16_t)0x8000)
165// All pins selected
166#define GPIO_Pin_All ((uint16_t)0xFFFF)
167
171typedef enum {
178 GPIO_PortSourceG = ((uint8_t)0x06)
180
184typedef enum {
200 GPIO_PinSource15 = ((uint8_t)0x0F)
202
206typedef enum {
207 // I2C1 Alternate Function mapping
208 GPIO_Remap_I2C1 = ((uint32_t)0x00000001),
209 // CAN1 Alternate Function mapping
210 GPIO_Remap2_CAN1 = ((uint32_t)0x001D6000),
211 // Full SWJ Enabled (JTAG-DP + SW-DP) but without JTRST
212 GPIO_Remap_SWJ_NoJTRST = ((uint32_t)0x00300100)
214
220void GPIO_EXTILineConfig(GPIO_PortSource const portSource, GPIO_PinSource const pinSource);
221
227void GPIO_PinRemapConfig(GPIO_Remap const remap, bool const doEnable);
228
234void GPIO_Init(GPIO_ModuleAddress const module, GPIO_InitStruct const* const pInitStruct);
235
244
253
262
263#endif // SYSTEMPERIPHERALSGPIO_H
#define GPIOD_BASE
#define GPIOC_BASE
#define GPIOB_BASE
#define GPIOA_BASE
GPIO_Speed
Output Maximum frequency selection.
GPIO_ModuleAddress
General-purpose and alternate-function I/Os (GPIO) peripheral module.
GPIO_Mode
Configuration Mode enumeration.
#define GPIOE_BASE
GPIO_PinSource
Definition of pin source.
GPIO_Remap
Definition of alternative function mappings.
GPIO_PortSource
Definition of GPIO ports.
void GPIO_ResetBits(GPIO_ModuleAddress const module, uint16_t const GPIO_Pin)
Clears the selected data port bits.
void GPIO_SetBits(GPIO_ModuleAddress const module, uint16_t const GPIO_Pin)
Sets the selected data port bits.
GPIO_PinSource
Definition of pin source.
@ GPIO_PinSource5
@ GPIO_PinSource13
@ GPIO_PinSource6
@ GPIO_PinSource0
@ GPIO_PinSource15
@ GPIO_PinSource7
@ GPIO_PinSource11
@ GPIO_PinSource8
@ GPIO_PinSource1
@ GPIO_PinSource14
@ GPIO_PinSource12
@ GPIO_PinSource2
@ GPIO_PinSource4
@ GPIO_PinSource3
@ GPIO_PinSource9
@ GPIO_PinSource10
GPIO_Remap
Definition of alternative function mappings.
@ GPIO_Remap_SWJ_NoJTRST
@ GPIO_Remap_I2C1
@ GPIO_Remap2_CAN1
void GPIO_Init(GPIO_ModuleAddress const module, GPIO_InitStruct const *const pInitStruct)
Initializes the GPIOx peripheral according to the specified parameters in the GPIO_InitStruct.
void GPIO_EXTILineConfig(GPIO_PortSource const portSource, GPIO_PinSource const pinSource)
Selects the GPIO pin used as EXTI Line.
GPIO_PortSource
Definition of GPIO ports.
@ GPIO_PortSourceB
@ GPIO_PortSourceC
@ GPIO_PortSourceA
@ GPIO_PortSourceD
@ GPIO_PortSourceF
@ GPIO_PortSourceE
@ GPIO_PortSourceG
uint16_t GPIO_GetBits(GPIO_ModuleAddress const module, uint16_t const mask)
gets the selected data port bits.
GPIO_Speed
Output Maximum frequency selection.
@ GPIO_Speed_10MHz
@ GPIO_Speed_2MHz
@ GPIO_Speed_50MHz
void GPIO_PinRemapConfig(GPIO_Remap const remap, bool const doEnable)
Changes the mapping of the specified pin.
GpioName
Enumeration of the available GPIO modules addresses.
GPIO_ModuleAddress
General-purpose and alternate-function I/Os (GPIO) peripheral module.
@ GPIO_ModuleAddress_GPIOC
@ GPIO_ModuleAddress_GPIOD
@ GPIO_ModuleAddress_GPIOB
@ GPIO_ModuleAddress_GPIOA
@ GPIO_ModuleAddress_GPIOE
GPIO_Mode
Configuration Mode enumeration.
@ GPIO_Mode_IN_FLOATING
@ GPIO_Mode_Out_PP
@ GPIO_Mode_AF_PP
@ GPIO_Mode_Out_OD
@ GPIO_Mode_AF_OD
unsigned __int16 uint16_t
Definition stdint.h:63
unsigned __int32 uint32_t
Definition stdint.h:64
unsigned __int8 uint8_t
Definition stdint.h:62
GPIO Init structure definition.
GPIO Pin structure definition (holds the port and the port-pin)
static constexpr uint32_t crl_base_addr
static constexpr uint32_t odr_base_addr
static constexpr uint32_t bsrr_base_addr
static constexpr uint32_t idr_base_addr
static constexpr uint32_t lckr_base_addr
static constexpr uint32_t crh_base_addr
Template to define register at runtime, by providing the mutability policy, like Read Only/Write Only...
Definition Register.h:51