Add timesync burst handling and sender-only timeout

- Add TimeSync fault code and labels in UI/SD/web docs
- Trigger receiver beacon bursts on sender drift, but keep errors sender-local
- Sender flags TimeSync only after TIME_SYNC_ERROR_TIMEOUT_MS
This commit is contained in:
2026-02-03 23:40:11 +01:00
parent 43893c24d1
commit f7a2503d7a
7 changed files with 92 additions and 10 deletions

View File

@@ -15,6 +15,8 @@ static const char *fault_text(FaultType fault) {
return "decode";
case FaultType::LoraTx:
return "loratx";
case FaultType::TimeSync:
return "timesync";
default:
return "";
}