Skip to content

Commit

Permalink
Merge pull request espressif#125 from espressif/fix/ncm_buffer_count_…
Browse files Browse the repository at this point in the history
…default_value

fix(ncm): Changed NTB default value to fix DRAM overflow on esp32s2
  • Loading branch information
roma-jam authored Jan 21, 2025
2 parents 7898011 + a25e028 commit 6dd8b4e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions device/esp_tinyusb/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ menu "TinyUSB Stack"
config TINYUSB_NCM_OUT_NTB_BUFF_MAX_SIZE
int "NCM NTB Buffer size for reception size"
depends on TINYUSB_NET_MODE_NCM
default 8192
default 3200
range 1600 10240
help
Size of NTB buffers on the reception side. The minimum size used by Linux is 2048 bytes.
Expand All @@ -327,7 +327,7 @@ menu "TinyUSB Stack"
config TINYUSB_NCM_IN_NTB_BUFF_MAX_SIZE
int "NCM NTB Buffer size for transmission size"
depends on TINYUSB_NET_MODE_NCM
default 8192
default 3200
range 1600 10240
help
Size of NTB buffers on the transmission side. The minimum size used by Linux is 2048 bytes.
Expand Down

0 comments on commit 6dd8b4e

Please sign in to comment.