-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MQTT message size too short for full binary update #3
Comments
The problem is within the adafruit library: It defines the maximum message length : Unfortunately it is a define and not a variable. Thus, as far as I know we would have to fork the library in order to change the value. |
I tried increasing this value, but the limit still is present. Maybe another hard-coded max value somewhere? |
Someone else also has that problem. Should be fixed however... |
I think in order to fix this problem, we should switch to another implementation of MQTT on our microcontrollers. I would say we should try the clients in order to see which one fits best. right now, i would prefer the one from eclipse or espressif |
Might be an opportunity to change the development environment from Arduino to Espressif. |
Right now the MQTT doesn't like to send/receive more than 103 bytes. Longer messages get ignores.
The text was updated successfully, but these errors were encountered: