The module is doing strange things to the data sent !
Posted: Thu Oct 15, 2015 6:53 am
When i do this :
and get the ">" sign , i then type to send this :
what i see on the terminal is this : (my http command is not seeing after the ">" )
but check what happens if i do this with length of 18 :
(now i see part of the message after the ">" )
and for length 10 i get more letters from my command ! ( ?? )
What is going on here ?????
Code: Select all
AT+CIPSEND=0,20
OK
and get the ">" sign , i then type to send this :
Code: Select all
HTTP/1.1 200 OK\r\n
what i see on the terminal is this : (my http command is not seeing after the ">" )
Code: Select all
OK
>
busy s...
but check what happens if i do this with length of 18 :
Code: Select all
AT+CIPSEND=0,18
OK
> n
busy s...
Recv 18 bytes
SEND OK
(now i see part of the message after the ">" )
and for length 10 i get more letters from my command ! ( ?? )
Code: Select all
AT+CIPSEND=0,10
OK
> 00 OK\r\n
busy s...
Recv 10 bytes
SEND OK
What is going on here ?????