no-OS
maxim_gpio.h
Go to the documentation of this file.
1 /***************************************************************************/
39 #ifndef MAXIM_GPIO_H_
40 #define MAXIM_GPIO_H_
41 
42 #include <stdbool.h>
43 #include <stdint.h>
44 #include "no_os_irq.h"
45 #include "no_os_gpio.h"
46 #include "max32665.h"
47 #include "gpio.h"
48 
49 #define N_PINS MXC_CFG_GPIO_PINS_PORT
50 #define N_PORTS MXC_CFG_GPIO_INSTANCES
51 
55 extern const struct no_os_gpio_platform_ops max_gpio_ops;
59 extern const struct no_os_irq_platform_ops max_gpio_irq_ops;
60 
61 struct max_gpio_init_param {
63  mxc_gpio_vssel_t vssel;
64 };
65 
66 #endif
no_os_irq.h
Header file of IRQ interface.
max_gpio_init_param::vssel
mxc_gpio_vssel_t vssel
Definition: maxim_gpio.h:63
max_gpio_ops
const struct no_os_gpio_platform_ops max_gpio_ops
maxim platform specific gpio platform ops structure
Definition: maxim_gpio.c:326
max_gpio_init_param
GPIO platform specific init parameters.
Definition: maxim_gpio.h:61
no_os_gpio_platform_ops
Structure holding gpio function pointers that point to the platform specific function.
Definition: no_os_gpio.h:133
no_os_gpio.h
Header file of GPIO Interface.
no_os_irq_platform_ops
Structure holding IRQ function pointers that point to the platform specific function.
Definition: no_os_irq.h:166
max_gpio_irq_ops
const struct no_os_irq_platform_ops max_gpio_irq_ops
maxim platform specific gpio irq platform ops structure
Definition: maxim_gpio_irq.c:381