mirror of
https://github.com/ratspeak/ratdeck.git
synced 2026-07-20 02:30:54 +00:00
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:
+2
-2
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user