-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pio.ini - created [env] as common denominator - esp32dev, lolin_d32 and lolin_s2_mini: removed items defined in env index.js: Coord3D: save numbers without "" SysModModel: processJson: values: - added setValue<Coord3D> instead of jsonObject - this caused model.json corruption !!!!
- Loading branch information
Showing
6 changed files
with
894 additions
and
908 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
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 |
---|---|---|
|
@@ -50,21 +50,15 @@ build_flags = | |
lib_deps = | ||
https://github.com/netmindz/WLED-sync#v0.14.0.b16 | ||
|
||
[env:esp32dev] | ||
board = esp32dev ;https://github.com/platformio/platform-espressif32/blob/develop/boards/esp32dev.json | ||
; recommended to pin to a platform version, see https://github.com/platformio/platform-espressif32/releases | ||
platform = [email protected] ;using platformio/framework-arduinoespressif32 @ ~3.20014.0 / framework-arduinoespressif32 @ 3.20014.231204 (2.0.14) | ||
[env] | ||
framework = arduino | ||
upload_speed = 1500000 | ||
monitor_speed = 115200 | ||
monitor_filters = esp32_exception_decoder | ||
board_build.partitions = tools/WLED_ESP32_4MB_256KB_FS.csv ;; 1.8MB firmware, 256KB filesystem (esptool erase_flash needed when changing from "standard WLED" partitions) | ||
board_build.filesystem = littlefs | ||
board_build.f_flash = 80000000L ; use full 80MHz speed for flash (default = 40Mhz) | ||
board_build.flash_mode = dio ; (dio = dual i/o; more compatible than qio = quad i/o) | ||
; build_type = debug ;increases flash size! | ||
build_flags = | ||
-DCONFIG_IDF_TARGET_ESP32=1 | ||
-DCONFIG_ASYNC_TCP_USE_WDT=0 | ||
-DLFS_THREADSAFE ;; enables use of semaphores in LittleFS driver | ||
-DARDUINO_USB_CDC_ON_BOOT=0 ;; Make sure that the right HardwareSerial driver is picked in arduino-esp32 (needed on "classic ESP32") | ||
|
@@ -78,76 +72,66 @@ lib_deps = | |
${usermod_e131.lib_deps} | ||
; ${usermod_ha.lib_deps} | ||
${usermod_wledaudio.lib_deps} | ||
|
||
[env:esp32dev] | ||
board = esp32dev ;https://github.com/platformio/platform-espressif32/blob/develop/boards/esp32dev.json | ||
; recommended to pin to a platform version, see https://github.com/platformio/platform-espressif32/releases | ||
platform = [email protected] ;using platformio/framework-arduinoespressif32 @ ~3.20014.0 / framework-arduinoespressif32 @ 3.20014.231204 (2.0.14) | ||
upload_speed = 1500000 | ||
build_flags = ${env.build_flags} | ||
-DCONFIG_IDF_TARGET_ESP32=1 | ||
; RAM: [== ] 15.6% (used 51124 bytes from 327680 bytes) | ||
; Flash: [======= ] 68.1% (used 892033 bytes from 1310720 bytes) | ||
|
||
[env:lolin_d32] | ||
board = lolin_d32 ;https://github.com/platformio/platform-espressif32/blob/develop/boards/esp32dev.json | ||
board = lolin_d32 ;https://github.com/platformio/platform-espressif32/blob/develop/boards/lolin_d32.json (no differences with esp32dev) | ||
; recommended to pin to a platform version, see https://github.com/platformio/platform-espressif32/releases | ||
platform = [email protected] ;using platformio/framework-arduinoespressif32 @ ~3.20014.0 / framework-arduinoespressif32 @ 3.20014.231204 (2.0.14) | ||
framework = arduino | ||
monitor_speed = 115200 | ||
monitor_filters = esp32_exception_decoder | ||
; board_build.partitions = tools/WLED_ESP32_4MB_256KB_FS.csv ;; 1.8MB firmware, 256KB filesystem (esptool erase_flash needed when changing from "standard WLED" partitions) | ||
board_build.filesystem = littlefs | ||
; board_build.f_flash = 80000000L ; use full 80MHz speed for flash (default = 40Mhz) | ||
; board_build.flash_mode = dio ; (dio = dual i/o; more compatible than qio = quad i/o) | ||
; build_type = debug ;increases flash size! | ||
build_flags = | ||
; -DCONFIG_IDF_TARGET_ESP32=1 | ||
; -DCONFIG_ASYNC_TCP_USE_WDT=0 | ||
; -DLFS_THREADSAFE ;; enables use of semaphores in LittleFS driver | ||
; -DARDUINO_USB_CDC_ON_BOOT=0 ;; Make sure that the right HardwareSerial driver is picked in arduino-esp32 (needed on "classic ESP32") | ||
${appmod_leds.build_flags} | ||
${usermod_e131.build_flags} | ||
; ${usermod_ha.build_flags} | ||
${usermod_wledaudio.build_flags} | ||
lib_deps = | ||
${starmod.lib_deps} | ||
${appmod_leds.lib_deps} | ||
${usermod_e131.lib_deps} | ||
; ${usermod_ha.lib_deps} | ||
${usermod_wledaudio.lib_deps} | ||
build_flags = ${env.build_flags} | ||
-DCONFIG_IDF_TARGET_ESP32=1 | ||
; RAM: [== ] 15.6% (used 51124 bytes from 327680 bytes) | ||
; Flash: [======= ] 68.1% (used 892033 bytes from 1310720 bytes) | ||
|
||
[env:lolin_s2_mini] | ||
board = lolin_s2_mini ;https://github.com/platformio/platform-espressif32/blob/develop/boards/lolin_s2_mini.json | ||
;; platform = [email protected] ;; WLED default framework version | ||
platform = [email protected] ;; this one behaves better for debugging | ||
framework = arduino | ||
; framework = arduino | ||
upload_speed = 256000 | ||
monitor_speed = 115200 | ||
monitor_filters = esp32_exception_decoder | ||
board_build.partitions = tools/WLED_ESP32_4MB_256KB_FS.csv ;; 1.8MB firmware, 256KB filesystem (esptool erase_flash needed when changing from "standard WLED" partitions) | ||
board_build.filesystem = littlefs | ||
; build_type = debug ;increases flash size! | ||
build_unflags = | ||
; -DARDUINO_USB_CDC_ON_BOOT=1 ;; un-comment if you want to use a "real" serial-to-USB moddule | ||
build_flags = | ||
-DARDUINO_USB_CDC_ON_BOOT=1 ;; un-comment if you want to use a "real" serial-to-USB moddule | ||
build_flags = ${env.build_flags} | ||
-DCONFIG_IDF_TARGET_ESP32S2=1 | ||
-DCONFIG_ASYNC_TCP_USE_WDT=0 | ||
-DLFS_THREADSAFE ;; enables use of semaphores in LittleFS driver | ||
; -DLFS_THREADSAFE ;; enables use of semaphores in LittleFS driver | ||
-DARDUINO_USB_CDC_ON_BOOT=1 -DARDUINO_USB_DFU_ON_BOOT=1 -DARDUINO_USB_MSC_ON_BOOT=0 ;; for debugging over USB | ||
; -DARDUINO_USB_CDC_ON_BOOT=0 -DARDUINO_USB_DFU_ON_BOOT=1 -DARDUINO_USB_MSC_ON_BOOT=0 ;; with serial-to-USB moddule (use in case your board hangs without USB connection) | ||
-DARDUINO_USB_MODE=0 ;; Make sure that the right HardwareSerial driver is picked in arduino-esp32 (mandatory on -S2) | ||
; -D DEBUG=1 -D CORE_DEBUG_LEVEL=1 -D ARDUINOJSON_DEBUG=1 ;; for more debug output | ||
${appmod_leds.build_flags} | ||
${usermod_e131.build_flags} | ||
; ${usermod_ha.build_flags} | ||
${usermod_wledaudio.build_flags} | ||
lib_deps = | ||
${starmod.lib_deps} | ||
${appmod_leds.lib_deps} | ||
${usermod_e131.lib_deps} | ||
; ${usermod_ha.lib_deps} | ||
${usermod_wledaudio.lib_deps} | ||
; RAM: [== ] 24.5% (used 80240 bytes from 327680 bytes) | ||
; Flash: [========= ] 92.4% (used 1210894 bytes from 1310720 bytes) | ||
; after WLED_ESP32_4MB_256KB_FS: | ||
; RAM: [== ] 24.5% (used 80240 bytes from 327680 bytes) | ||
; Flash: [====== ] 63.7% (used 1210894 bytes from 1900544 bytes) | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
; Compiler warnings FastLed: | ||
; In file included from .pio/libdeps/esp32dev/FastLED/src/FastLED.h:75, | ||
; from src/App/AppLeds.h:11, | ||
|
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
Oops, something went wrong.