Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 178aee8

Browse filesBrowse 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
Copy full SHA for 178aee8

File tree

1 file changed

+1
-1
lines changed
Filter options

1 file changed

+1
-1
lines changed

‎libraries/WiFi/src/WiFiGeneric.cpp

Copy file name to clipboardExpand all lines: libraries/WiFi/src/WiFiGeneric.cpp
+1-1Lines changed: 1 addition & 1 deletion
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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.