From ba185e40e0786e93882bc3d81098adf4088279f2 Mon Sep 17 00:00:00 2001 From: Alex Siryi Date: Wed, 2 Jul 2025 18:37:32 +0200 Subject: [PATCH 1/3] Fix correct definition of sources for spi_flash component --- components/spi_flash/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/spi_flash/CMakeLists.txt b/components/spi_flash/CMakeLists.txt index 255eff8e7..287e63c13 100644 --- a/components/spi_flash/CMakeLists.txt +++ b/components/spi_flash/CMakeLists.txt @@ -1,4 +1,4 @@ -set(srcs "src/partition" +set(srcs "src/partition.c" "src/spi_flash_raw.c" "src/spi_flash.c") if(BOOTLOADER_BUILD) From 6a6f66ff7ef40fdbf73809565466e261fb0c31b7 Mon Sep 17 00:00:00 2001 From: Alex Siryi Date: Sat, 13 Sep 2025 17:23:27 +0200 Subject: [PATCH 2/3] Update check-lxdialog.sh --- tools/kconfig/lxdialog/check-lxdialog.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/kconfig/lxdialog/check-lxdialog.sh b/tools/kconfig/lxdialog/check-lxdialog.sh index e9daa6270..6408baae5 100755 --- a/tools/kconfig/lxdialog/check-lxdialog.sh +++ b/tools/kconfig/lxdialog/check-lxdialog.sh @@ -63,7 +63,7 @@ trap "rm -f $tmp ${tmp%.tmp}.d" 0 1 2 3 15 check() { $cc -x c - -o $tmp 2>/dev/null <<'EOF' #include CURSES_LOC -main() {} +int main() {} EOF if [ $? != 0 ]; then echo " *** Unable to find the ncurses libraries or the" 1>&2 From 623cce153935b1a8d745a6648e2b8cb4254617b7 Mon Sep 17 00:00:00 2001 From: desertkun Date: Fri, 26 Sep 2025 21:19:18 +0200 Subject: [PATCH 3/3] Fix compilation error when TCP_OVERSIZE is 0 and lwip stats enabled --- components/lwip/port/esp8266/debug/lwip_debug.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/components/lwip/port/esp8266/debug/lwip_debug.c b/components/lwip/port/esp8266/debug/lwip_debug.c index d354f4025..ce6da3580 100644 --- a/components/lwip/port/esp8266/debug/lwip_debug.c +++ b/components/lwip/port/esp8266/debug/lwip_debug.c @@ -101,7 +101,9 @@ static void dbg_lwip_tcp_pcb_one_show(struct tcp_pcb* pcb) ESP_LWIP_LOGI("snd_lbb=%d snd_wnd=%d snd_wnd_max=%d", pcb->snd_lbb, pcb->snd_wnd, pcb->snd_wnd_max); //ESP_LWIP_LOGI("acked=%d", pcb->acked); ESP_LWIP_LOGI("snd_buf=%d snd_queuelen=%d", pcb->snd_buf, pcb->snd_queuelen); +#if TCP_OVERSIZE ESP_LWIP_LOGI("unsent_oversize=%d", pcb->unsent_oversize); +#endif ESP_LWIP_LOGI("keep_idle=%d keep_intvl=%d keep_cnt=%d", pcb->keep_idle, pcb->keep_intvl, pcb->keep_cnt); ESP_LWIP_LOGI("persist_cnt=%d persist_backoff=%d", pcb->persist_cnt, pcb->persist_backoff); ESP_LWIP_LOGI("keep_cnt_sent=%d", pcb->keep_cnt_sent);