trybuildfix mqtt system

This commit is contained in:
Thomas Göttgens
2023-01-03 22:09:35 +01:00
parent 42b24d4510
commit 5867038abf
2 changed files with 3 additions and 9 deletions

View File

@@ -13,8 +13,6 @@
#include <EthernetClient.h>
#endif
#define MAX_MQTT_QUEUE 32
/**
* Our wrapper/singleton for sending/receiving MQTT "udp" packets. This object isolates the MQTT protocol implementation from
* the two components that use it: MQTTPlugin and MQTTSimInterface.
@@ -55,10 +53,6 @@ class MQTT : private concurrency::OSThread
bool connected();
protected:
PointerQueue<ServiceEnvelope> mqttQueue;
int reconnectCount = 0;
virtual int32_t runOnce() override;
private: