I am running a script that polls the reader.
reader = mercury.Reader("llrp://10.39.54.202")
reader.set_read_plan([antenna], "GEN2", read_power=POWER[antenna - 1])
tag = reader.read(timeout=250)
When the reader becomes unavailable, running the reader.read function freezes the script and only a kill -9 will stop it.
I'd like to be able to exit cleanly when the reader becomes unavailable.
Any help appreciated!