System.connect with time out
Jai-GAY opened this issue · 3 comments
Jai-GAY commented
what is the best method to timeout this connect calling?
I have tried this but I believe the asyncio is too old and timeout is not implemented yet. I cannot find what asyncio version is installed. I can only use asyncio.wait_for, but connection without await is not reliable anymore.
Python 3.10.
Name: mavsdk
Version: 2.1.0
Summary: Python wrapper for MAVSDK
Home-page: https://github.com/mavlink/MAVSDK-Python
Author:
Author-email:
License: UNKNOWN
Location: /home/pi/.local/lib/python3.10/site-packages
Requires: aiogrpc, grpcio, protobuf
Required-by:
try:
# set a timeout
async with asyncio.timeout(5):
await drone.connect(system_address="serial:///dev/ttyAMA1:921600")
except asyncio.TimeoutError:
print(f"Timeout waiting drone.connect")
return False
AttributeError: module 'asyncio' has no attribute 'timeout
res = await asyncio.wait_for(drone.connect(system_address="serial:///dev/ttyAMA1:921600"), 10)
julianoes commented
@JonasVautherin ideas?
JonasVautherin commented
The link to the Python docs says: "New in version 3.11."
@Jai-GAY You apparently have Python 3.10. Did you try updating your Python to >= 3.11? 🤔
Jai-GAY commented
Noted.
The Official jammy 22.04 LTS support is 3.10.x.