gpt4 book ai didi

linux - 无法通过 ARM 板的串行连接写入 GSM 模块

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:42:26 25 4
gpt4 key购买 nike

在我们的毕业设计中,我们应该将 GSM 模块 (ADH8066) 连接到运行嵌入式 Linux (Qtopia) 的 ARM 板 (OK-6410) 并与之通信。

当我们第一次对模块进行操作时,它会发送一个“Ready”消息,然后我们就可以通过AT命令与它通信了。我们已经使用 super 终端成功地与它通信,并设法发送了一条简单的 SMS。

当我们尝试从 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”工作正常?那么,为什么我们不能与模块通信呢?

谢谢。

最佳答案

您能够收到“就绪”消息,因为调制解调器无需任何命令即可发送此消息。但是您开始发出您需要立即收到响应的 ATM 命令,因为调制解调器会在您发出命令后立即恢复。在这里您需要运行两个应用程序,一个是发出命令,第二个是接收响应。或者您可以使用定时器中断或读取串口响应。

关于linux - 无法通过 ARM 板的串行连接写入 GSM 模块,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11001405/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com