首页 > 代码库 > 04clock_01misc_app_write
04clock_01misc_app_write
1 #include <stdio.h> 2 #include <sys/stat.h> 3 #include <fcntl.h> 4 #include <unistd.h> 5 6 #define DEV_NAME "/dev/my_led" 7 8 int main(int argc, char const *argv[]) 9 {10 11 int fd = open(DEV_NAME, O_RDWR);12 if(fd < 0) {13 perror("open");14 return -1;15 }16 17 char buf[10] = "1234567890";18 19 //int ret = read(fd, buf, 10);20 //printf("buf = %s\n", buf);21 22 write(fd, buf, 10); 23 24 close(fd);25 return 0;26 }
04clock_01misc_app_write
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。