Modified MQTT for Mbed OS.
Dependents: mbed-os-mqtt door_lock co657_IoT nucleo-f429zi-mbed-os-mqtt
Fork of MQTT by
Revision 51:ac90fd2dd859, committed 2016-11-18
- Comitter:
- azazeal88
- Date:
- Fri Nov 18 13:29:50 2016 +0000
- Parent:
- 50:2133433118ef
- Commit message:
- Buffer at 4096 was causing issues. Have reverted, but will need to look closer at allocation
Changed in this revision
MQTTClient.h | Show annotated file Show diff for this revision Revisions of this file |
diff -r 2133433118ef -r ac90fd2dd859 MQTTClient.h --- a/MQTTClient.h Fri Nov 18 10:16:48 2016 +0000 +++ b/MQTTClient.h Fri Nov 18 13:29:50 2016 +0000 @@ -92,7 +92,7 @@ * @param Network a network class which supports send, receive * @param Timer a timer class with the methods: */ -template<class Network, class Timer, int MAX_MQTT_PACKET_SIZE = 4096, int MAX_MESSAGE_HANDLERS = 5> +template<class Network, class Timer, int MAX_MQTT_PACKET_SIZE = 200, int MAX_MESSAGE_HANDLERS = 5> class Client {