Browse Source

0.8.149

* fixed send power limit #1757
pull/1759/head
lumapu 4 months ago
parent
commit
995c97f824
  1. 3
      src/CHANGES.md
  2. 2
      src/defines.h
  3. 10
      src/hm/Communication.h

3
src/CHANGES.md

@ -1,5 +1,8 @@
# Development Changes
## 0.8.149 - 2024-10-01
* fixed send power limit #1757
## 0.8.148 - 2024-09-30
* fixed send power limit #1757
* fix redirect after login

2
src/defines.h

@ -13,7 +13,7 @@
//-------------------------------------
#define VERSION_MAJOR 0
#define VERSION_MINOR 8
#define VERSION_PATCH 148
#define VERSION_PATCH 149
//-------------------------------------
typedef struct {
uint8_t ch;

10
src/hm/Communication.h

@ -648,11 +648,13 @@ class Communication : public CommQueue<> {
keep = !crcPass;
if(keep)
cmdReset(q);
cmdReset(q); // q will be zero'ed after that command
else {
q->iv->mGotFragment = false;
q->iv->mGotLastMsg = false;
q->iv->miMultiParts = 0;
}
q->iv->mGotFragment = false;
q->iv->mGotLastMsg = false;
q->iv->miMultiParts = 0;
mIsRetransmit = false;
mCompleteRetry = false;
mState = States::IDLE;

Loading…
Cancel
Save