36#define GPIO_T_ADDR_BASE(pin) (GPIOA_BASE + ((pin) & 0xf000u))
41#define GPIO_T_ADDR(pin) ((GPIO_Type *)(GPIO_T_ADDR_BASE(pin)))
48#define GPIO_T_PORT(pin) ((gpio_t)(pin) >> 12u)
53#define GPIO_T_PIN(pin) ((pin) & 0x00ffu)
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"
62#define GPIO_T_IS_HWCS(pin) (((pin) & 0xff00u) == 0x8000)
67#define GPIO_T_HWCS(pin) ((pin) & 0x0003u)
void gpio_init_mux(gpio_t pin, uint32_t func)
Configure the pin mux to the given function.
Shared CPU specific definitions for the STM32 family.