2

我正在尝试.amr通过 UART 将文件从桌面发送到 SIM900 GSM 模块。

我正在使用teuniz 的 RS232 库

RS232_SendByte()我使用 AT 命令进行初始化,然后将文件读入缓冲区并使用库函数逐字节将其写入 UART ,但它似乎不起作用。

我发送以下 AT 命令:

AT+CFSINIT
AT+CFSWFILE=\"audio.amr\",0,6694,13000 # After which I get the CONNECT message from the SIM900 module
# Here's where I send the file
AT+CFSGFIS=\"audio.amr\"

这是我的代码:

#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include "rs232.h"


char *readFile(char *filename, int *size) {
  char *source = NULL;
  FILE *fp = fopen(filename, "rb");
  if (fp != NULL) {
    /* Go to the end of the file. */
    if (fseek(fp, 0L, SEEK_END) == 0) {
      /* Get the size of the file. */
      long bufsize = ftell(fp);
      if (bufsize == -1) { return NULL; }

      /* Allocate our buffer to that size. */
      source = malloc(sizeof(char) * (bufsize + 1));
      if(!source) return NULL;

      /* Go back to the start of the file. */
      if (fseek(fp, 0L, SEEK_SET) != 0) { return NULL; }

      /* Read the entire file into memory. */
      size_t newLen = fread(source, sizeof(char), bufsize, fp);
      if ( ferror( fp ) != 0 ) {
        fputs("Error reading file", stderr);
        free(source);
        return NULL;
      } else {
        source[newLen++] = 0; /* Just to be safe. */
      }

      *size = bufsize;
    }
    fclose(fp);
  }
  return source;
}


int main(int argc, char *argv[])
{
  int ret = 0, cport_nr = 2, bdrate=38400; 
  char data[2000] = {0};
  if(RS232_OpenComport(cport_nr, bdrate)) {
    printf("Can not open comport\n");
    ret = -1;
    goto END;
  }

  int size;
  unsigned char *filebuf = readFile("audio.amr", &size);
  if (!filebuf) { 
    ret = -1;
    goto END_1; 
  }

  /* Initialization */
  RS232_cputs(cport_nr, "AT");
  RS232_cputs(cport_nr, "AT+CFSINIT");
  sleep(1);
  RS232_cputs(cport_nr, "AT+CFSWFILE=\"audio.amr\",0,6694,13000");
  /* Wait for CONNECT */
  sleep(2);

  printf("Sending file of size: %d\n", size);
  int i;
  for (i = 0; i < size; ++i) {
    putchar(filebuf[i]);
    RS232_SendByte(cport_nr, filebuf[i]);
  }
  free(filebuf);

  sleep(1);
  /* Check if file transferred right */
  RS232_cputs(cport_nr, "AT+CFSGFIS=\"audio.amr\"");

  END_1: 
  RS232_CloseComport(cport_nr);
  END: 
  return ret;
}

编辑 1

通常,使用 AT 命令向 SIM900 发送文件的过程如下所述

  1. AT+CFSINIT# 初始化闪存;回复正常
  2. AT+CFSWFILE=<filename>,<writeMode>,<fileSize>,<InputTime># 使用这些参数写入文件;回应是CONNECT;所以这是我开始发送文件的时候
  3. 这是我发送文件的地方。如果它有效并且发送的文件大小与<filesize>上述命令中发送的匹配,则 SIM900 必须以 OK 响应,但事实并非如此。:(
  4. AT+CFSGFIS=<filename># 给出闪存上的文件大小。这给了我一个错误,因为文件没有正确上传。

这让我相信我的程序有问题。我正在以二进制模式读取文件。报告的大小与我在AT+CFSWFILE=<filename>,<writeMode>,<fileSize>,<InputTime>命令中指定的大小完全相同。

4

0 回答 0