forked from Aircoookie/WLED
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Configurable framerate (Aircoookie#2444)
Updated arduino core versions Better performance on esp32 core 3.x due to IRAM_ATTR Fixed analog busses init to full white/on
- Loading branch information
1 parent
736053e
commit 7546825
Showing
11 changed files
with
43 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -54,13 +54,14 @@ extra_configs = | |
arduino_core_2_6_3 = [email protected] | ||
arduino_core_2_7_4 = [email protected] | ||
arduino_core_3_0_0 = [email protected] | ||
arduino_core_3_0_2 = [email protected] | ||
|
||
# Development platforms | ||
arduino_core_develop = https://github.com/platformio/platform-espressif8266#develop | ||
arduino_core_git = https://github.com/platformio/platform-espressif8266#feature/stage | ||
|
||
# Platform to use for ESP8266 | ||
platform_wled_default = ${common.arduino_core_2_7_4} | ||
platform_wled_default = ${common.arduino_core_3_0_2} | ||
# We use 2.7.4.7 for all, includes PWM flicker fix and Wstring optimization | ||
platform_packages = tasmota/framework-arduinoespressif8266 @ 3.20704.7 | ||
platformio/toolchain-xtensa @ ~2.40802.200502 | ||
|
@@ -105,6 +106,7 @@ build_flags = | |
-DBEARSSL_SSL_BASIC | ||
-D CORE_DEBUG_LEVEL=0 | ||
-D NDEBUG | ||
-Dregister= | ||
#build_flags for the IRremoteESP8266 library (enabled decoders have to appear here) | ||
-D _IR_ENABLE_DEFAULT_=false | ||
-D DECODE_HASH=true | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters