Skip to content
This repository was archived by the owner on Feb 4, 2023. It is now read-only.

Commit ccdd83b

Browse files
authored
v1.10.5 using PROGMEM for strings
### Release v1.10.5 1. Using PROGMEM for strings in examples. Check [Example fixes #32](#32) 2. Using PROGMEM for HTML strings. Check [implement PROGMEM strings, alignment with ESP_WiFiManager_Lite #31](#31) 3. Default LittleFS for ESP8266 in examples 4. Improve `README.md` so that links can be used in other sites, such as `PIO` 5. Sync with `ESP_WiFiManager_Lite` v1.10.5
1 parent 2bdc585 commit ccdd83b

File tree

5 files changed

+46130
-4
lines changed

5 files changed

+46130
-4
lines changed

examples/ESPAsync_WiFi/debug.cfg

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# SPDX-License-Identifier: GPL-2.0-or-later
2+
#
3+
# Example OpenOCD configuration file for ESP32-WROVER-KIT board.
4+
#
5+
# For example, OpenOCD can be started for ESP32 debugging on
6+
#
7+
# openocd -f board/esp32-wrover-kit-3.3v.cfg
8+
#
9+
10+
# Source the JTAG interface configuration file
11+
source [find interface/ftdi/esp32_devkitj_v1.cfg]
12+
set ESP32_FLASH_VOLTAGE 3.3
13+
# Source the ESP32 configuration file
14+
source [find target/esp32.cfg]
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"name":"Arduino on ESP32",
3+
"toolchainPrefix":"xtensa-esp32-elf",
4+
"svdFile":"debug.svd",
5+
"request":"attach",
6+
"postAttachCommands":[
7+
"set remote hardware-watchpoint-limit 2",
8+
"monitor reset halt",
9+
"monitor gdb_sync",
10+
"thb setup",
11+
"c"
12+
],
13+
"overrideRestartCommands":[
14+
"monitor reset halt",
15+
"monitor gdb_sync",
16+
"thb setup",
17+
"c"
18+
]
19+
}

examples/ESPAsync_WiFi/defines.h

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,12 +59,15 @@
5959

6060
// LittleFS has higher priority than SPIFFS
6161
#if ( defined(ESP_ARDUINO_VERSION_MAJOR) && (ESP_ARDUINO_VERSION_MAJOR >= 2) )
62-
#define USE_LITTLEFS true
63-
#define USE_SPIFFS false
62+
#define USE_LITTLEFS true
63+
#define USE_SPIFFS false
6464
#elif defined(ARDUINO_ESP32C3_DEV)
6565
// For core v1.0.6-, ESP32-C3 only supporting SPIFFS and EEPROM. To use v2.0.0+ for LittleFS
6666
#define USE_LITTLEFS false
6767
#define USE_SPIFFS true
68+
#else
69+
#define USE_LITTLEFS true
70+
#define USE_SPIFFS false
6871
#endif
6972

7073
/////////////////////////////////////////////

0 commit comments

Comments
 (0)