这些小活动你都参加了吗?快来围观一下吧!>>
电子产品世界 » 论坛首页 » 综合技术 » 工业控制与自动化 » AI_ContReadChannel函数

共1条 1/1 1 跳转至

AI_ContReadChannel函数

菜鸟
2007-08-11 20:29:21     打赏
问:AI_ContReadChannel函数中的InBuf参数的数据格式  是  D11...D0,C3...C0,那么我怎么样才能把D11...D0从中取出来?还是说InBuf[]中就已经存储的是转换以后的数据?谢谢
答:先把数据取回来再对数组统一处理。
  函数原型:
   I16 AI_ContReadChannel (U16 CardNumber, U16 Channel,
   U16 AdRange, U16 *Buffer, U32 ReadCount,
   F32 SampleRate, U16 SyncMode);
  Description:
   Buffer : An integer array to contain the acquired data.
   Buffer must has a length equal to or greater
   than the value of parameter ReadCount.
   If double-buffered mode is enabled, this buffer
   is of no use, you can ignore this argument.
  
  //...若采用non-double-buffer mode...
  #define ChNo 0
  #define AdRange AD_B_5_V
  #define SampLen 2048 //读取样点数
  #define SampRate 20000.000f
  U16 InBuf[SampLen];
  ......
  AI_ContReadChannel(CardID, ChNo,AdRange,InBuf,
   SampLen,SampleRate,SYNC_ASYNC);
  ......
        for(i=0;i<SampLen;i++)
     InBuf[i] /= 16;//<==>InBuf[i]>>=4;



关键词: ContReadChannel     函数    

共1条 1/1 1 跳转至

回复

匿名不能发帖!请先 [ 登陆 注册 ]