You've already forked Adafruit_MQTT_Library
mirror of
https://github.com/adafruit/Adafruit_MQTT_Library.git
synced 2025-07-08 14:01:58 +03:00
Uncommented code to handle subscription packets...
This commit is contained in:
@ -229,11 +229,11 @@ uint16_t Adafruit_MQTT::processPacketsUntil(uint8_t *buffer, uint8_t waitforpack
|
|||||||
if (packetType == waitforpackettype) {
|
if (packetType == waitforpackettype) {
|
||||||
return len;
|
return len;
|
||||||
} else {
|
} else {
|
||||||
// if (packetType == MQTT_CTRL_PUBLISH) {
|
if (packetType == MQTT_CTRL_PUBLISH) {
|
||||||
// handleSubscriptionPacket(len);
|
handleSubscriptionPacket(len);
|
||||||
// } else {
|
} else {
|
||||||
ERROR_PRINTLN(F("Dropped a packet"));
|
ERROR_PRINTLN(F("Dropped a packet"));
|
||||||
// }
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
|
Reference in New Issue
Block a user