Browse Source

0.8.39

* merge Prometheus metrics fix #1310
* merge MI grid profile request #1306
pull/1315/head
lumapu 1 year ago
parent
commit
54b9e2f3ea
  1. 5
      src/hm/Communication.h

5
src/hm/Communication.h

@ -351,10 +351,9 @@ class Communication : public CommQueue<> {
// small MI or MI 1500 data responses to 0x09, 0x11, 0x36, 0x37, 0x38 and 0x39
//mPayload[iv->id].txId = p->packet[0];
miDataDecode(p, q);
} else if (p->packet[0] == (0x0f + ALL_FRAMES))
} else if (p->packet[0] == (0x0f + ALL_FRAMES)) {
miHwDecode(p, q);
else if (p->packet[0] == ( 0x10 + ALL_FRAMES)) {
} else if (p->packet[0] == ( 0x10 + ALL_FRAMES)) {
// MI response from get Grid Profile information request
miGPFDecode(p, q);
}

Loading…
Cancel
Save