Skip to content

Commit 178aee8

Browse files
Update WiFiGeneric.cpp (espressif#7044)
Changes WiFi Static TX Cache Buffer Number to 4 in order to avoid issues with sending more than 1 packet at the same time.
1 parent e10b528 commit 178aee8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libraries/WiFi/src/WiFiGeneric.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -668,7 +668,7 @@ bool wifiLowLevelInit(bool persistent){
668668
cfg.static_tx_buf_num = 0;
669669
cfg.dynamic_tx_buf_num = 32;
670670
cfg.tx_buf_type = 1;
671-
cfg.cache_tx_buf_num = 1; // can't be zero!
671+
cfg.cache_tx_buf_num = 4; // can't be zero!
672672
cfg.static_rx_buf_num = 4;
673673
cfg.dynamic_rx_buf_num = 32;
674674
}

0 commit comments

Comments
 (0)