Hello.
We have RM500U-CNV module connected throught serial port to esp32. We need to make mqtt connection using SSL connection.
- The buffered TCP connection to the server is ok and the server is receiving the messages.
- When server send the message (SSL hello message) larger than 2048 bytes, it is truncated. For example if it sends 2401 bytes, only 2048 arrives.
Is there some limitation for incomming data size? how can we make the SSL connection with this modem?
The commands and server responses:
AT+QIOPEN=1,1,"TCP","our.server..com",8883,0,0
OK
+QIOPEN: 1,0
AT+QISEND=1,138
> .......
SEND OK
+QIURC: "recv",1
AT+QIRD=1,1500
+QIRD: 1500
AT+QIRD=1,99
+QIRD: 99
AT+QIRD=1,1029
+QIRD: 449
AT+QIRD=1,585
+QIRD: 0
As you can see, in SUM 2048 bytes arrived.
Thank you.
Jaroslav