0

我从事基于 FASTRACK SUPREME 的项目,该项目必须通过串行 RS232 接收命令。这

问题是:当我使用 HyperTerm 命令 ATDxxxxxxxxx;工作正常。当我使用 CVI RS232 库时,没有任何反应。是否有可能我的命令仍然被阻止

串行缓冲区?这是我的代码:

#include <ansi_c.h>
#include <cvirte.h>
#include <userint.h>
#include <rs232.h>
#include <utility.h>
#include <formatio.h>
#include <string.h>

int configurePort(void);
int sendCommand(void);
int port_open;
int error;

int main()
{
 configurePort();
 sendCommand ();
 return 0;
}
int configurePort()
{
 port_open = 0;

 error = OpenComConfig (4, "COM4",115200 ,0,8,1,0, -1);
 if (error) 
 {
  printf("Error!\n");
 }
 if (error == 0)
        {
        port_open = 1;
  SetXMode (4, 0);
  SetCTSMode (4, 0);
  SetComTime (4, 0);
        }


 return 0;
}
int sendCommand ()
{
 char bufferWrite[100] ;
 Fmt(bufferWrite,"%s","ATD0040761768027;");
    ComWrt(4, bufferWrite, 18);
 return 0;
}

问题出在哪里?请帮忙!谢谢。

4

1 回答 1

0

我按原样尝试了您的代码。我不确定您所说的“什么都没有发生”是什么意思当我按原样使用代码时(除了我必须使用端口 2),一切都运行良好。ComWrt 函数中的字符数为 18。

确保您尝试使用的 com 端口可用。

除了你的#includes,这里是我在我的电脑上运行的带有小修改的代码,运行 CVI 2010 的 WinXP:

#define PORT 2
#define PORTNAME "COM2"

int configurePort(void);
int sendCommand(void);
int port_open;
int error;

int main()
{
  configurePort();
  sendCommand ();
  return 0;
}
int configurePort()
{
  port_open = 0;

  error = OpenComConfig (PORT, PORTNAME,115200 ,0,8,1,0, -1);
  if (error) 
  {
      printf("Error!\n");
  }
  if (error == 0)
        {
          port_open = 1;
          SetXMode (PORT, 0);
          SetCTSMode (PORT, 0);
          SetComTime (PORT, 0);
        }
 return 0;
}
int sendCommand ()
    {
         char bufferWrite[100] ;
         Fmt(bufferWrite,"%s","ATD0040761768027;");
         error = ComWrt(PORT, bufferWrite, sizeof("ATD0040761768027;"));
         return 0;
    }
于 2011-04-22T21:43:41.593 回答