ModalAI Forum
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login
    1. Home
    2. maxwelllwang
    3. Topics
    M
    • Profile
    • Following 0
    • Followers 0
    • Topics 2
    • Posts 3
    • Best 0
    • Controversial 0
    • Groups 0

    Topics created by maxwelllwang

    • M

      Failsafe enabled: no local position

      Flight Core
      • • • maxwelllwang
      2
      0
      Votes
      2
      Posts
      239
      Views

      M

      @maxwelllwang Sorry here is a working link to the log. https://review.px4.io/plot_app?log=270f405a-88bd-4ba7-a4d2-a4eb3258e18d

    • M

      Duplicating UVC camera

      Software Development
      • • • maxwelllwang
      5
      0
      Votes
      5
      Posts
      360
      Views

      ?

      This is essentially the point of MPA (Modal Pipe Architecture, our interprocess communications standard). We publish FIFOs to /run/mpa with the data (standard FIFOs use the filesystem as a handle, not for actually transferring the data, the kernel will pass the data directly from process to process). voxl-uvc-server will pull the data from the camera and write it out to a pipe in /run/mpa, which can easily be mounted in a docker image and read there. You can use the libmodal_pipe(or manually request a pipe and open the FIFO, though this will be less reliable than our extensively tested library) to read it in a docker image (or images as MPA allows numerous clients).