linux C之getchar()非阻塞方式

来源:http://www.cnblogs.com/hzijone/archive/2016/08/29/5818483.html
-Advertisement-
Play Games

參考鏈接: http://blog.csdn.net/zydlyq/article/details/50963360 ...


參考鏈接: http://blog.csdn.net/zydlyq/article/details/50963360

 

#include "../include/CommUart.h"
#include "ComCommon.h"
#include <stdio.h>
#include <unistd.h>
#include <iostream>
#include <stdlib.h>

#include <string.h>
#include <sys/time.h>
#include <sys/types.h>
#include <termios.h>

using namespace std;

#define USR_DEBUG




static struct termios ori_attr, cur_attr;

static __inline  int tty_reset(void)
{
   if (tcsetattr(STDIN_FILENO, TCSANOW, &ori_attr) != 0)
      return -1;

   return 0;
}





static __inline  int tty_set(void)
{

   if ( tcgetattr(STDIN_FILENO, &ori_attr) )
      return -1;

   memcpy(&cur_attr, &ori_attr, sizeof(cur_attr) );
   cur_attr.c_lflag &= ~ICANON;
//        cur_attr.c_lflag |= ECHO;
   cur_attr.c_lflag &= ~ECHO;
   cur_attr.c_cc[VMIN] = 1;
   cur_attr.c_cc[VTIME] = 0;

   if (tcsetattr(STDIN_FILENO, TCSANOW, &cur_attr) != 0)
      return -1;

   return 0;
}




static __inline  int kbhit(void)
{

   fd_set rfds;
   struct timeval tv;
   int retval;

   /* Watch stdin (fd 0) to see when it has input. */
   FD_ZERO(&rfds);
   FD_SET(0, &rfds);
   /* Wait up to five seconds. */
   tv.tv_sec  = 0;
   tv.tv_usec = 0;

   retval = select(1, &rfds, NULL, NULL, &tv);
   /* Don't rely on the value of tv now! */

   if (retval == -1) {
      perror("select()");
      return 0;
   } else if (retval)
      return 1;
   /* FD_ISSET(0, &rfds) will be true. */
   else
      return 0;
   return 0;
}








int main(int argc, char*argv[]) {



//非阻塞getChar初始化
   int tty_set_flag;
   tty_set_flag = tty_set();

   char com_num[3] = {0};
   if (argc < 2) {
      printf("please enter com num:\n");
      scanf("%c", &com_num);
   } else {
      // com_num = *argv[1];
      strcpy(com_num, argv[1]);
   }


#ifdef USR_DEBUG
   printf("main entry\n");
#endif // USR_DEBUG
   CComCommon *m_pComUart = new CCommUart;
#ifdef USR_DEBUG
   printf("create CCommUart\n");
#endif // USR_DEBUG


   char sendStr[256] = {0};
   strcpy(sendStr, "/dev/ttyS100");
   strcat(sendStr, com_num);
   strcat(sendStr, ",115200,8,1,n");
   // m_pComUart->InitComComm("/dev/ttyS1001,115200,8,1,n");
   m_pComUart->InitComComm(sendStr);

   // strcat(sendStr,"kkkkkkkkkkkkkkkkkk");


//  寫入文件

   FILE * pFile;
   char fileName[124] = {0};
   sprintf(fileName,"readData_dir/%s.txt",com_num);
   pFile = fopen (fileName, "w");




   char Rbuff[256] = {0};
   int nsize = 0;
   int i = 0;
   int nCnt = 0;
   while (1) {

      /*********************發送測試*******************************/
      // m_pComUart->SendBuff(buff,sizeof(buff));
      // m_pComUart->SendStr("1234567887654321abcdefgh");
      // m_pComUart->SendStr("kkkkkkkkkkkkkkkkkk");


      if (kbhit()) {
         const int key = getchar();
         // printf("%c pressed\n", key);
         if (key == 'q')
            break;
      } /*else {
         fprintf(stderr, "<no key detected>\n");
      }*/



      /*********************接收的測試案例*************************/
      memset(Rbuff, 0, 256);
      nsize = m_pComUart->GetData(Rbuff, 256, 1000);
      if (nsize > 0)
      {
         printf("nsize:%d\n", nsize);

// if(nCnt==10){
         for (i = 0; i < nsize; i++)
         {

            // printf("%02x ", (unsigned char)Rbuff[i]);

            fprintf(pFile, "%02x", (unsigned char)Rbuff[i]);
            if (nCnt == 7) {
               fprintf(pFile, "\n");
               nCnt = 0;
            } else {
               nCnt++;
            }

         }

         // 二進位輸入
         // fwrite (Rbuff , sizeof(char), sizeof(Rbuff), pFile);

//    nCnt = 0;
// }else{
//    nCnt++;
// }
         printf("\n");

         // printf("%s\n", Rbuff);

      }



      // printf("rec buff data:%s\n", Rbuff);
      // printf("get char:  %d\n", m_pComUart->GetChar(10));


      // sleep(1);
      // usleep(1000);
   }
   delete m_pComUart;

   fclose (pFile);

// 線程的操作
   if (tty_set_flag == 0)
      tty_reset();


}

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 說到高可用,看官們會想到很多方案,也許是自親身經歷過系統從單機變成高可用的痛苦過程,也許有的看官只是在自己的虛機上搭建過測試的玩具。今天本篇用我自己的真實經歷給大家講述,不管怎麼樣實戰和測試玩耍還是很大的區別的!可能你覺得搭建一套高可用方案很簡單,配置配置就OK了,但在真正的複雜系統中一切就沒有那麼 ...
  • 最近看了slave IO的源碼,發現slave IO的寫relay log貌似是單線程單連接的,這讓我有點小失望。 slave IO的主函數是handle_slave_io,處理流程如下: 圖1 handle_slave_io處理流程 我們這次主要要完成safe_connect以及try_to_re ...
  • 1. 表恢復 對誤刪的表,只要沒有使用 purge 永久刪除選項,那麼基本上是能從 flashback table 區恢復回來的。 數據表和其中的數據都是可以恢復回來的,記得 flashback table 是從 Oralce 10g 提供的,一般步驟有: a.從 flashback table 里 ...
  • RDD Resilient Distributed Datasets彈性分散式數據集 Spark revolves around the concept of a resilient distributed dataset (RDD), which is a fault-tolerant colle ...
  • 我們來看看在圖像處理領域如何使用捲積神經網路來對圖片進行分類。 1 讓電腦做圖片分類: 圖片分類就是輸入一張圖片,輸出該圖片對應的類別(狗,貓,船,鳥),或者說輸出該圖片屬於哪種分類的可能性最大。 人類看到一張圖片馬上就能分辨出裡面的內容,但是電腦分辨一張圖片就完全不一樣了。同一張圖片, 人類看 ...
  • ...
  • Coalsece 返回第一個不是null的值 ...
  • 萬事開頭難,尤其是剛接觸Linux的人,會感覺難以入手,如果大家需要的話,我後續會寫文章,從Linux安裝到簡單使用,以step by step的形式貼出來,讓大家少走彎路,增加學習Linux的信心,以後大家開始學習鳥哥的私房菜——基礎文件篇,就事半功倍了。 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...