Hi,
I want to receive files over mqtt. These files are larger than what I can store in RAM. Could this be possible with coreMQTT? It seems to me that the maximum payload size is now limited to the size of the networkbuffer provided with MQTT_init, which would make this impossible.
I have done this before with another MQTT library. This library invoked the callback with each incoming payload chunk, so I could write the data to SD while it was coming in.
I would be nice if coreMQTT had something similar.
Are you talking about this buffer? If yes, it is supplied by the application in MQTT_Init. You should be able to supply a larger buffer suitable for your use case.
Yes, but I cannot make that buffer so large that I can receive the entire payload. I can at best make this buffer 100kb or so, but I want to receive 3Mb.
well, if you do not have enough RAM to receive your data in a single chunk, you have to chop it up, there is no magic that can create memory out of nothing?..
The size of the payload that can be received by coreMQTT depends on the network buffer size. Currently, the function you mentioned is not supported. We will bring back this requirement for discussion to see if it’s possible for us to support this function in the future.