Navigation

    ModalAI Forum

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    1. Home
    2. CY-1992
    C
    • Profile
    • Following
    • Followers
    • Topics
    • Posts
    • Best
    • Groups

    CY-1992

    @CY-1992

    0
    Reputation
    4
    Posts
    5
    Profile views
    0
    Followers
    0
    Following
    Joined Last Online

    CY-1992 Follow

    Best posts made by CY-1992

    This user hasn't posted anything yet.

    Latest 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