vshymanskyy / TinyGSM

A small Arduino library for GSM modules, that just works
GNU Lesser General Public License v3.0
1.91k stars 708 forks source link

Fix SIM7600 error on send data of > 1400 bytes #746

Open lfdominguez opened 10 months ago

lfdominguez commented 10 months ago

When you try to send data > Ethernet Frame default MTU (1500) the SIM7600 responds with CIPERROR 3. This method is used too by the HTTPClient interface, so you can't send POST or other HTTP queries that exceed that size. This PR fix that trying to split the full data array into chunks.

lfdominguez commented 10 months ago

You can see on the SIM7600 AT commands manual: image That the limit is 1500.