色婷婷AⅤ一区二区三区|亚洲精品第一国产综合亚AV|久久精品官方网视频|日本28视频香蕉

          新聞中心

          EEPW首頁(yè) > 嵌入式系統(tǒng) > 設(shè)計(jì)應(yīng)用 > 關(guān)于Linux設(shè)備驅(qū)動(dòng)中input子系統(tǒng)的介紹

          關(guān)于Linux設(shè)備驅(qū)動(dòng)中input子系統(tǒng)的介紹

          作者: 時(shí)間:2016-10-08 來(lái)源:網(wǎng)絡(luò) 收藏

          測(cè)試程序:

          #include

          #include

          #include

          #include

          #include

          int main(void )

          {

          int fd;

          int key_value,i=0,count;

          struct input_event ev_key;

          fd=open(/dev/input/event0,0666);

          if(fd0){

          perror(open device);

          exit(1);

          }

          while(1){

          count=read(fd,ev_key,sizeof(struct input_event));

          for(i=0;i(int)count/sizeof(struct input_event);i++)

          {

          if(EV_KEY==ev_key.type)

          {

          int num=ev_key.code%10-1;

          printf(type:%d,code:%d ,value:%dn key%d pressed!n,ev_key.type,ev_key.code,ev_key.value,num);

          }

          if(EV_SYN==ev_key.type)

          printf(syn eventn);

          }

          }

          close(fd);

          return 0;

          }


          上一頁(yè) 1 2 下一頁(yè)

          關(guān)鍵詞:

          評(píng)論


          相關(guān)推薦

          技術(shù)專(zhuān)區(qū)

          關(guān)閉