Skip to content
  • webstore ordering issue

    Unsolved Development Drones rb5
    2
    0 Votes
    2 Posts
    438 Views
    ModeratorM
    We don't believe there are any issues, but we just sent you an email in case.
  • replacement body parts for RB5

    Unsolved Development Drones rb5
    2
    0 Votes
    2 Posts
    552 Views
    ?
    @MaxG we are currently low on stock of the replacement parts, but they can be found here on our web store. Please check back in the next week or two and those will be in stock. Replacement landing skids can be special ordered. Do you need the entire skid assembly or just the landing skid itself (black part)? Please send a picture to contact@modalai.com and we can get you the parts that you need!
  • RB5 drone streaming from different cameras

    Unsolved Development Drones rb5
    4
    0 Votes
    4 Posts
    1k Views
    alfa budimanA
    I'm not sure if you still have this problem, but if you know ROS, you can stream the cameras on your computer by configuring the drone to have the ROS master on your computer. First follow the steps at this link to setup ROS on RB5. https://docs.modalai.com/setup-ros-on-voxl-2/ Then you can set the ROS master to be on your computer by opening ~/.bashrc on the RB5 drone, and entering these lines in the file: export ROS_MASTER_URI=http://{PC_IP_ADDRESS}:11311/ export ROS_HOSTNAME={RB5_DRONE_IP} PC_IP_ADDRESS can be obtained from ipconfig on your computer. RB5_DRONE_IP is the one you use to ssh into it. Then on the drone: source ~/.bashrc On your computer execute: roscore Rviz On the drone execute: roslaunch voxl_mpa_to_ros voxl_mpa_to_ros.launch You will then be able to view the camera display topics from voxl_mpa_to_ros on your computer. You can stream them on Rviz, and you can create ROS nodes to subscribe to these topics for whatever computer vision application you develop. Hope this helps.
  • 0 Votes
    2 Posts
    454 Views
    Chad SweetC
    Hi Akash, we do not expect much of the Qualcomm Flight RB5 SDK to work on the RB5 dev kit without a significant amount of work.
  • SDK version 1.1.3 issues (video stream breaks, reboot issue)

    Unsolved Development Drones rb5
    1
    0 Votes
    1 Posts
    589 Views
    No one has replied
  • USBC Port as Ethernet interface

    Unsolved Development Drones rb5
    8
    0 Votes
    8 Posts
    2k Views
    Eric KatzfeyE
    @mrawding Also Apple A1277
  • Questions regarding RB5 5G drone

    Unsolved Development Drones rb5
    27
    1
    0 Votes
    27 Posts
    7k Views
    M
    @RichieRich GPS unit is mounted by default (as it comes with RB5 5G drone), mast is locked in vertical postion. Turning EKF2_REQ_SACC to 0,75 provided no errors from GPS. Obstacle avoidance was also disabled, so we managed to fly. But I'm still a bit confused why the obstacle avoidance gives error, since the drone was placed on the ground (concrete pavement), no obstacles within few meters, while the minimum distance was set to only 1 m. But this is current setup that works: [image: 1649438004385-0de5d598-3401-4512-9e7b-3ef8202ef635-image.png] Many thanks for your help. We'll try to figure this out and provide info in a few days.
  • RB5 Kit + SDK queries

    Unsolved Development Drones rb5
    4
    0 Votes
    4 Posts
    937 Views
    ModeratorM
    For softap, there are references here on how to enable At some point more flexibility will be added for camera configurations. Right now the shipping configuration is all that is supported. There is already a tracking camera at 45°. You should be able to create a mount to point that straight down if you prefer. Only one active gstreamer instance for each camera can be running. The camera servers use gstreamer to get the camera data and publish that to a named pipe. So if an instance of a camera server is running, then a new gstreamer instance for that same camera can't be started. MAVROS is not pre-installed. That is planned in a future version of the SDK, likely one or two months away. We do have customers using it today though. Note in offboard mode the default behavior is a figure-8. See post here for the fix
  • Flight RB5 Questions.

    Unsolved Development Drones rb5
    2
    0 Votes
    2 Posts
    440 Views
    Chad SweetC
    ModalAI is the only manufacturer of Qualcomm Flight RB5 boards We will release more pricing information soon. The VOA functionality creates the depth map and obstacle map on the CPU and passes that information to PX4 running on the DSP. Yes, there is USB expansion, datasheet has all of the details here The USB expansion through the modem carrier board uses JST-style connectors which are more vibration tolerant. The end UAV manufacturer can equip with a fan. HDMI input is not supported at this point
  • How to edit full-m0052.config file?

    Unsolved Development Drones rb5
    11
    0 Votes
    11 Posts
    2k Views
    tomT
    @Djalma-Ribeiro Awesome thank you, just wanted to make sure your RB5 had the SDK loaded properly, which it does. It's not absolutely necessary to upgrade the SDK, if you do want to you can follow the steps here: https://docs.modalai.com/Qualcomm-Flight-RB5-sdk-installation/#how-to-upgrade One note, if you try to upgrade the SDK while PX4 is running it will fail. So in order to upgrade the SDK you would have to disable PX4 from starting systemctl disable rb5-px4-start and then reboot your drone before upgrading your SDK.
  • Cannot Connect to 5G network

    Unsolved Development Drones rb5
    15
    1
    0 Votes
    15 Posts
    3k Views
    tomT
    @chris_macdonald Oops, my bad. It is on board at /usr/bin/set-mode-pref
  • How to set up a static IP in RB5

    Unsolved Development Drones rb5
    17
    0 Votes
    17 Posts
    4k Views
    M
    If anyone else is interested - I found a way to enable static ip's for ethernet and wlan interfaces. You'll need to install a file like below under /etc/systemd/systetem/ and run the following commands: systemctl enable ipconfig.service systemctl disable dhcpcd.service [Unit] Description=A description for your custom service goes here Requires=systemd-networkd.service After=systemd-networkd-wait-online.service [Service] Type=simple ExecStartPre=/bin/sleep 10 ExecStart=/bin/systemctl restart systemd-networkd.service [Install] WantedBy=multi-user.target You'll also need to add this file under /etc/systemd/network/wlan0.network [Match] Name=wlan0 [Network] Address=192.168.0.169/24 #DHCP=yes Simply installing this service will allow most routers to keep the rb5 address the same when assigning IPs for a lease. Just comment #Address and uncomment DHCP to use dhcp. You will also need to make sure to add the gatway to the routing table: route add default gw $router_IP $network_interface this is best to be configured as a oneshot service where the service has the field Requires=ipconfig.service
  • Offboard mode and figure 8

    Unsolved Development Drones rb5
    3
    0 Votes
    3 Posts
    962 Views
    S
    We cannot access the download, it requires authentication. Is there a fix for this issue?
  • RB5 UART for external FC not working.

    Unsolved Development Drones uart rb5 drivers external fc
    6
    0 Votes
    6 Posts
    2k Views
    W
    @modaltb hello, when will the next SDK release be available? Would love to the UARTs working for external FC. Thank you.
  • Streaming stopping after running once

    Unsolved Development Drones rb5
    4
    0 Votes
    4 Posts
    1k Views
    U
    @Hector-Nevarez Thanks for the quick reply. If the camera server are disabled I guess VIO can not work?
  • QGroundControl USB connection for sensor calibration

    Unsolved Development Drones rb5
    3
    0 Votes
    3 Posts
    1k Views
    U
    @umlr said in QGroundControl USB connection for sensor calibration: Performing sensor calibration over a WiFi connection is known to be unreliable. You should disconnect and perform calibration using a direct USB connection instead. Alright good to know that calibrating over WiFi is fine. Yes WiFi connection with QGroundControl worked pretty much out-of-the-box.
  • Camera Calibration

    Unsolved Development Drones rb5
    5
    0 Votes
    5 Posts
    2k Views
    U
    @Jeremy-Schmidt Ah you are right they are all here, I thought I erased everything when flashing the new image.
  • RB5 adb or wifi no longer communicating

    Unsolved Development Drones rb5
    4
    0 Votes
    4 Posts
    980 Views
    tomT
    @MaxG Glad to hear that! Thanks for the update.
  • Extrinsic camera/imu parameters

    Unsolved Development Drones rb5
    2
    0 Votes
    2 Posts
    830 Views
    Chad SweetC
    [voxl-configure-extrinsics](https://docs.modalai.com/configure-extrinsics/![alt text](image url)) provides a tool for configuration, voxl-inspect-extrinsics provides a tool to view the current settings
  • RB5 PX4 Debian Build Failing

    Unsolved Development Drones rb5
    4
    0 Votes
    4 Posts
    2k Views
    G
    @mrawding good afternoon, i see that your topic is quite old, but I am struggling with px4 firmware build and was wondering if you ever managed to successfully build your px4 firmware ? If you have done it recently, I would appreciate a helping hand in this topic: https://forum.modalai.com/topic/4539/voxl2-hitl-sim-with-gazebo-in-docker-vtol-frame-support/13?_=1751379111988