使用c代码读取AT COMMAND输出?

时间:2014-08-13 07:12:48

标签: c gsm at-command serial-communication

我想读取使用c代码发送到GSM调制解调器的AT命令的输出。我做了一个代码但是在这个代码缓冲区中没有显示正确的输出。请帮助我。 我想使用这个code.AT命令打印单元格信息,我使用的是“AT + CCED = 0,2”。

int main()
{
  int fd;  // File descriptor
  int n,i;
  char buf[1000]={"\0"}; 
  char com[20]={"at+cced=0,2\r"};       
  fd = open_port();

  // Read the configureation of the port

  struct termios options;
  tcgetattr( fd, &options );

  /* SEt Baud Rate */

  cfsetispeed( &options, B115200 );
  cfsetospeed( &options, B115200 );

  //I don't know what this is exactly

  options.c_cflag |= ( CLOCAL | CREAD );

  // Set the Charactor size

  options.c_cflag &= ~CSIZE; /* Mask the character size bits */
  options.c_cflag |= CS8;    /* Select 8 data bits */

  // Set parity - No Parity (8N1)

  options.c_cflag &= ~PARENB;
  options.c_cflag &= ~CSTOPB;
  options.c_cflag &= ~CSIZE;
  options.c_cflag |= CS8;

  options.c_lflag &= ~(ICANON | ECHO | ECHOE | ISIG);

  // Disable Software Flow control

  options.c_iflag &= ~(IXON | IXOFF | IXANY);

  // Chose raw (not processed) output

  options.c_oflag &= ~OPOST;

  if ( tcsetattr( fd, TCSANOW, &options ) == -1 )
    printf ("1Error with tcsetattr = %s\n", strerror ( errno ) );
  else
    printf ( "%s\n", "tcsetattr succeed" );

  fcntl(fd, F_SETFL, FNDELAY);


  // Write some stuff !!!

  n = write(fd, com, strlen(com));
  if (n < 0)
    fputs("write() of 4 bytes failed!\n", stderr);
  else
    printf ("Write succeed n  = %i\n", n );

  n=0;
  i=0;
  while (1) 
  {
    n = read( fd, buf, sizeof(buf) );

    if(n>0)
    {   
      printf("%s", buf);    
      fflush(stdout);
    }
    //   i=i+1;
  }

  close( fd );
  return 0;
}           

int open_port(void)
{
  int fd; /* File descriptor for the port */

  fd = open("/dev/ttyUSB0", O_RDWR | O_NOCTTY | O_NDELAY);
  if (fd == -1)
  {
    perror("open_port: Unable to open /dev/ttyUSB0 - ");
  }
  else
    fcntl(fd, F_SETFL, FNDELAY);

  printf ( "In Open port fd = %i\n", fd); 
  return (fd);
}

1 个答案:

答案 0 :(得分:1)

之前我做过这样的项目,但我使用的是Java!它非常相似(也很痛苦)。

我将向您介绍我为使其工作所做的工作:

  1. 您是否设置了串口的正确速率和位标志?
  2. 使用PuttySuper Terminal确保您可以在尝试编码任何内容之前之前与您的GSM调制解调器进行通信。
  3. 确保您有一些空闲时间等待GSM调制解调器启动(也就是:预热时间)。
  4. 某些特殊chars导致问题 - 您是否正确处理它们?
  5. 您是否在通信结束时发送EOF\r\n\0(取决于GSM调制解调器)? - &GT;有时在发送此特殊字符之前,您不会收到任何消息。
  6. 还可以使用经过测试的库:

      

    如果您的整个项目取决于服务而不是调制解调器本身,您可以使用在线GSM / SMS服务。