* fixed send power limit #1757
@ -1,5 +1,8 @@
# Development Changes
## 0.8.149 - 2024-10-01
## 0.8.148 - 2024-09-30
* fix redirect after login
@ -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;
@ -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;
}
mIsRetransmit = false;
mCompleteRetry = false;
mState = States::IDLE;