在我们的 Graduation 项目中,我们应该将 GSM 模块 (ADH8066) 连接到运行嵌入式 Linux (Qtopia) 的 ARM 板 (OK-6410) 并与之通信。
当我们第一次对模块进行操作时,它会发送一个“Ready”消息,然后我们可以通过 AT 命令与它进行通信。我们已经使用超级终端成功地与它通信,并设法发送了一条简单的短信。
当我们尝试从 ARM 板与它通信时,就会出现问题。
我们设法收到“就绪”消息,但没有任何响应。
这是我们到目前为止开发的代码:
int main(void){
int fd;
char *dev ="/dev/ttySAC3";
struct termios options;
char buffer[20];
char buffer2[20];
char *bufptr;
char *bufptr2;
bufptr = buffer;
bufptr2 = buffer2;
int nbytes,nbytes2=0;
fd = open (dev, O_RDWR | O_NOCTTY);
tcflush(fd, TCIOFLUSH);
tcgetattr(fd, &options);
cfsetispeed(&options, B115200); //Set Baud-rate to 115200
cfsetospeed(&options, B115200);
options.c_cflag |= CLOCAL | CREAD; //Enable the receiver and set local mode
options.c_cflag &= ~PARENB; //No parity (8N1)
options.c_cflag &= ~CSTOPB;
options.c_cflag &= ~CSIZE;
options.c_cflag |= CS8;
options.c_cflag &= ~CRTSCTS; //Disable hardware flow control
options.c_lflag |= (ICANON | ECHO | ECHOE); //enable input-canonical mode
options.c_iflag = IGNPAR; //Ignore parity errors
options.c_iflag &= ~(IXON | IXOFF | IXANY); //Disable software flow control
options.c_oflag |= OPOST; //enable output-processing mode
tcsetattr(fd, TCSANOW, &options);
printf("Hello GSM\n");
tcflush(fd, TCIOFLUSH);
//capture the "Ready" message
while(1){
nbytes = read(fd, bufptr, 1);
if (0!=strstr(buffer,"Ready")){
printf("\nReady Found!\n");
break;
}
bufptr += nbytes;
}
tcflush(fd, TCIOFLUSH);
// send simple "AT" AT command
int y = write(fd,"AT\r\n",4);
if (y==4)
printf("Written\n");
//trying to capture the "OK" response for the above AT command
while(1){
nbytes2 = read(fd, bufptr2, 1);
perror ("Read error: ");
printf("%c\n",*bufptr2);
}
return 1;
}
我们得到的回应是:
Hello GSM
Ready Found!
Written
然后它阻塞并保持空闲状态。
如果我们设法捕捉到“Ready”消息,这是否意味着“read”工作正常?如果上面印有“written”,那是不是意味着“write”工作正常?那么,为什么我们不能与模块通信呢?
谢谢。