no-OS
maxim_gpio.h
Go to the documentation of this file.
1 /***************************************************************************/
33 #ifndef MAXIM_GPIO_H_
34 #define MAXIM_GPIO_H_
35 
36 #include <stdbool.h>
37 #include <stdint.h>
38 #include "no_os_irq.h"
39 #include "no_os_gpio.h"
40 #include "max32650.h"
41 #include "gpio.h"
42 
43 #define N_PINS MXC_CFG_GPIO_PINS_PORT
44 #define N_PORTS MXC_CFG_GPIO_INSTANCES
45 
49 extern const struct no_os_gpio_platform_ops max_gpio_ops;
53 extern const struct no_os_irq_platform_ops max_gpio_irq_ops;
54 
57  mxc_gpio_vssel_t vssel;
58 };
59 
60 #endif
NO_OS_PULL_DOWN
@ NO_OS_PULL_DOWN
Definition: no_os_gpio.h:70
no_os_gpio_desc::extra
void * extra
Definition: no_os_gpio.h:106
maxim_gpio.h
Header file for maxim gpio specifics.
no_os_alloc.h
no_os_gpio_init_param
Structure holding the parameters for GPIO initialization.
Definition: no_os_gpio.h:79
NO_OS_GPIO_OUT
#define NO_OS_GPIO_OUT
Definition: no_os_gpio.h:47
no_os_gpio_init_param::pull
enum no_os_gpio_pull_up pull
Definition: no_os_gpio.h:85
max_gpio_get_optional
int32_t max_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: maxim_gpio.c:146
no_os_udelay
void no_os_udelay(uint32_t usecs)
Generate microseconds delay.
Definition: maxim_delay.c:54
maxim_irq.h
Header file for maxim irq specifics.
NO_OS_GPIO_HIGH_Z
@ NO_OS_GPIO_HIGH_Z
Definition: no_os_gpio.h:119
N_PORTS
#define N_PORTS
Definition: maxim_gpio.h:44
no_os_irq.h
Header file of IRQ interface.
max_gpio_get
int32_t max_gpio_get(struct no_os_gpio_desc **desc, const struct no_os_gpio_init_param *param)
Obtain the GPIO decriptor.
Definition: maxim_gpio.c:66
maxim_gpio.h
Header file for maxim gpio specifics.
no_os_delay.h
Header file of Delay functions.
max_gpio_direction_input
int32_t max_gpio_direction_input(struct no_os_gpio_desc *desc)
Enable the input direction of the specified GPIO.
Definition: maxim_gpio.c:178
no_os_gpio_init_param::port
int32_t port
Definition: no_os_gpio.h:81
NO_OS_PULL_UP_WEAK
@ NO_OS_PULL_UP_WEAK
Definition: no_os_gpio.h:71
NO_OS_GPIO_HIGH
@ NO_OS_GPIO_HIGH
Definition: no_os_gpio.h:117
no_os_gpio_init_param::number
int32_t number
Definition: no_os_gpio.h:83
NO_OS_PULL_DOWN_WEAK
@ NO_OS_PULL_DOWN_WEAK
Definition: no_os_gpio.h:72
no_os_get_time
struct no_os_time no_os_get_time(void)
Get current time.
Definition: maxim_delay.c:73
no_os_time
Structure holding time data (seconds, microseconds).
Definition: no_os_delay.h:47
no_os_calloc
void * no_os_calloc(size_t nitems, size_t size)
Allocate memory and return a pointer to it, set memory to 0.
Definition: chibios_alloc.c:54
maxim_gpio.h
Header file for maxim gpio specifics.
NO_OS_GPIO_IN
#define NO_OS_GPIO_IN
Definition: no_os_gpio.h:48
NO_OS_PULL_NONE
@ NO_OS_PULL_NONE
Definition: no_os_gpio.h:66
NO_OS_GPIO_LOW
@ NO_OS_GPIO_LOW
Definition: no_os_gpio.h:115
maxim_irq.h
Header file for maxim irq specifics.
SysTick_Handler
void SysTick_Handler(void)
Definition: maxim_delay.c:43
maxim_gpio.h
Header file for maxim gpio specifics.
maxim_irq.h
Header file for maxim irq specifics.
max_gpio_get_value
int32_t max_gpio_get_value(struct no_os_gpio_desc *desc, uint8_t *value)
Get the value of the specified GPIO.
Definition: maxim_gpio.c:297
maxim_gpio.h
Header file for maxim gpio specifics.
maxim_irq.h
Header file for maxim irq specifics.
maxim_gpio.h
Header file for maxim gpio specifics.
max_gpio_direction_output
int32_t max_gpio_direction_output(struct no_os_gpio_desc *desc, uint8_t value)
Enable the output direction of the specified GPIO.
Definition: maxim_gpio.c:200
max_gpio_get_direction
int32_t max_gpio_get_direction(struct no_os_gpio_desc *desc, uint8_t *direction)
Get the direction of the specified GPIO.
Definition: maxim_gpio.c:234
no_os_gpio_desc::port
int32_t port
Definition: no_os_gpio.h:98
max_gpio_set_value
int32_t max_gpio_set_value(struct no_os_gpio_desc *desc, uint8_t value)
Set the value of the specified GPIO.
Definition: maxim_gpio.c:260
max_gpio_ops
const struct no_os_gpio_platform_ops max_gpio_ops
maxim platform specific GPIO platform ops structure
Definition: maxim_gpio.c:320
no_os_gpio_desc
Structure holding the GPIO descriptor.
Definition: no_os_gpio.h:96
no_os_mdelay
void no_os_mdelay(uint32_t msecs)
Generate miliseconds delay.
Definition: maxim_delay.c:64
max_gpio_init_param::vssel
mxc_gpio_vssel_t vssel
Definition: maxim_gpio.h:57
max_gpio_ops
const struct no_os_gpio_platform_ops max_gpio_ops
maxim platform specific gpio platform ops structure
Definition: maxim_gpio.c:320
max_gpio_init_param
GPIO platform specific init parameters.
Definition: maxim_gpio.h:55
NO_OS_BIT
#define NO_OS_BIT(x)
Definition: no_os_util.h:45
no_os_free
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
no_os_time::us
unsigned int us
Definition: no_os_delay.h:48
no_os_gpio_desc::pull
enum no_os_gpio_pull_up pull
Definition: no_os_gpio.h:102
NULL
#define NULL
Definition: wrapper.h:64
maxim_irq.h
Header file for maxim irq specifics.
no_os_time::s
unsigned int s
Definition: no_os_delay.h:48
NO_OS_PULL_UP
@ NO_OS_PULL_UP
Definition: no_os_gpio.h:68
no_os_gpio_platform_ops
Structure holding gpio function pointers that point to the platform specific function.
Definition: no_os_gpio.h:127
no_os_gpio_init_param::extra
void * extra
Definition: no_os_gpio.h:89
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:160
maxim_irq.h
Header file for maxim irq specifics.
no_os_util.h
Header file of utility functions.
no_os_gpio_platform_ops::gpio_ops_get
int32_t(* gpio_ops_get)(struct no_os_gpio_desc **, const struct no_os_gpio_init_param *)
Definition: no_os_gpio.h:129
N_PINS
#define N_PINS
Definition: maxim_gpio.h:43
maxim_irq.h
Header file for maxim irq specifics.
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:375
no_os_gpio_desc::number
int32_t number
Definition: no_os_gpio.h:100
errno.h
Error macro definition for ARM Compiler.
maxim_gpio.h
Header file for maxim gpio specifics.
max_gpio_remove
int32_t max_gpio_remove(struct no_os_gpio_desc *desc)
Free the resources allocated by no_os_gpio_get().
Definition: maxim_gpio.c:162