Merge branch 'master' into tft-gui-work

This commit is contained in:
Manuel 2024-05-03 13:55:44 +02:00 committed by GitHub
commit c74eec0b89
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 7 additions and 1 deletions

View File

@ -784,6 +784,12 @@ void setup()
// Now that the mesh service is created, create any modules
setupModules();
#ifdef LED_PIN
// Turn LED off after boot, if heartbeat by config
if (config.device.led_heartbeat_disabled)
digitalWrite(LED_PIN, LOW ^ LED_INVERTED);
#endif
// Do this after service.init (because that clears error_code)
#ifdef HAS_PMU
if (!pmu_found)

View File

@ -1,4 +1,4 @@
[VERSION]
major = 2
minor = 3
build = 8
build = 9