mirror of
https://gitlab.com/manzerbredes/esds.git
synced 2025-04-09 14:55:22 +00:00
7 lines
360 B
Python
7 lines
360 B
Python
#!/usr/bin/env python
|
|
|
|
def execute(api):
|
|
api.log("Clock is {}s".format(api.read("clock"))) # Ensure clock is 0s for both node
|
|
api.wait(5698.1256)
|
|
api.log("Clock is {}s".format(api.read("clock"))) # Ensure clock is 5698.1256s for both node
|
|
api.log("Clock is {}s".format(api.read("clock"))) # Ensure clock did not change in between for both node
|