mirror of
https://gitlab.com/manzerbredes/esds.git
synced 2025-04-06 10:06:28 +02:00
15 lines
448 B
Python
15 lines
448 B
Python
#!/usr/bin/env python
|
|
from esds import RCode
|
|
|
|
def receivet(node,timeout):
|
|
##### Simple receive
|
|
code, data=node.receivet("eth0",timeout)
|
|
msg="Received: "+data if code == RCode.SUCCESS else "Receive failed code="+str(code)
|
|
node.log(msg)
|
|
|
|
def execute(api):
|
|
# Should not works since communication start at t=0s
|
|
receivet(api,0)
|
|
api.wait(1)
|
|
# Now communication started
|
|
receivet(api,0) # Should work (no timeout error)
|