Skip to content

Commit

Permalink
Version 2.9.0-beta9
Browse files Browse the repository at this point in the history
Changes since 2.9.0-beta8

fix: refactor websocket receive to support multiple frame, large messages and optimize for lower memory use
fix: refactor HA discovery to support larger config files (8k instead of 2k) and use less memory

Firmware binary (CVE HW rev.2 and NON-CVE):
https://github.com/arjenhiemstra/ithowifi/raw/master/compiled_firmware_files/unified_hw2_noncve/nrgitho-v2.9.0-beta9.bin
  • Loading branch information
arjenhiemstra committed Dec 23, 2024
1 parent fc20d00 commit 1894a8c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
12 changes: 6 additions & 6 deletions compiled_firmware_files/firmware.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@
"2": {
"latest_fw": "2.8.0",
"link": "https://github.com/arjenhiemstra/ithowifi/raw/master/compiled_firmware_files/unified_hw2_noncve/nrgitho-v2.8.0.bin",
"latest_beta_fw": "2.9.0-beta8",
"link_beta": "https://github.com/arjenhiemstra/ithowifi/raw/master/compiled_firmware_files/unified_hw2_noncve/nrgitho-v2.9.0-beta8.bin",
"beta_release_notes": "https://github.com/arjenhiemstra/ithowifi/releases/tag/Version-2.9.0-beta8",
"latest_beta_fw": "2.9.0-beta9",
"link_beta": "https://github.com/arjenhiemstra/ithowifi/raw/master/compiled_firmware_files/unified_hw2_noncve/nrgitho-v2.9.0-beta9.bin",
"beta_release_notes": "https://github.com/arjenhiemstra/ithowifi/releases/tag/Version-2.9.0-beta9",
"release_notes": "https://github.com/arjenhiemstra/ithowifi/releases/tag/Version-2.8.0"
},
"NON-CVE 1": {
"latest_fw": "2.8.0",
"link": "https://github.com/arjenhiemstra/ithowifi/raw/master/compiled_firmware_files/unified_hw2_noncve/nrgitho-v2.8.0.bin",
"latest_beta_fw": "2.9.0-beta8",
"link_beta": "https://github.com/arjenhiemstra/ithowifi/raw/master/compiled_firmware_files/unified_hw2_noncve/nrgitho-v2.9.0-beta8.bin",
"beta_release_notes": "https://github.com/arjenhiemstra/ithowifi/releases/tag/Version-2.9.0-beta8",
"latest_beta_fw": "2.9.0-beta9",
"link_beta": "https://github.com/arjenhiemstra/ithowifi/raw/master/compiled_firmware_files/unified_hw2_noncve/nrgitho-v2.9.0-beta9.bin",
"beta_release_notes": "https://github.com/arjenhiemstra/ithowifi/releases/tag/Version-2.9.0-beta9",
"release_notes": "https://github.com/arjenhiemstra/ithowifi/releases/tag/Version-2.8.0"
}
}
Expand Down
Binary file not shown.
Binary file not shown.
4 changes: 3 additions & 1 deletion software/NRG_itho_wifi/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ default_envs =
[env]
; Global data for all [env:***]
build_flags =
-D VERSION=2.9.0-beta8
-D VERSION=2.9.0-beta9
;upload_port = /dev/cu.usbserial-1410 #optional, only needed if PlatformIO autodetect is not working
;monitor_port = /dev/cu.usbserial-1410 #optional, only needed if PlatformIO autodetect is not working
platform = platformio/espressif32 @ ~6.9.0
Expand Down Expand Up @@ -54,6 +54,8 @@ build_flags =
;-DESP32
-DMG_ARCH=MG_ARCH_ESP32
-DMAX_NUM_OF_REMOTES=12
-DCONFIG_ASYNC_TCP_STACK_SIZE=4096
-DWS_MAX_QUEUED_MESSAGES=64
-fno-strict-aliasing -fexceptions -fstack-protector -ffunction-sections -fdata-sections -fstrict-volatile-bitfields
-mlongcalls -nostdlib
-g0
Expand Down

0 comments on commit 1894a8c

Please sign in to comment.