设备读写应用范例-基于himawari-8卫星的沙尘监测

时间:2024-06-29 20:21:00
【文件属性】:

文件名称:设备读写应用范例-基于himawari-8卫星的沙尘监测

文件大小:7.57MB

文件格式:PDF

更新时间:2024-06-29 20:21:00

嵌入式linux 周立功

程序清单 2.23 设备读写应用范例 1 #include 2 #include 3 #include 4 #include 5 #include 6 #include 7 8 #define DEV_NAME "/dev/char_cdev_rw" 9 10 int main(int argc, char *argv[]) 11 { 12 int i; 13 int fd = 0; 14 char buff[64]; 15 16 fd = open (DEV_NAME, O_RDWR); 17 if (fd < 0) { 18 perror("Open "DEV_NAME" Failed!\n");


网友评论