Skip to content

Commit

Permalink
0.8.149
Browse files Browse the repository at this point in the history
* fixed send power limit #1757
  • Loading branch information
lumapu committed Oct 1, 2024
1 parent 4a32188 commit 995c97f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
3 changes: 3 additions & 0 deletions src/CHANGES.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/defines.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
10 changes: 6 additions & 4 deletions src/hm/Communication.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 995c97f

Please sign in to comment.