From 4c7ed19a6c33a56ebe1b1156ca48e6c3d5a2a5fb Mon Sep 17 00:00:00 2001 From: Raphael Date: Tue, 30 Jan 2024 09:37:55 +0100 Subject: [PATCH 01/12] Remove duplicate platform configurations --- platformio.ini | 70 -------------------------------------------------- 1 file changed, 70 deletions(-) diff --git a/platformio.ini b/platformio.ini index f7b9528..24b3116 100644 --- a/platformio.ini +++ b/platformio.ini @@ -61,69 +61,6 @@ extra_scripts = platformio_script.py ;platform_version_esp32 = espressif32@1.11.1 ; using Arduino core 1.0.4 ;platform_version_esp32 = espressif32 -[env:esp32dev] -;ARDUINO_ESP32_DEV -monitor_speed = 115200 -; monitor_port = /dev/cu.SLAB_USBtoUART -lang = fr -;platform = espressif32 -platform = espressif32@4.1.0 ;upgrade espressif? 5.2.0 -;platform = espressif32@5.2.0 -;platform = https://github.com/Jason2866/platform-espressif32 -;platform = espressif32@1.11.1 -;platform = ${common.platform_version_esp32} -board = esp32dev -framework = arduino -build_flags = ${common.build_flags_esp32_release} '-DINTL_FR' '-DKIT_C' ;'-DCORE_DEBUG_LEVEL=5' -lib_deps = - ${common.lib_deps_esp32} - mcci-catena/MCCI LoRaWAN LMIC library@^4.1.1 - ThingPulse/ESP8266 and ESP32 OLED driver for SSD1306 displays @ ^4.2.1 -extra_scripts = ${common.extra_scripts} - - -[env:esp32dev_fr] -;ARDUINO_ESP32_DEV -monitor_speed = 115200 -; monitor_port = /dev/cu.SLAB_USBtoUART -lang = fr -;platform = espressif32 -platform = espressif32@4.1.0 ;upgrade espressif? 5.2.0 -;platform = espressif32@5.2.0 -;platform = https://github.com/Jason2866/platform-espressif32 -;platform = espressif32@1.11.1 -;platform = ${common.platform_version_esp32} -board = esp32dev -framework = arduino -build_flags = ${common.build_flags_esp32_release} '-DINTL_FR' '-DKIT_C' ;'-DCORE_DEBUG_LEVEL=5' -lib_deps = - ${common.lib_deps_esp32} - mcci-catena/MCCI LoRaWAN LMIC library@^4.1.1 - ThingPulse/ESP8266 and ESP32 OLED driver for SSD1306 displays @ ^4.2.1 -extra_scripts = ${common.extra_scripts} - - -[env:esp32dev_en] -;ARDUINO_ESP32_DEV -monitor_speed = 115200 -; monitor_port = /dev/cu.SLAB_USBtoUART -lang = en -;platform = espressif32 -platform = espressif32@4.1.0 ;upgrade espressif? 5.2.0 -;platform = espressif32@5.2.0 -;platform = https://github.com/Jason2866/platform-espressif32 -;platform = espressif32@1.11.1 -;platform = ${common.platform_version_esp32} -board = esp32dev -framework = arduino -build_flags = ${common.build_flags_esp32_release} '-DINTL_EN' '-DKIT_C' ;'-DCORE_DEBUG_LEVEL=5' -lib_deps = - ${common.lib_deps_esp32} - mcci-catena/MCCI LoRaWAN LMIC library@^4.1.1 - ThingPulse/ESP8266 and ESP32 OLED driver for SSD1306 displays @ ^4.2.1 -extra_scripts = ${common.extra_scripts} - - [env:esp32doit-devkit-v1] ;ARDUINO_ESP32_DEV monitor_speed = 115200 @@ -138,10 +75,3 @@ lib_deps = mcci-catena/MCCI LoRaWAN LMIC library@^4.1.1 ThingPulse/ESP8266 and ESP32 OLED driver for SSD1306 displays @ ^4.2.1 extra_scripts = ${common.extra_scripts} - -; RAM: [== ] 17.0% (used 55864 bytes from 327680 bytes) -; Flash: [========= ] 86.1% (used 1129174 bytes from 1310720 bytes) - -;AJOUTER board_build.partitions = min_spiffs.csv ??? -; RAM: [== ] 17.0% (used 55864 bytes from 327680 bytes) -; Flash: [====== ] 57.4% (used 1129174 bytes from 1966080 bytes) From edfdaefa4e5fe282303f44c69fc5f887d966051e Mon Sep 17 00:00:00 2001 From: Raphael Date: Tue, 30 Jan 2024 09:38:41 +0100 Subject: [PATCH 02/12] Add platform debug configuration --- .gitignore | 2 +- platformio.ini | 17 +++++++++++++++++ 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 4a8da96..5cf17cd 100644 --- a/.gitignore +++ b/.gitignore @@ -9,4 +9,4 @@ builds/ ext_def.h logos-custom.h configuration.h - +logs diff --git a/platformio.ini b/platformio.ini index 24b3116..fac9427 100644 --- a/platformio.ini +++ b/platformio.ini @@ -75,3 +75,20 @@ lib_deps = mcci-catena/MCCI LoRaWAN LMIC library@^4.1.1 ThingPulse/ESP8266 and ESP32 OLED driver for SSD1306 displays @ ^4.2.1 extra_scripts = ${common.extra_scripts} + +[env:esp32doit-devkit-v1-debug] +;ARDUINO_ESP32_DEV +monitor_speed = 115200 +build_type = debug +monitor_filters = default, log2file, esp32_exception_decoder +;board_build.partitions = min_spiffs.csv +lang = fr +platform = espressif32@4.1.0 ;upgrade espressif? 5.2.0 +board = esp32doit-devkit-v1 +framework = arduino +build_flags = ${common.build_flags_esp32_release} '-DINTL_FR' '-DKIT_V1' +lib_deps = + ${common.lib_deps_esp32} + mcci-catena/MCCI LoRaWAN LMIC library@^4.1.1 + ThingPulse/ESP8266 and ESP32 OLED driver for SSD1306 displays @ ^4.2.1 +extra_scripts = ${common.extra_scripts} From 2a6fbbc09f0cb3a194338cc28dc40ea38a627f59 Mon Sep 17 00:00:00 2001 From: Raphael Date: Tue, 30 Jan 2024 10:01:54 +0100 Subject: [PATCH 03/12] Auto-format `platformio.ini` Keep useful comments. --- platformio.ini | 119 ++++++++++++++++++++++++------------------------- 1 file changed, 58 insertions(+), 61 deletions(-) diff --git a/platformio.ini b/platformio.ini index fac9427..9504ce0 100644 --- a/platformio.ini +++ b/platformio.ini @@ -1,94 +1,91 @@ +; PlatformIO Project Configuration File +; +; Build options: build flags, source filter +; Upload options: custom upload port, speed and extra flags +; Library options: dependencies, extra library storages +; Advanced options: extra scripting +; +; Please visit documentation for the other options and examples +; https://docs.platformio.org/page/projectconf.html + [platformio] src_dir = . [common] monitor_speed = 115200 -build_flags = - -DVTABLES_IN_FLASH - -D PIO_FRAMEWORK_ARDUINO_LWIP2_HIGHER_BANDWIDTH - -D HTTPCLIENT_1_1_COMPATIBLE=0 - ;-D NO_GLOBAL_SERIAL=0 - -DNDEBUG -DFP_IN_IROM -frandom-seed=b61f78373 - ; -D ARDUINO_LMIC_PROJECT_CONFIG_H_SUPPRESS - ; -D CFG_eu868=1 - ; -D CFG_sx1276_radio=1 - ; -D LMIC_LORAWAN_SPEC_VERSION=LMIC_LORAWAN_SPEC_VERSION_1_0_3 - ; -D MONITOR_SPEED=115200 - ; -D LMIC_PRINTF_TO=Serial - -build_flags_esp32 = - -DPIO_FRAMEWORK_ARDUINO_LWIP2_LOW_MEMORY - -DVTABLES_IN_FLASH -DBEARSSL_SSL_BASIC - -D ARDUINO_LMIC_PROJECT_CONFIG_H_SUPPRESS - -D CFG_eu868=1 - -D CFG_sx1276_radio=1 - -D LMIC_LORAWAN_SPEC_VERSION=LMIC_LORAWAN_SPEC_VERSION_1_0_3 - -D hal_init=LMICHAL_init - -D MONITOR_SPEED=115200 - -D LMIC_PRINTF_TO=Serial - - +build_flags = + -DVTABLES_IN_FLASH + -D PIO_FRAMEWORK_ARDUINO_LWIP2_HIGHER_BANDWIDTH + -D HTTPCLIENT_1_1_COMPATIBLE=0 + -DNDEBUG -DFP_IN_IROM -frandom-seed=b61f78373 +build_flags_esp32 = + -DPIO_FRAMEWORK_ARDUINO_LWIP2_LOW_MEMORY + -DVTABLES_IN_FLASH -DBEARSSL_SSL_BASIC + -D ARDUINO_LMIC_PROJECT_CONFIG_H_SUPPRESS + -D CFG_eu868=1 + -D CFG_sx1276_radio=1 + -D LMIC_LORAWAN_SPEC_VERSION=LMIC_LORAWAN_SPEC_VERSION_1_0_3 + -D hal_init=LMICHAL_init + -D MONITOR_SPEED=115200 + -D LMIC_PRINTF_TO=Serial build_flags_esp32_release = ${common.build_flags_esp32} -DNDEBUG build_flags_esp32_debug = ${common.build_flags_esp32} -g -Og -fno-inline -DUSING_JTAG_DEBUGGER_PINS=1 -DDEBUG_ESP_PORT=Serial - board_build.ldscript = eagle.flash.4m3m.ld board_build.filesystem = spiffs board_build.f_cpu = 160000000L - -lib_deps_external = - bblanchon/ArduinoJson@6.18.3 - 2dom/PxMatrix LED MATRIX library@^1.8.2 - adafruit/Adafruit GFX Library@^1.10.12 +lib_deps_external = + bblanchon/ArduinoJson@6.18.3 + 2dom/PxMatrix LED MATRIX library@^1.8.2 + adafruit/Adafruit GFX Library@^1.10.12 adafruit/Adafruit BusIO@^1.9.8 - https://github.com/IntarBV/MHZ16_uart + https://github.com/IntarBV/MHZ16_uart https://github.com/WifWaf/MH-Z19.git - maarten-pennings/CCS811 @ ^12.0.0 - -lib_deps_esp32_platform = - Wire - WiFi - DNSServer - WiFiClientSecure - HTTPClient - FS - SPIFFS - WebServer - Update - ESPmDNS - + maarten-pennings/CCS811 @ ^12.0.0 +lib_deps_esp32_platform = + Wire + WiFi + DNSServer + WiFiClientSecure + HTTPClient + FS + SPIFFS + WebServer + Update + ESPmDNS lib_deps_esp32 = ${common.lib_deps_esp32_platform} ${common.lib_deps_external} extra_scripts = platformio_script.py ;platform_version_esp32 = espressif32@1.11.1 ; using Arduino core 1.0.4 ;platform_version_esp32 = espressif32 [env:esp32doit-devkit-v1] -;ARDUINO_ESP32_DEV monitor_speed = 115200 -;board_build.partitions = min_spiffs.csv +platform = espressif32@4.1.0 ;upgrade espressif? 5.2.0 lang = fr -platform = espressif32@4.1.0 ;upgrade espressif? 5.2.0 board = esp32doit-devkit-v1 framework = arduino -build_flags = ${common.build_flags_esp32_release} '-DINTL_FR' '-DKIT_V1' +build_flags = ${common.build_flags_esp32_release} '-DINTL_FR' '-DKIT_V1' lib_deps = - ${common.lib_deps_esp32} - mcci-catena/MCCI LoRaWAN LMIC library@^4.1.1 - ThingPulse/ESP8266 and ESP32 OLED driver for SSD1306 displays @ ^4.2.1 + ${common.lib_deps_esp32} + mcci-catena/MCCI LoRaWAN LMIC library@^4.1.1 + ThingPulse/ESP8266 and ESP32 OLED driver for SSD1306 displays @ ^4.2.1 extra_scripts = ${common.extra_scripts} +;board_build.partitions = min_spiffs.csv [env:esp32doit-devkit-v1-debug] -;ARDUINO_ESP32_DEV monitor_speed = 115200 build_type = debug -monitor_filters = default, log2file, esp32_exception_decoder -;board_build.partitions = min_spiffs.csv +monitor_filters = + default + log2file + esp32_exception_decoder +platform = espressif32@4.1.0 ;upgrade espressif? 5.2.0 lang = fr -platform = espressif32@4.1.0 ;upgrade espressif? 5.2.0 board = esp32doit-devkit-v1 framework = arduino -build_flags = ${common.build_flags_esp32_release} '-DINTL_FR' '-DKIT_V1' +build_flags = ${common.build_flags_esp32_release} '-DINTL_FR' '-DKIT_V1' lib_deps = - ${common.lib_deps_esp32} - mcci-catena/MCCI LoRaWAN LMIC library@^4.1.1 - ThingPulse/ESP8266 and ESP32 OLED driver for SSD1306 displays @ ^4.2.1 + ${common.lib_deps_esp32} + mcci-catena/MCCI LoRaWAN LMIC library@^4.1.1 + ThingPulse/ESP8266 and ESP32 OLED driver for SSD1306 displays @ ^4.2.1 extra_scripts = ${common.extra_scripts} +;board_build.partitions = min_spiffs.csv From 9829a17af5169a6d83f0b6bfbb255fdcdd647bda Mon Sep 17 00:00:00 2001 From: Raphael Date: Tue, 30 Jan 2024 10:25:13 +0100 Subject: [PATCH 04/12] Add name & description --- platformio.ini | 2 ++ 1 file changed, 2 insertions(+) diff --git a/platformio.ini b/platformio.ini index 9504ce0..9da23b4 100644 --- a/platformio.ini +++ b/platformio.ini @@ -10,6 +10,8 @@ [platformio] src_dir = . +description = Software for the DOIT ESP32 DEVKIT V1 running inside the air quality sensor ModuleAir. +name = ModuleAir_V2.1 [common] monitor_speed = 115200 From 9d011b97c1ee34c661ab5ddf7be872422b3162d2 Mon Sep 17 00:00:00 2001 From: Raphael Date: Tue, 30 Jan 2024 10:12:23 +0100 Subject: [PATCH 05/12] Add default --- platformio.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/platformio.ini b/platformio.ini index 9da23b4..7b12447 100644 --- a/platformio.ini +++ b/platformio.ini @@ -12,6 +12,7 @@ src_dir = . description = Software for the DOIT ESP32 DEVKIT V1 running inside the air quality sensor ModuleAir. name = ModuleAir_V2.1 +default_envs = esp32doit-devkit-v1-debug [common] monitor_speed = 115200 From 120fa0f6c6ff514e875f5fa5f759b12acc5c4266 Mon Sep 17 00:00:00 2001 From: Raphael Date: Mon, 19 Feb 2024 21:51:12 +0100 Subject: [PATCH 06/12] Fix `platformio.ini` for ModuleAir V2.1 --- platformio.ini | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/platformio.ini b/platformio.ini index 7b12447..94741c7 100644 --- a/platformio.ini +++ b/platformio.ini @@ -60,21 +60,20 @@ extra_scripts = platformio_script.py ;platform_version_esp32 = espressif32@1.11.1 ; using Arduino core 1.0.4 ;platform_version_esp32 = espressif32 -[env:esp32doit-devkit-v1] +[env:esp32dev-fr] monitor_speed = 115200 platform = espressif32@4.1.0 ;upgrade espressif? 5.2.0 lang = fr -board = esp32doit-devkit-v1 +board = esp32dev framework = arduino -build_flags = ${common.build_flags_esp32_release} '-DINTL_FR' '-DKIT_V1' +build_flags = ${common.build_flags_esp32_release} '-DINTL_FR' '-DKIT_C' lib_deps = ${common.lib_deps_esp32} mcci-catena/MCCI LoRaWAN LMIC library@^4.1.1 ThingPulse/ESP8266 and ESP32 OLED driver for SSD1306 displays @ ^4.2.1 extra_scripts = ${common.extra_scripts} -;board_build.partitions = min_spiffs.csv -[env:esp32doit-devkit-v1-debug] +[env:esp32dev-fr-debug] monitor_speed = 115200 build_type = debug monitor_filters = @@ -83,12 +82,11 @@ monitor_filters = esp32_exception_decoder platform = espressif32@4.1.0 ;upgrade espressif? 5.2.0 lang = fr -board = esp32doit-devkit-v1 +board = esp32dev framework = arduino -build_flags = ${common.build_flags_esp32_release} '-DINTL_FR' '-DKIT_V1' +build_flags = ${common.build_flags_esp32_release} '-DINTL_FR' '-DKIT_C' lib_deps = ${common.lib_deps_esp32} mcci-catena/MCCI LoRaWAN LMIC library@^4.1.1 ThingPulse/ESP8266 and ESP32 OLED driver for SSD1306 displays @ ^4.2.1 extra_scripts = ${common.extra_scripts} -;board_build.partitions = min_spiffs.csv From fe9ec32e2a6def93d4d4e77340ca24720952deb4 Mon Sep 17 00:00:00 2001 From: Raphael Date: Mon, 19 Feb 2024 21:59:05 +0100 Subject: [PATCH 07/12] Simplify `platformio.ini` --- platformio.ini | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/platformio.ini b/platformio.ini index 94741c7..7db6432 100644 --- a/platformio.ini +++ b/platformio.ini @@ -12,7 +12,7 @@ src_dir = . description = Software for the DOIT ESP32 DEVKIT V1 running inside the air quality sensor ModuleAir. name = ModuleAir_V2.1 -default_envs = esp32doit-devkit-v1-debug +default_envs = esp32dev-fr-debug [common] monitor_speed = 115200 @@ -33,9 +33,11 @@ build_flags_esp32 = -D LMIC_PRINTF_TO=Serial build_flags_esp32_release = ${common.build_flags_esp32} -DNDEBUG build_flags_esp32_debug = ${common.build_flags_esp32} -g -Og -fno-inline -DUSING_JTAG_DEBUGGER_PINS=1 -DDEBUG_ESP_PORT=Serial + board_build.ldscript = eagle.flash.4m3m.ld board_build.filesystem = spiffs board_build.f_cpu = 160000000L + lib_deps_external = bblanchon/ArduinoJson@6.18.3 2dom/PxMatrix LED MATRIX library@^1.8.2 @@ -55,10 +57,13 @@ lib_deps_esp32_platform = WebServer Update ESPmDNS -lib_deps_esp32 = ${common.lib_deps_esp32_platform} ${common.lib_deps_external} +lib_deps_esp32 = + ${common.lib_deps_esp32_platform} + ${common.lib_deps_external} + mcci-catena/MCCI LoRaWAN LMIC library@^4.1.1 + ThingPulse/ESP8266 and ESP32 OLED driver for SSD1306 displays @ ^4.2.1 + extra_scripts = platformio_script.py -;platform_version_esp32 = espressif32@1.11.1 ; using Arduino core 1.0.4 -;platform_version_esp32 = espressif32 [env:esp32dev-fr] monitor_speed = 115200 @@ -67,10 +72,7 @@ lang = fr board = esp32dev framework = arduino build_flags = ${common.build_flags_esp32_release} '-DINTL_FR' '-DKIT_C' -lib_deps = - ${common.lib_deps_esp32} - mcci-catena/MCCI LoRaWAN LMIC library@^4.1.1 - ThingPulse/ESP8266 and ESP32 OLED driver for SSD1306 displays @ ^4.2.1 +lib_deps = ${common.lib_deps_esp32} extra_scripts = ${common.extra_scripts} [env:esp32dev-fr-debug] @@ -85,8 +87,5 @@ lang = fr board = esp32dev framework = arduino build_flags = ${common.build_flags_esp32_release} '-DINTL_FR' '-DKIT_C' -lib_deps = - ${common.lib_deps_esp32} - mcci-catena/MCCI LoRaWAN LMIC library@^4.1.1 - ThingPulse/ESP8266 and ESP32 OLED driver for SSD1306 displays @ ^4.2.1 +lib_deps = ${common.lib_deps_esp32} extra_scripts = ${common.extra_scripts} From 3ae9bfb6e12b4220b2cf4d674e1fa78c2176c6bb Mon Sep 17 00:00:00 2001 From: Raphael Date: Tue, 20 Feb 2024 09:40:36 +0100 Subject: [PATCH 08/12] Re-add EN env --- platformio.ini | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/platformio.ini b/platformio.ini index 7db6432..e12fb30 100644 --- a/platformio.ini +++ b/platformio.ini @@ -89,3 +89,18 @@ framework = arduino build_flags = ${common.build_flags_esp32_release} '-DINTL_FR' '-DKIT_C' lib_deps = ${common.lib_deps_esp32} extra_scripts = ${common.extra_scripts} + +[env:esp32dev-en-debug] +monitor_speed = 115200 +build_type = debug +monitor_filters = + default + log2file + esp32_exception_decoder +platform = espressif32@4.1.0 ;upgrade espressif? 5.2.0 +lang = fr +board = esp32dev +framework = arduino +build_flags = ${common.build_flags_esp32_release} '-DINTL_EN' '-DKIT_C' +lib_deps = ${common.lib_deps_esp32} +extra_scripts = ${common.extra_scripts} From 05ba50e436ce819dbf2d38f4cc7d23592d17c559 Mon Sep 17 00:00:00 2001 From: Raphael Date: Tue, 20 Feb 2024 09:41:22 +0100 Subject: [PATCH 09/12] Rename envs --- platformio.ini | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/platformio.ini b/platformio.ini index e12fb30..fb061ea 100644 --- a/platformio.ini +++ b/platformio.ini @@ -65,7 +65,7 @@ lib_deps_esp32 = extra_scripts = platformio_script.py -[env:esp32dev-fr] +[env:esp32dev_fr] monitor_speed = 115200 platform = espressif32@4.1.0 ;upgrade espressif? 5.2.0 lang = fr @@ -75,7 +75,7 @@ build_flags = ${common.build_flags_esp32_release} '-DINTL_FR' '-DKIT_C' lib_deps = ${common.lib_deps_esp32} extra_scripts = ${common.extra_scripts} -[env:esp32dev-fr-debug] +[env:esp32dev_fr_debug] monitor_speed = 115200 build_type = debug monitor_filters = @@ -90,7 +90,7 @@ build_flags = ${common.build_flags_esp32_release} '-DINTL_FR' '-DKIT_C' lib_deps = ${common.lib_deps_esp32} extra_scripts = ${common.extra_scripts} -[env:esp32dev-en-debug] +[env:esp32dev_en_debug] monitor_speed = 115200 build_type = debug monitor_filters = From f0e9b334abaf13b94b045fdcc3d7e6482a892717 Mon Sep 17 00:00:00 2001 From: Raphael Date: Tue, 20 Feb 2024 09:42:35 +0100 Subject: [PATCH 10/12] Set default env --- platformio.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platformio.ini b/platformio.ini index fb061ea..e99ac40 100644 --- a/platformio.ini +++ b/platformio.ini @@ -12,7 +12,7 @@ src_dir = . description = Software for the DOIT ESP32 DEVKIT V1 running inside the air quality sensor ModuleAir. name = ModuleAir_V2.1 -default_envs = esp32dev-fr-debug +default_envs = esp32dev_fr [common] monitor_speed = 115200 From 36e30c0177ea1da87b19b91606d121e4e93bbf06 Mon Sep 17 00:00:00 2001 From: Raphael Date: Tue, 20 Feb 2024 09:49:01 +0100 Subject: [PATCH 11/12] Re-add esp32doit-devkit-v1 env --- platformio.ini | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/platformio.ini b/platformio.ini index e99ac40..8a3934c 100644 --- a/platformio.ini +++ b/platformio.ini @@ -104,3 +104,19 @@ framework = arduino build_flags = ${common.build_flags_esp32_release} '-DINTL_EN' '-DKIT_C' lib_deps = ${common.lib_deps_esp32} extra_scripts = ${common.extra_scripts} + + +[env:esp32doit-devkit-v1_fr_debug] +monitor_speed = 115200 +build_type = debug +monitor_filters = + default + log2file + esp32_exception_decoder +platform = espressif32@4.1.0 ;upgrade espressif? 5.2.0 +lang = fr +board = esp32doit-devkit-v1 +framework = arduino +build_flags = ${common.build_flags_esp32_release} '-DINTL_FR' '-DKIT_V1' +lib_deps = ${common.lib_deps_esp32} +extra_scripts = ${common.extra_scripts} From db776b6709ff859db14ac310830b4548b0d33af3 Mon Sep 17 00:00:00 2001 From: Raphael Date: Tue, 20 Feb 2024 09:49:28 +0100 Subject: [PATCH 12/12] Remove comments --- platformio.ini | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/platformio.ini b/platformio.ini index 8a3934c..e8c3df6 100644 --- a/platformio.ini +++ b/platformio.ini @@ -67,7 +67,7 @@ extra_scripts = platformio_script.py [env:esp32dev_fr] monitor_speed = 115200 -platform = espressif32@4.1.0 ;upgrade espressif? 5.2.0 +platform = espressif32@4.1.0 lang = fr board = esp32dev framework = arduino @@ -82,7 +82,7 @@ monitor_filters = default log2file esp32_exception_decoder -platform = espressif32@4.1.0 ;upgrade espressif? 5.2.0 +platform = espressif32@4.1.0 lang = fr board = esp32dev framework = arduino @@ -97,7 +97,7 @@ monitor_filters = default log2file esp32_exception_decoder -platform = espressif32@4.1.0 ;upgrade espressif? 5.2.0 +platform = espressif32@4.1.0 lang = fr board = esp32dev framework = arduino @@ -113,7 +113,7 @@ monitor_filters = default log2file esp32_exception_decoder -platform = espressif32@4.1.0 ;upgrade espressif? 5.2.0 +platform = espressif32@4.1.0 lang = fr board = esp32doit-devkit-v1 framework = arduino