Skip to content

Commit

Permalink
0.8.150
Browse files Browse the repository at this point in the history
* fix nullptr exception
* modified MqTT to not publish while not connected
* removed patch for Webserver library - obsolete
  • Loading branch information
lumapu committed Oct 2, 2024
1 parent eb8924a commit 9efb3a9
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 30 deletions.
26 changes: 0 additions & 26 deletions patches/AsyncWeb_Prometheus.patch

This file was deleted.

2 changes: 0 additions & 2 deletions scripts/applyPatches.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@ def applyPatch(libName, patchFile):


# list of patches to apply (relative to /src)
applyPatch("ESPAsyncWebServer", "../patches/AsyncWeb_Prometheus.patch")

if (env['PIOENV'][:5] == "esp32") or (env['PIOENV'][:13] == "opendtufusion"):
applyPatch("GxEPD2", "../patches/GxEPD2_HAL.patch")

Expand Down
5 changes: 5 additions & 0 deletions src/CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Development Changes

## 0.8.150 - 2024-10-02
* fix nullptr exception
* modified MqTT to not publish while not connected
* removed patch for Webserver library - obsolete

## 0.8.149 - 2024-10-01
* fixed send power limit #1757
* merged: Fix minor typos #1758
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 149
#define VERSION_PATCH 150
//-------------------------------------
typedef struct {
uint8_t ch;
Expand Down
2 changes: 1 addition & 1 deletion src/hm/Communication.h
Original file line number Diff line number Diff line change
Expand Up @@ -208,11 +208,11 @@ class Communication : public CommQueue<> {
mHeu.setIvRetriesGood(q->iv,p->millis < LIMIT_VERYFAST_IV);
}
} else if (p->packet[0] == (TX_REQ_DEVCONTROL + ALL_FRAMES)) { // response from dev control command
q->iv->radio->mBufCtrl.pop();
if(parseDevCtrl(p, q))
closeRequest(q, true);
else
closeRequest(q, false);
q->iv->radio->mBufCtrl.pop();
return; // don't wait for empty buffer
} else if(IV_MI == q->iv->ivGen) {
parseMiFrame(p, q);
Expand Down
2 changes: 2 additions & 0 deletions src/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ lib_deps =
build_flags =
-std=c++17
-std=gnu++17
-DEMC_ALLOW_NOT_CONNECTED_PUBLISH
build_unflags =
-std=gnu++11

Expand All @@ -51,6 +52,7 @@ lib_deps =
https://github.com/me-no-dev/ESPAsyncUDP
build_flags = ${env.build_flags}
-DEMC_MIN_FREE_MEMORY=4096

-D CONFIG_ASYNC_TCP_STACK_SIZE=4096
;-Wl,-Map,output.map
monitor_filters =
Expand Down

0 comments on commit 9efb3a9

Please sign in to comment.