Skip to content

Commit aaf5b2e

Browse files
committed
Merge branch '0.6.0-patch1'
2 parents 54da587 + fdd9d98 commit aaf5b2e

File tree

8 files changed

+13342
-13336
lines changed

8 files changed

+13342
-13336
lines changed
48 Bytes
Binary file not shown.
48 Bytes
Binary file not shown.
32 Bytes
Binary file not shown.
32 Bytes
Binary file not shown.

lib/framework/WWWData.h

Lines changed: 13335 additions & 13332 deletions
Large diffs are not rendered by default.

lib/framework/WiFiSettingsService.cpp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,10 @@ void WiFiSettingsService::loop()
275275

276276
// 🌙 only send analytics once (if enabled)
277277
if (_state.trackAnalytics && !_analyticsSent) {
278-
_analyticsSent = sendAnalytics();
278+
#if FT_ENABLED(FT_MOONLIGHT)
279+
if (psramFound())
280+
#endif
281+
_analyticsSent = sendAnalytics(); // 🌙 disabled for MoonLight without PSRAM atm
279282
}
280283
}
281284

platformio.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ extra_configs =
1515
factory_settings.ini
1616
features.ini
1717
firmware/*.ini ; 🌙 inspired by meshtastic, actual board definitions are in /firmware
18-
; default_envs = esp32-s3-devkitc-1, esp32-s3-devkitc-1-n16r8v ; exclude esp32dev as > 100% ATM
18+
; default_envs = esp32-d0, esp32-d0-16mb, esp32-c3-devkitm-1, esp32-c3-supermini
1919

2020
; 🌙 See /firmware folder for all the envs!!!
2121
; =======================================
@@ -56,7 +56,7 @@ build_flags =
5656
-D BUILD_TARGET=\"$PIOENV\"
5757
-D APP_NAME=\"MoonLight\" ; 🌙 Must only contain characters from [a-zA-Z0-9-_] as this is converted into a filename
5858
-D APP_VERSION=\"0.6.0\" ; semver compatible version string
59-
-D APP_DATE=\"2025111211\" ; 🌙
59+
-D APP_DATE=\"2025111416\" ; 🌙
6060

6161
-D PLATFORM_VERSION=\"pioarduino-55.03.32\" ; 🌙 make sure it matches with above plaftform
6262

src/MoonLight/Layers/PhysicalLayer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ void PhysicalLayer::setup() {
3737
if (psramFound())
3838
lights.maxChannels = MIN(ESP.getPsramSize() / 2, 61440 * 3); // fill halve with channels, max 120 pins * 512 LEDs, still addressable with uint16_t
3939
else
40-
lights.maxChannels = 2048 * 3; // esp32-d0: max 1024->2048 Leds ATM
40+
lights.maxChannels = 1024 * 3; // esp32-d0: max 1024->2048 Leds ATM
4141

4242
lights.channels = allocMB<uint8_t>(lights.maxChannels);
4343

0 commit comments

Comments
 (0)