Fix bidirectional comms regression: remove unsafe core 0 persist task, restore better-path announce bypass

Increase TCP drain budget (5→10 frames), raise RNS-overload skip threshold (200→500ms)
This commit is contained in:
DeFiDude
2026-03-30 02:15:22 -06:00
parent 0d2a75a71c
commit 6836b6967a
4 changed files with 41 additions and 76 deletions
+2 -2
View File
@@ -1059,9 +1059,9 @@ void loop() {
}
}
// 8. WiFi + TCP loops (with global budget) — skip if RNS was overloaded
// 8. WiFi + TCP loops (with global budget) — skip only if RNS severely overloaded
{
bool skipTcp = (rnsDuration > 200);
bool skipTcp = (rnsDuration > 500);
if (!skipTcp && wifiImpl) wifiImpl->loop();
if (!skipTcp) {
unsigned long tcpBudgetStart = millis();