⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 gpio.h

📁 linux 内核源代码
💻 H
字号:
#ifndef _ASM_GENERIC_GPIO_H#define _ASM_GENERIC_GPIO_H/* platforms that don't directly support access to GPIOs through I2C, SPI, * or other blocking infrastructure can use these wrappers. */static inline int gpio_cansleep(unsigned gpio){	return 0;}static inline int gpio_get_value_cansleep(unsigned gpio){	might_sleep();	return gpio_get_value(gpio);}static inline void gpio_set_value_cansleep(unsigned gpio, int value){	might_sleep();	gpio_set_value(gpio, value);}#endif /* _ASM_GENERIC_GPIO_H */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -