2022-06-09 21:48:32 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
def execute(api):
|
|
|
|
##### Simple receive
|
|
|
|
code, data=api.receive("eth0")
|
|
|
|
msg="Received: "+data if code == 0 else "Receive failed code="+str(code)
|
|
|
|
api.log(msg)
|
|
|
|
##### Test if we still receive the data when we are not receiving
|
|
|
|
api.wait(2)
|
|
|
|
code, data=api.receive("eth0")
|
|
|
|
msg="Received: "+data if code == 0 else "Receive failed code="+str(code)
|
|
|
|
api.log(msg)
|
2022-07-01 13:05:33 +02:00
|
|
|
##### Ensure data is not receive when turned off but communication must still be ongoing
|
2022-07-01 10:03:54 +02:00
|
|
|
api.turn_off()
|
|
|
|
api.wait(1)
|
|
|
|
api.turn_on()
|
|
|
|
code, data=api.receivet("eth0",1)
|
|
|
|
msg="Received: "+data if code == 0 else "Receive failed code="+str(code)
|
|
|
|
api.log(msg)
|
2022-07-01 13:05:33 +02:00
|
|
|
|
|
|
|
|