You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

9 lines
250 B
C

#ifndef _P_GPIO_H_
#define _P_GPIO_H_
void p_gpio_init(void);
void p_gpio_parallel_write(PortGroup* group, uint32_t mask, uint32_t data);
void p_gpio_parallel_write_arr(PortGroup* group, uint32_t mask, uint32_t* data, uint32_t len);
#endif