在我们的毕业设计项目中,我们应该将GSM模块(ADH8066)连接到运行嵌入式Linux(Qtopia)的ARM板(OK-6410)并与之通信。
当我们第一次操作模块时,它会发送一个" Ready"消息,然后我们可以通过AT命令与它通信。 我们使用超级终端成功地与之通信,并设法发送简单的短信。
当我们尝试从ARM板与它通信时,会出现问题。
我们设法收到" Ready"消息,但我们没有任何回应。
以下是我们迄今为止开发的代码:
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"消息,并不意味着"阅读"工作正常吗? 如果"写"印在上面,并不意味着"写"工作正常吗? 那么,为什么我们不能与模块进行通信呢?
感谢。
答案 0 :(得分:-3)
您能够收到“就绪”,因为调制解调器在没有任何命令的情况下发送此消息。但是你开始发出你需要立即接收响应的ATM命令,没有任何延迟,因为调制解调器会在你发出命令后立即恢复。 在这里,您需要运行两个应用程序,一个是问题命令,第二个是接收响应。或者您可以使用定时器中断或读取串口响应。