【发布时间】:2016-07-22 09:43:20
【问题描述】:
我无法连续使用AT+CIPSEND 和 Arduino 上的 SeeedStudio SIM900 GPRS 模块。这是我的 AT 命令序列(使用 SSCOM3.2):
AT+CIPSTART="TCP","xx.xx.xx.xxx","80"
OK
CONNECT OK
AT+CIPSEND
> PUT /?data="datasequence"
(CTRL+Z)
SEND OK // at this point "datasequence" has reached the server fine
AT+CIPSEND
ERROR
CLOSED (eventual timeout)
我也尝试过AT+CIPQSEND=1,但又得到了ERROR,包括在AT+CIPSEND 中指定长度。我是否遗漏了任何 AT 命令,或者它根本不打算连续使用?我真的很想避免关闭和重新打开 TCP 连接。
另外,使用AT+HTTP 命令我的运气会更好吗?
【问题讨论】:
-
服务器端怎么样?