Open
Description
When I open two Mavsdk_servers, one with IP and one without IP, they can connect to each other. However, when I use python code to connect to the Mavsdk_server with IP, there is no response.
import asyncio
from mavsdk import System
async def run():
drone = System(mavsdk_server_address="localhost", port=50051)
print("123")
await drone.connect()
print("456")
if __name__ == "__main__":
asyncio.run(run())
I think I'm stuck at drone.connect because I only see 123
I wonder what kind of problem this is and how to solve it