ModalAI Forum
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login
    1. Home
    2. CY-1992
    3. Posts
    C
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 4
    • Best 0
    • Controversial 0
    • Groups 0

    Posts made by CY-1992

    • RE: Building new docker image error - Cmake version not good

      @marian Try to use base image arm64v8/ubuntu:20.04 in Dockerfile. It has the latest cmake version.

      FROM arm64v8/ubuntu:20.04
      
      posted in Software Development
      C
      CY-1992
    • RE: How to Build mavsdk_server from new source

      @PIRON-PI You don't need mavsdk-server if you use C++.

      posted in Ask your questions right here!
      C
      CY-1992
    • RE: Multiple UDP connections on port 14551

      voxludp.png
      @Eric-Katzfey Based the docs, I thought multiple UDP connections can be established with voxl-vision-px4

      posted in VOXL
      C
      CY-1992
    • Multiple UDP connections on port 14551

      Hi,
      I am using MAVSDK python and pymavlink in my project. I used the following code

      await drone.connect(system_address= "udp://:14551" )
      mavutil.mavlink_connection('udpin:0.0.0.0:14551')
      

      It throws an error "address is already in use". Can two local processes simultaneously have access to PX4 via the same port 14551?. The documentation shows voxl supports up to 16 simultaneous UDP connections.

      posted in VOXL
      C
      CY-1992