1 Star 0 Fork 0

mo_yq5/wifi-joystick-c

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
m_gpio.h 618 Bytes
一键复制 编辑 原始数据 按行查看 历史
mo_yq5 提交于 2022-01-07 23:09 . 使用gpio接口模拟spi实现
#ifndef M_GPIO_H
#define M_GPIO_H "m_gpio"
typedef enum {
M_GPIO_LOW = 0, /**< Low level.CNcomment:低电平CNend*/
M_GPIO_HIGH /**< High level.CNcomment:高电平CNend*/
} m_gpio_value;
typedef enum {
M_GPIO_IN = 0, /**< Input.CNcomment:输入方向CNend*/
M_GPIO_OUT /**< Output.CNcomment:输出方向CNend*/
} m_gpio_dir;
int m_gpio_init();
int m_gpio_set_dir(unsigned int id, m_gpio_dir dir);
m_gpio_dir m_gpio_get_dir(unsigned int id);
int m_gpio_set_val(unsigned int id, m_gpio_value val);
m_gpio_value m_gpio_get_val(unsigned int id);
#endif
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/moyq5/wifi-joystick-c.git
[email protected]:moyq5/wifi-joystick-c.git
moyq5
wifi-joystick-c
wifi-joystick-c
master

搜索帮助