Partial work for NTP client

This commit is contained in:
Jm Casler
2021-12-28 19:24:10 -08:00
parent f3427084c2
commit 654558abcd
3 changed files with 36 additions and 11 deletions

View File

@@ -11,8 +11,11 @@ enum RTCQuality {
/// Some other node gave us a time we can use
RTCQualityFromNet = 1,
/// Our time is based on NTP
RTCQualityNTP= 2,
/// Our time is based on our own GPS
RTCQualityGPS = 2
RTCQualityGPS = 3
};
RTCQuality getRTCQuality();