Closed embhorn closed 3 years ago
Created MQTT_CODE_PUB_CONTINUE to be used when publishing a payload larger than the MQTT buffer size (publish in chunks).
MQTT_CODE_PUB_CONTINUE
do { rc = MqttClient_Publish(client, publish); }while ((rc != MQTT_CODE_PUB_CONTINUE) && (rc != MQTT_CODE_CONTINUE));
This fixes an issue from ZD12608
This fixes #192
Weird... I must have undone that return code fix when I changed something else in there.
Created
MQTT_CODE_PUB_CONTINUE
to be used when publishing a payload larger than the MQTT buffer size (publish in chunks).This fixes an issue from ZD12608
This fixes #192