mirror of
https://github.com/espressif/openthread.git
synced 2026-08-24 19:29:52 +00:00
[csl] add TLV for CSL clock accuracy (#6802)
This commit is contained in:
@@ -92,6 +92,7 @@ class TlvType(IntEnum):
|
||||
THREAD_DISCOVERY = 26
|
||||
CSL_CHANNEL = 80
|
||||
CSL_SYNCHRONIZED_TIMEOUT = 85
|
||||
CSL_CLOCK_ACCURACY = 86
|
||||
LINK_METRICS_QUERY = 87
|
||||
LINK_METRICS_MANAGEMENT = 88
|
||||
LINK_METRICS_REPORT = 89
|
||||
@@ -1092,6 +1093,19 @@ class CslSynchronizedTimeoutFactory:
|
||||
return CslSynchronizedTimeout()
|
||||
|
||||
|
||||
class CslClockAccuracy:
|
||||
# TODO: Not implemented yet
|
||||
|
||||
def __init__(self):
|
||||
print("CslClockAccuracy is not implemented yet.")
|
||||
|
||||
|
||||
class CslClockAccuracyFactory:
|
||||
|
||||
def parse(self, data, message_info):
|
||||
return CslClockAccuracy()
|
||||
|
||||
|
||||
class TimeRequest:
|
||||
# TODO: Not implemented yet
|
||||
|
||||
|
||||
Reference in New Issue
Block a user