linux kernel 工程师
全部博文(99)
发布时间:2014-03-21 14:33:16
如果希望同sysfs来操作gpio,需要配置CONFIG_GPIO_SYSFS=y操作方法是:# cd /sys/class/gpio/## lsexport gpiochip4 unexport# # echo 8 > export# # ls export gpio8 gpiochip4 unexport# # ls gpio8active_lo.........【阅读全文】
发布时间:2014-03-21 13:21:07
CONFIG_USB_STORAGE 依赖于CONFIG_SCSI 和 CONFIG_BLK_DEV_SD=y......【阅读全文】
发布时间:2014-03-21 13:18:26
CONFIG_I2C_CHARDEV 决定了是否注册一个i2c-0这样的字符设备......【阅读全文】
发布时间:2014-03-20 11:10:36
extern int gpio_request(unsigned gpio, const char *label); extern void gpio_free(unsigned gpio);extern int gpio_direction_input(unsigned gpio); extern int gpio_direction_output(unsigned gpio, int value);1. 先request一个gpio。(类似于mem的申请动作,但这里只是设置一个标志,表示已占用)gpi.........【阅读全文】