Skip to content

Commit

Permalink
Merge branch 'optimize/When_psram_is_enable_the_number_of_ooseq_is_no…
Browse files Browse the repository at this point in the history
…t_limited_4.4' into 'release/v4.4'

optimize(lwip):when psram is enable the number of ooseq is not limited 4.4

See merge request espressif/esp-idf!27946
  • Loading branch information
jack0c committed Dec 18, 2023
2 parents ef543e8 + c392dad commit 979a563
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion components/lwip/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -639,7 +639,8 @@ menu "LWIP"
int "The maximum number of pbufs queued on OOSEQ per pcb"
depends on LWIP_TCP_QUEUE_OOSEQ
range 0 12
default 4
default 4 if !SPIRAM_TRY_ALLOCATE_WIFI_LWIP
default 0 if SPIRAM_TRY_ALLOCATE_WIFI_LWIP
help
If LWIP_TCP_OOSEQ_MAX_PBUFS = 0, TCP will not control the number of OOSEQ pbufs.

Expand Down

0 comments on commit 979a563

Please sign in to comment.