@ NO_OS_PULL_DOWN
Definition: no_os_gpio.h:70
void * extra
Definition: no_os_gpio.h:106
Structure holding the parameters for GPIO initialization.
Definition: no_os_gpio.h:79
#define NO_OS_GPIO_OUT
Definition: no_os_gpio.h:47
enum no_os_gpio_pull_up pull
Definition: no_os_gpio.h:85
GPIO_TypeDef * port
Definition: stm32_gpio.h:59
int32_t stm32_gpio_get_direction(struct no_os_gpio_desc *desc, uint8_t *direction)
Get the direction of the specified GPIO.
Definition: stm32_gpio.c:319
uint32_t mode
Definition: stm32_gpio.h:46
int32_t port
Definition: no_os_gpio.h:81
@ NO_OS_PULL_UP_WEAK
Definition: no_os_gpio.h:71
int32_t number
Definition: no_os_gpio.h:83
Structure holding the initialization parameters for stm32 platform.
Definition: stm32_gpio.h:44
@ NO_OS_PULL_DOWN_WEAK
Definition: no_os_gpio.h:72
#define NO_OS_GPIO_IN
Definition: no_os_gpio.h:48
@ NO_OS_PULL_NONE
Definition: no_os_gpio.h:66
int32_t stm32_gpio_remove(struct no_os_gpio_desc *desc)
Free the resources allocated by no_os_gpio_get().
Definition: stm32_gpio.c:245
int32_t stm32_gpio_direction_output(struct no_os_gpio_desc *desc, uint8_t value)
Enable the output direction of the specified GPIO.
Definition: stm32_gpio.c:287
int32_t port
Definition: no_os_gpio.h:98
Structure holding the GPIO descriptor.
Definition: no_os_gpio.h:96
int32_t stm32_gpio_get_optional(struct no_os_gpio_desc **desc, const struct no_os_gpio_init_param *param)
Get the value of an optional GPIO.
Definition: stm32_gpio.c:229
int32_t stm32_gpio_set_value(struct no_os_gpio_desc *desc, uint8_t value)
Set the value of the specified GPIO.
Definition: stm32_gpio.c:341
void * no_os_malloc(size_t size)
Allocate memory and return a pointer to it.
Definition: chibios_alloc.c:43
Header file for stm32 gpio specifics.
#define NO_OS_BIT(x)
Definition: no_os_util.h:45
void no_os_free(void *ptr)
Deallocate memory previously allocated by a call to no_os_calloc or no_os_malloc.
Definition: chibios_alloc.c:69
enum no_os_gpio_pull_up pull
Definition: no_os_gpio.h:102
#define NULL
Definition: wrapper.h:64
const struct no_os_gpio_platform_ops stm32_gpio_ops
stm32 platform specific gpio platform ops structure
Definition: stm32_gpio.c:389
int32_t stm32_gpio_get_value(struct no_os_gpio_desc *desc, uint8_t *value)
Get the value of the specified GPIO.
Definition: stm32_gpio.c:368
const struct no_os_gpio_platform_ops stm32_gpio_ops
stm32 platform specific GPIO platform ops structure
Definition: stm32_gpio.c:389
uint32_t speed
Definition: stm32_gpio.h:48
@ NO_OS_PULL_UP
Definition: no_os_gpio.h:68
void * extra
Definition: no_os_gpio.h:89
Header file of GPIO Interface.
uint32_t alternate
Definition: stm32_gpio.h:50
int32_t _gpio_init(struct no_os_gpio_desc *desc, const struct no_os_gpio_init_param *param)
Prepare the GPIO decriptor.
Definition: xilinx_gpio.c:63
Header file of utility functions.
GPIO_InitTypeDef gpio_config
Definition: stm32_gpio.h:61
stm32 platform specific gpio descriptor
Definition: stm32_gpio.h:57
int32_t stm32_gpio_get(struct no_os_gpio_desc **desc, const struct no_os_gpio_init_param *param)
Obtain the GPIO decriptor.
Definition: stm32_gpio.c:187
int32_t number
Definition: no_os_gpio.h:100
int32_t stm32_gpio_direction_input(struct no_os_gpio_desc *desc)
Enable the input direction of the specified GPIO.
Definition: stm32_gpio.c:260
Error macro definition for ARM Compiler.