mirror of
https://github.com/espressif/openthread.git
synced 2026-08-21 18:09:52 +00:00
[ci] test with time sync and header ie (#3514)
This commit adds the missing test with ie present by enabling TIME_SYNC feature, so that IE code are covered.
This commit is contained in:
@@ -48,6 +48,7 @@ class TlvType(IntEnum):
|
||||
ND_DATA = 9
|
||||
THREAD_NETWORK_DATA = 10
|
||||
MLE_ROUTING = 11
|
||||
XTAL_ACCURACY = 254
|
||||
|
||||
|
||||
class StatusValues(IntEnum):
|
||||
@@ -274,6 +275,18 @@ class NdDataFactory(object):
|
||||
def parse(self, data, message_info):
|
||||
raise NotImplementedError("TODO: Not implemented yet")
|
||||
|
||||
class XtalAccuracy:
|
||||
# TODO: Not implemented yet
|
||||
|
||||
def __init__(self):
|
||||
print("XtalAccuracy is not implemented yet.")
|
||||
|
||||
|
||||
class XtalAccuracyFactory:
|
||||
|
||||
def parse(self, data, message_info):
|
||||
return XtalAccuracy()
|
||||
|
||||
|
||||
class ThreadNetworkData(object):
|
||||
|
||||
|
||||
Reference in New Issue
Block a user