Kristof Gaukema

Results 6 comments of Kristof Gaukema

Hi, I also had a lot of issues with this but when I plotted the free heap, it was getting empty over 10min time or so. So I figured the...

https://github.com/marvinroger/async-mqtt-client/blob/bf341978ad506a78a3d56c560ba34c1d08bb4794/src/AsyncMqttClient.hpp#L9

one broker I work with has it, so all other libraries never complaint and I never saw any errors in the other libraries But when working with your lib, the...

maybe like this? ``` switch (p->_packet.fixedHeader.packetType & 0xF0) { case PacketType.CONNACK: case PacketType.PUBACK: case PacketType.PUBREC: case PacketType.PUBREL: case PacketType.PUBCOMP: case PacketType.UNSUBACK: p->_parse = _remainingLengthFixed; break; case PacketType.SUBACK: p->_parse = _remainingLengthVariable;...

Ok, no rush, enjoy your holidays!

Look at the ability of ESP32 with 2 cores. Standard program runs on core 1. But you are able to run specific tasks on core 0. [https://randomnerdtutorials.com/esp32-dual-core-arduino-ide/](https://randomnerdtutorials.com/esp32-dual-core-arduino-ide/) Did it and...