3#ifndef SYSTEMPERIPHERALSGPIO_H
4#define SYSTEMPERIPHERALSGPIO_H
26template<u
int32_t base>
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)
166#define GPIO_Pin_All ((uint16_t)0xFFFF)
GPIO_Speed
Output Maximum frequency selection.
GPIO_ModuleAddress
General-purpose and alternate-function I/Os (GPIO) peripheral module.
GPIO_Mode
Configuration Mode enumeration.
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_Remap
Definition of alternative function mappings.
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.
uint16_t GPIO_GetBits(GPIO_ModuleAddress const module, uint16_t const mask)
gets the selected data port bits.
GPIO_Speed
Output Maximum frequency selection.
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.
unsigned __int16 uint16_t
unsigned __int32 uint32_t
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...