04clock_01misc_app_write

Posted 莽莽丛林

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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的主要内容,如果未能解决你的问题,请参考以下文章

04clock_06semqphore

如何修复 ubuntu 中的“No module named 'kivy._clock'”错误?

CUDA 中clock() 和clock64() 的时钟测量值是多少?

为啥 java.time.Clock 有区域信息?

根据时钟滴答测量算法运行时间

0_Simple__clock