ModalAI Forum
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login
    1. Home
    2. Popular
    Log in to post
    • All Time
    • Day
    • Week
    • Month
    • All Topics
    • New Topics
    • Watched Topics
    • Unreplied Topics
    • All categories
    • Jetson NanoJ

      Turtle mode compatibility with non Modalai ESC

      Ask your questions right here!
      • • • Jetson Nano
      17
      0
      Votes
      17
      Posts
      151
      Views

      Jetson NanoJ

      @Eric-Katzfey

      Thank you for reverting back. I am trying to proceed with the same approach.
      I am facing some errors while going with this approach , I am trying to debug them.

      Another approach :-
      I am also thinking to hardcode the joystick based turtle mode to the voxl_esc.cpp.
      The manual control values will be monitored and once the value of the assigned button is clicked, the turtle mode will be enabled.
      Do you think it is a good approach?

    • Jetson NanoJ

      VOXL 2 J18 port for External FC

      Ask your questions right here!
      • • • Jetson Nano
      15
      0
      Votes
      15
      Posts
      142
      Views

      Jetson NanoJ

      @Eric-Katzfey
      hey,
      I observed something while the above behaviour still persists.
      The modem and the camera server is showing not running while checking through the inspect services command.
      I do not know whether this is related to this issue, but the voxl 2 is rebooting after sometime, the reboot is not constant and I am not able to able to find the reason for the reboot. Can everything be related to each other.
      I am using the Microhard modem

      Screenshot from 2025-11-10 15-27-45.png

      Screenshot from 2025-11-10 15-30-27.png

    • R

      VOXL 2 Connecting an External Flight Controller Problem

      VOXL 2
      • • • ravi
      14
      0
      Votes
      14
      Posts
      234
      Views

      Eric KatzfeyE

      @ravi I'm suspecting you have a bad cable or the cable is subject to some interference. Can you try this on a benchtop with just a VOXL 2 and an FC v2 and no other components? Is it currently integrated into a custom drone? Can you look at the signal quality on the TX and RX UART lines with an oscilloscope?

    • T

      DRONE NOT FLYING

      FPV Drones
      • • • taiwohazeez
      8
      0
      Votes
      8
      Posts
      49
      Views

      Eric KatzfeyE

      @taiwohazeez Can you post a video of it trying to fly?

    • TjarkT

      voxl-mavlink-server incorrectly sets UTC clock from GPS time

      VOXL SDK
      • • • Tjark
      8
      0
      Votes
      8
      Posts
      232
      Views

      TjarkT

      @Eric-Katzfey Thanks for your update. We tried it on one of our drones but we had some strange issues regarding invalid setpoints afterwards and we think it may be caused by a voxl-px4 version mismatch. We were running version 1.14.0-2.0.98 of voxl-px4 and the version you provided is 1.14.0-2.0.116. Would it be difficult to provide a patch for version 1.14.0-2.0.98?

      We also had our first log of that it occurred again with our forked voxl-mavlink-server. The drone continued its flight now which is good. This is the changed function:

      void mavlink_services_handle_system_time(mavlink_message_t* msg) { // collect and consolidate information int64_t time_now_ns = my_time_realtime_ns(); int64_t time_now_s = time_now_ns / 1e9; int64_t gps_time_us = mavlink_msg_system_time_get_time_unix_usec(msg); int64_t gps_time_s = gps_time_us / 1e6; // check gps time is valid if(gps_time_s == 0) return; bool within_10_seconds_original = abs(time_now_s - gps_time_s)<10; bool within_10_seconds_correct = llabs(time_now_s - gps_time_s)<10; if (within_10_seconds_original != within_10_seconds_correct) { printf( "WARNING! The check if we are within 10 seconds gives an incorrect result due to wrong usage of abs.\n" "Original: %s, Correct: %s (time_now_s=%lld, gps_time_s=%lld, diff_original=%d, diff_correct=%lld)\n", within_10_seconds_original ? "true" : "false", within_10_seconds_correct ? "true" : "false", (long long)time_now_s, (long long)gps_time_s, abs(time_now_s - gps_time_s), // truncated 32-bit diff llabs(time_now_s - gps_time_s) // correct 64-bit diff ); } // if we are within 10 seconds, good enough if(within_10_seconds_correct){ if(time_needs_setting){ printf("detected system time has already been set\n"); } time_needs_setting = 0; return; } else time_needs_setting = 1; if(!time_needs_setting) return; struct timespec ts_now; ts_now.tv_sec = time_now_s; ts_now.tv_nsec = 0; struct timespec ts_gps; ts_gps.tv_sec = gps_time_s; ts_gps.tv_nsec = 0; printf("WARNING! System wants to use GPS system time message to set UTC clock from %s to: %s", asctime(gmtime(&ts_now.tv_sec)), asctime(gmtime(&ts_gps.tv_sec))); printf("We will ignore this system time message and we won't update the clock"); // if (clock_settime(CLOCK_REALTIME, &ts) < 0) { // perror("Failed to set system time to GPS time"); // return; // } time_needs_setting = 0; return; }

      And we got log lines like this:

      Nov 07 09:07:28 JOHN voxl-mavlink-server[2237]: We will ignore this system time message and we won't update the clockWARNING! System wants to use GPS system time message to set UTC clock from Fri Nov 7 09:07:29 2025 Nov 07 09:07:28 JOHN voxl-mavlink-server[2237]: to: Fri Nov 7 09:07:29 2025 Nov 07 09:07:28 JOHN voxl-mavlink-server[2237]: We will ignore this system time message and we won't update the clockWARNING! System wants to use GPS system time message to set UTC clock from Fri Nov 7 09:07:30 2025 Nov 07 09:07:28 JOHN voxl-mavlink-server[2237]: to: Fri Nov 7 09:07:30 2025 Nov 07 09:07:28 JOHN voxl-mavlink-server[2237]: We will ignore this system time message and we won't update the clockWARNING! System wants to use GPS system time message to set UTC clock from Fri Nov 7 09:07:31 2025 Nov 07 09:07:28 JOHN voxl-mavlink-server[2237]: to: Fri Nov 7 09:07:31 2025 Nov 07 09:07:28 JOHN voxl-mavlink-server[2237]: We will ignore this system time message and we won't update the clockWARNING! System wants to use GPS system time message to set UTC clock from Fri Nov 7 09:07:32 2025 Nov 07 09:07:28 JOHN voxl-mavlink-server[2237]: to: Fri Nov 7 09:07:32 2025 Nov 07 09:07:28 JOHN voxl-mavlink-server[2237]: We will ignore this system time message and we won't update the clockWARNING! System wants to use GPS system time message to set UTC clock from Fri Nov 7 09:07:33 2025 Nov 07 09:07:28 JOHN voxl-mavlink-server[2237]: to: Fri Nov 7 09:07:33 2025

      but I don't yet understand why it is triggering this log because both timestamps seem to be identical. Maybe you have an idea?

    • B

      RRFPV PIZZA 13ā€ rebuild with NDAA components/ModalAI components

      VOXL Compute & Autopilot
      • • • bambamoda
      8
      0
      Votes
      8
      Posts
      250
      Views

      Eric KatzfeyE

      @bambamoda The VOXL 2 can support 8 PWM outputs with this add-on board: https://www.modalai.com/products/voxl2-io?variant=40610514206771.

    • S

      EIS functionality

      Video and Image Sensors
      • • • SKA
      7
      0
      Votes
      7
      Posts
      246
      Views

      Alex KushleyevA

      Hi @SKA ,

      I believe i fixed this issue with full-follow mode in the camera server. Now EIS has a body->imu transform, which is read from the extrinsics file and is used to properly rotate the image, instead of hi-jacking the cam->cam_eis transform.

      So now your cam->cam_eis transform should work. Please make sure the imu_apps->cam transform is correct, if your camera is rotated 90 degrees.

      Please check the commits from Nov 10 : https://gitlab.com/voxl-public/voxl-sdk/services/voxl-camera-server/-/commits/dev

      Alex

    • L

      Python MPA image

      Modal Pipe Architecture (MPA)
      • • • l05
      7
      0
      Votes
      7
      Posts
      274
      Views

      Alex KushleyevA

      @l05 can you try running the ./make_package.sh script inside docker? also if you are just trying to deploy your app, you can copy it directly from voxl-mpa-tools/build64/tools, to voxl2 using adb or ssh (assuming the build itself succeeded).

      Alex

    • J

      Throttle Doesnt Work

      VOXL 2 Mini
      • • • jeremyrbrown5
      7
      0
      Votes
      7
      Posts
      244
      Views

      Eric KatzfeyE

      @jeremyrbrown5 Ah, yes, that'll do it.

    • L

      Requesting the factory original calibration files for ADK Ser#M2500000185

      VOXL Dev Kits
      • • • latif
      6
      0
      Votes
      6
      Posts
      42
      Views

      L

      @latif I meant "voxl-configure-cameras 19"... in the post above.

    • L

      Recovering Flight Logs from a Bricked VOXL2

      VOXL 2
      • • • lhermosillo
      6
      0
      Votes
      6
      Posts
      73
      Views

      N. ChenN

      @lhermosillo
      That is harsh. Do you have a bare board, or one with some additions? If you can use the bare voxl2, try that. If you have been using the bare board all along, I'm stumped here. I'd maybe try to reinstall the modalai-qdl env, or use another image. Maybe the qdl command itself instead of the webUI. Hope you'll be able to save your board!

    • G

      Starling 2 flying into ceiling

      Ask your questions right here!
      • • • greg_s
      6
      0
      Votes
      6
      Posts
      239
      Views

      G

      Hello @Cliff-Wong,

      Yes, I flew the drone around the room in position mode until the map was generated. I then flipped the remote to offboard with 'trajectory' set. Here are the files below:

      /**

      VOXL Vision PX4 Configuration File version: don't touch this, used to keep track of changing config file formats ############################################################################## MAVROS MAVSDK ############################################################################## en_localhost_mavlink_udp: If you are running MAVROS/MAVSDK onboard VOXL and wish to open access to PX4 through a localhost UDP port simply ensure the follow feature is enabled. This is set to true by default. This will allow one local process to communicate with PX4 via port 14551 by default, NOT 14550 which is reserved for connections outside the board. These separation prevents conflicts between the two sockets. Both MAVROS and MAVSDK can be configured to use this port. localhost_udp_port_number: Port number for localhost UDP socket, default 14551 ############################################################################## VIO ############################################################################## en_vio: Enable processing of VIO data from MPA to be sent to PX4 as mavlink odometry messages. Enabled by default. vio_pipe: Primary pipe to subscribe to for VIO data. Must be a standard libmodal-pipe vio_data_t type. Default is qvio. If no data is available on this pipe then voxl-vision-hub will subscribe to secondary_vio_pipe instead. secondary_vio_pipe: Secondary pipe to subscribe to for VIO data. Must be a standard libmodal-pipe vio_data_t type. Default is ov for openvins. If no data is available on this pipe then voxl-vision-hub will subscribe to the primary vio_pipe instead. Set to an empty string to disable. Default: ov en_reset_vio_if_initialized_inverted: For VIO algorithms like qVIO that can initialize in any orientation and output their estimate of the gravity vector, we suggest leaving this enabled to allow vvpx4 to automatically send the reset signal back to the VIO pipe if VIO was initialized upside-down or sufficiently off-level. Helpful if the user powers on a drone while carrying it to the flight area and VIO starts too early. vio_warmup_s: Wait this for this amount of time of having good VIO data before actually starting to send to PX4. This helps stop EKF2 getting confused if VIO flickers in and out while struggling to init. Set to 0 to disable the feature. send_odom_while_failed: On by default. Send Odometry messages to PX4 with a quality of -1 when VIO indicates a failure so EKF2 can start dead reckoning. This MAY need to be turned off with PX4 versions older than 1.14 since the quality metric was no implemented prior to PX4 1.14 ############################################################################## APQ8096-only Features ############################################################################## en_set_clock_from_gps: Enable setting the VOXL system time to GPS time if no NTP server can be reached via network to set the time. en_force_onboard_mav1_mode: Force PX4 to use onboard mode for mavlink 1 channel which is the channel apq8096 (VOXL1) uses to communicate UART Mavlink with PX4. Not applicable to qrb5165-based platforms. Sets the MAV1_MODE PX4 param. en_reset_px4_on_error: Trigger a reboot of PX4 one some of PX4's unrecoverable errors, Not applicable to qrb5165 Yaw estimate error & High Accelerometer Bias and both detected ############################################################################## Misc Features ############################################################################## horizon_cal_tolerance: Allowable standard deviation in roll/pitch values to consider the drone stable enough in flight to do a PX4 horizon calibration. Default is 0.45, you can increase this slightly if flying in a small indoor area or with a drone that does not hold still very well. See https://docs.modalai.com/calibrate-px4-horizon/ en_hitl: Enable Hardware In The Loop (HITL) testing extensions. Disabled by default. ############################################################################## offboard mode config ############################################################################## offboard_mode: The following are valid strings off: VVPX4 will not send any offboard commands to PX4 figure_eight: Default value, VVPX4 commands PX4 to fly a figure 8 path follow_tag: Drone will follow an apriltag around. Very dangerous, not recommended for customer use, for ModalAI R&D only. trajectory: VVPX4 receives polynomial trajectories by pipe and commands PX4 to follow the trajectory path. Still in development. backtrack: Drone will replay, in reverse order, the last few seconds of it's position including yaw. This is useful when the drone loses the communication link and needs to get back to a place where it is able to regain the link. This mode will notice when the RC link goes away and sends a command to px4 to enter offboard mode. wps: read waypoints in local coordinate system follow_tag_id: Apriltag ID to follow in follow_tag mode figure_eight_move_home: Enable by default, resets the center of the figure 8 path to wherever the drone is when flipped into offboard mode. When disabled, the drone will quickly fly back to the XYZ point 0,0,-1.5 in VIO frame before starting the figure 8. Disabling this feature can be dangerous if VIO has drifted significantly. wps_move_home: Enable by default, resets the center of the wps path to wherever the drone is when flipped into offboard mode. When disabled, the drone will quickly fly back to the XYZ point 0,0,-1.5 in VIO frame before starting the figure 8. Disabling this feature can be dangerous if VIO has drifted significantly. robot_radius: Robot radius to use when checking collisions within the trajectory monitor. The trajectory monitor is only active when in trajectory mode collision_sampling_dt: The time step to sample along the polynomials by when checking for collisions in the collision monitor. max_lookahead_distance: Maximum distance to look along the trajectory. Sensor data further out can be unrealiable so keeping this value small reduces false positives backtrack_seconds: Number of seconds worth of position data to store for replay in backtrack mode. backtrack_rc_chan: RC channel to monitor for transitions into and out of backtrack mode. backtrack_rc_thresh: Value above which backtrack is considered enabled on the configured RC channel. ############################################################################## Fixed Frame Tag Relocalization ############################################################################## en_tag_fixed_frame: Enable fixed frame relocalization via voa_inputs. See: https://docs.modalai.com/voxl-vision-px4-apriltag-relocalization/ fixed_frame_filter_len: Length of the moving average filter to use for smooth relocalization when a tag is detected. Default is 5, a longer filter will result in smoother behavior when a new tag comes into view. Set to 1 to do no filtering at all and assume every tag detection is accurate. en_transform_mavlink_pos_setpoints_from_fixed_frame: When enabled, mavlink position_target_local_ned_t commands received on via UDP will be assumed to be in fixed frame and are then transformed to local frame before being sent to PX4. This allows offboard mode position commands from MAVROS/MAVSDK to be in fixed frame relative to voa_inputs even though PX4/EKF2 operates in local frame relative to where VIO initialized. ############################################################################## Collision Prevention (VOA) Settings for configuring Mavlink data sent to Autopilot for VOA ############################################################################## en_voa: Enable processing of DFS and TOF data to be sent to PX4 as mavlink obstacle_distance messages for collision prevention in position mode. voa_lower_bound_m & voa_upper_bound_m: VOA ignores obstacles above and below the upper and lower bounds. Remember, Z points downwards in body and NED frames, so the lower bound is a positive number, and the upper bound is a negative number. Defaults are lower: 0.15 upper: -0.15 Units are in meters. voa_memory_s: number of seconds to keep track of sensor readings for VOA default: 1.0 voa_max_pc_per_fusion: maximum number of sensor samples (points clouds) to fuse for every mavlink transmision. Default is 100 so that voa_memory_s determines when to discard old data instead. set this to 1 if you only want to use the most recent sensor sample for example. If you start severly limiting the number of point clouds used per fusion, you will also need to lower voa_pie_threshold. voa_pie_min_dist_m: minimum distance from the drone's center of mass to consider a sensor sample a valid point for mavlink transmission. voa_pie_max_dist_m: minimum distance from the drone's center of mass to consider a sensor sample a valid point for mavlink transmission. Note this is and can be different from the individual sensor limits. voa_pie_under_trim_m: VOA discards points in a bubble under the drone with this radius. default 1.0. This helps the drone approach an obstacle, stop ascend, and continue forward smoothly over the top. voa_pie_threshold: Minimum number of points that must appear in and adjacent to a pie segment to consider it populated. Default 3 voa_send_rate_hz: Rate to send VOA mavlink data to autopilot. Independent from the sensor input rates. Default 20 voa_pie_slices: number of slices to divide the 360 degree span around the drone into. default 36 (10 degree slices) voa_pie_bin_depth_m: Radial depth of each bin during the pie binning step. Default 0.15 ############################################################################## Collision Prevention (VOA) Input Configuration Settings for configuring pipe data sources for VOA ############################################################################## voa_inputs: Array of pipes to subscribe to for use with VOA, up to 10 supported Each entry has 4 fields: Fields: enabled: true or false, it's safe to leave this enabled when the pipe is missing type: can be point_cloud, tof, or rangefinder input_pipe: pipe name, e.g. stereo_front_pc, rangefinders, tof, etc frame: frame of reference, should be listed in /etc/modalai/extrinsics/conf max_depth: trim away points with z greater than this min_depth: trim away points with z less than this cell_size: size of 3d voxel grid cells, increase for more downsampling threshold: num points that must exist in or adjacent to a cell to consider it populated, set to 1 to disable threasholding x_fov_deg: FOV of the sensor in the x direction, typically width y_fov_deg: FOV of the sensor in the y direction, typically height conf_cutoff: discard points below this confidence, only applicable to TOF

      */
      {
      "config_file_version": 1,
      "en_localhost_mavlink_udp": false,
      "localhost_udp_port_number": 14551,
      "en_vio": true,
      "vio_pipe": "qvio",
      "secondary_vio_pipe": "ov",
      "vfc_vio_pipe": "ov",
      "en_reset_vio_if_initialized_inverted": true,
      "vio_warmup_s": 3,
      "send_odom_while_failed": true,
      "horizon_cal_tolerance": 0.5,
      "en_hitl": false,
      "offboard_mode": "trajectory",
      "follow_tag_id": 0,
      "figure_eight_move_home": true,
      "robot_radius": 0.300000011920929,
      "collision_sampling_dt": 0.1,
      "max_lookahead_distance": 1,
      "backtrack_seconds": 60,
      "backtrack_rc_chan": 8,
      "backtrack_rc_thresh": 1500,
      "wps_move_home": true,
      "wps_stride": 0,
      "wps_timeout": 0,
      "wps_damp": 1,
      "wps_vfc_mission": true,
      "wps_vfc_mission_loop": false,
      "wps_vfc_mission_to_ramp": 25,
      "wps_vfc_mission_to_kp": 0.10000000149011612,
      "wps_vfc_mission_cruise_speed": 1,
      "en_tag_fixed_frame": false,
      "fixed_frame_filter_len": 5,
      "en_transform_mavlink_pos_setpoints_from_fixed_frame": false,
      "vfc_rate": 100,
      "vfc_rc_chan_min": 980,
      "vfc_rc_chan_max": 2020,
      "vfc_thrust_ch": 3,
      "vfc_roll_ch": 1,
      "vfc_pitch_ch": 2,
      "vfc_yaw_ch": 4,
      "vfc_submode_ch": 6,
      "vfc_alt_mode_rc_min": 0,
      "vfc_alt_mode_rc_max": 0,
      "vfc_flow_mode_rc_min": 0,
      "vfc_flow_mode_rc_max": 0,
      "vfc_hybrid_flow_mode_rc_min": 0,
      "vfc_hybrid_flow_mode_rc_max": 0,
      "vfc_position_mode_rc_min": 0,
      "vfc_position_mode_rc_max": 2100,
      "vfc_traj_mode_rc_min": 0,
      "vfc_traj_mode_rc_max": 0,
      "vfc_yaw_deadband": 30,
      "vfc_vxy_deadband": 50,
      "vfc_vz_deadband": 150,
      "vfc_min_thrust": 0,
      "vfc_max_thrust": 0.800000011920929,
      "vfc_tilt_max": 0.43599998950958252,
      "vfc_yaw_rate_max": 3,
      "vfc_thrust_hover": 0.5,
      "vfc_vz_max": 1,
      "vfc_kp_z": 5.2899999618530273,
      "vfc_kd_z": 5.9800000190734863,
      "vfc_vxy_max": 3,
      "vfc_kp_xy": 0.63999998569488525,
      "vfc_kd_xy": 2.559999942779541,
      "vfc_kp_z_vio": 5.2899999618530273,
      "vfc_kd_z_vio": 5.9800000190734863,
      "vfc_kp_xy_vio": 3.2400000095367432,
      "vfc_kd_xy_vio": 3.9600000381469727,
      "vfc_w_filt_xy_vio": 10,
      "vfc_w_filt_xy_flow": 3,
      "vfc_vel_ff_factor_vio": 0.899999976158142,
      "vfc_xy_acc_limit_vio": 2.5,
      "vfc_max_z_delta": 3,
      "vfc_att_transition_time": 0.5,
      "vfc_stick_move_threshold": 30,
      "vfc_flow_transition_time": 1,
      "vfc_q_min": 10,
      "vfc_points_min": 7,
      "vfc_en_submode_announcement": 1,
      "vfc_disable_fallback": false,
      "vfc_traj_csv": "/data/voxl-vision-hub/traj.csv",
      "en_voa": true,
      "voa_upper_bound_m": -0.15000000596046448,
      "voa_lower_bound_m": 0.15000000596046448,
      "voa_voa_memory_s": 1,
      "voa_max_pc_per_fusion": 100,
      "voa_pie_max_dist_m": 20,
      "voa_pie_min_dist_m": 0.25,
      "voa_pie_under_trim_m": 1,
      "voa_pie_threshold": 3,
      "voa_send_rate_hz": 20,
      "voa_pie_slices": 36,
      "voa_pie_bin_depth_m": 0.15000000596046448,
      "voa_inputs": [{
      "enabled": true,
      "type": "point_cloud",
      "input_pipe": "dfs_point_cloud",
      "frame": "stereo_l",
      "max_depth": 8,
      "min_depth": 0.300000011920929,
      "cell_size": 0.079999998211860657,
      "threshold": 4,
      "x_fov_deg": 68,
      "y_fov_deg": 56,
      "conf_cutoff": 0
      }, {
      "enabled": true,
      "type": "point_cloud",
      "input_pipe": "stereo_front_pc",
      "frame": "stereo_front_l",
      "max_depth": 8,
      "min_depth": 0.300000011920929,
      "cell_size": 0.079999998211860657,
      "threshold": 4,
      "x_fov_deg": 68,
      "y_fov_deg": 56,
      "conf_cutoff": 0
      }, {
      "enabled": true,
      "type": "point_cloud",
      "input_pipe": "stereo_rear_pc",
      "frame": "stereo_rear_l",
      "max_depth": 8,
      "min_depth": 0.300000011920929,
      "cell_size": 0.079999998211860657,
      "threshold": 4,
      "x_fov_deg": 68,
      "y_fov_deg": 56,
      "conf_cutoff": 0
      }, {
      "enabled": true,
      "type": "tof",
      "input_pipe": "tof",
      "frame": "tof",
      "max_depth": 6,
      "min_depth": 0.15000000596046448,
      "cell_size": 0.079999998211860657,
      "threshold": 3,
      "x_fov_deg": 106.5,
      "y_fov_deg": 85.0999984741211,
      "conf_cutoff": 125
      }, {
      "enabled": true,
      "type": "rangefinder",
      "input_pipe": "rangefinders",
      "frame": "body",
      "max_depth": 8,
      "min_depth": 0.300000011920929,
      "cell_size": 0.079999998211860657,
      "threshold": 4,
      "x_fov_deg": 68,
      "y_fov_deg": 56,
      "conf_cutoff": 0
      }]
      }

      /**

      This file contains configuration that's specific to voxl-open-vins-server.

      NOTE: all time variables are measured in seconds

      OpenVins param breakdown:

      do_fej: whether or not to do first estimate Jacobians

      imu_avg: whether or not use imu message averaging

      use_rk4_integration: if we should use Rk4 imu integration.

      cam_to_imu_refinement: whether or not to refine the imu-to-camera pose

      cam_intrins_refinement: whether or not to refine camera intrinsics

      cam_imu_ts_refinement: whether or not to calibrate cam to IMU time offset

      max_clone_size: max clone size of sliding window

      max_slam_features: max number of estimated SLAM features

      max_slam_in_update: max number of SLAM features in a single EKF update

      max_msckf_in_update: max number of MSCKF features used at an image timestep

      Feature Reps can be any of the following:

      0 - GLOBAL_3D

      1 - GLOBAL_FULL_INVERSE_DEPTH

      2 - ANCHORED_3D

      3 - ANCHORED_FULL_INVERSE_DEPTH

      4 - ANCHORED_MSCKF_INVERSE_DEPTH

      5 - ANCHORED_INVERSE_DEPTH_SINGLE

      feat_rep_msckf: (int) what representation our msckf features are in

      feat_rep_slam: (int) what representation our slam features are in

      cam_imu_time_offset: time offset between camera and IMU

      slam_delay: delay that we should wait from init before estimating SLAM features

      gravity_mag: gravity magnitude in the global frame

      init_window_time: amount of time to initialize over

      init_imu_thresh: variance threshold on our accel to be classified as moving

      imu_sigma_w: gyroscope white noise (rad/s/sqrt(hz))

      imu_sigma_wb: gyroscope random walk (rad/s^2/sqrt(hz))

      imu_sigma_a: accelerometer white noise (m/s^2/sqrt(hz))

      imu_sigma_ab: accelerometer random walk (m/s^3/sqrt(hz))

      imu_sigma_w_2: gyroscope white noise covariance

      imu_sigma_wb_2: gyroscope random walk covariance

      imu_sigma_a_2: accelerometer white noise covariance

      imu_sigma_ab_2: accelerometer random walk covariance

      ****_chi2_multiplier: what chi-squared multipler we should apply

      ****_sigma_px: noise sigma for our raw pixel measurements

      ****_sigma_px_sq: covariance for our raw pixel measurements

      use_stereo: if feed_measurement_camera is called with more than one

      image, this determines behavior. if true, they are treated as a stereo

      pair, otherwise treated as binocular system

      if you enable a camera with stereo in the name, this will be set to true

      automatically

      try_zupt: if we should try to use zero velocity update

      zupt_max_velocity: max velocity we will consider to try to do a zupt

      zupt_only_at_beginning: if we should only use the zupt at the very beginning

      zupt_noise_multiplier: multiplier of our zupt measurement IMU noise matrix

      zupt_max_disparity: max disparity we will consider to try to do a zupt

      NOTE: set zupt_max_disparity to 0 for only imu based zupt, and

      zupt_chi2_multipler to 0 for only display based zupt

      num_pts: number of points we should extract and track in each image frame

      fast_threshold: fast extraction threshold

      grid_x: number of column-wise grids to do feature extraction in

      grid_y: number of row-wise grids to do feature extraction in

      min_px_dist: after doing KLT track will remove any features closer than this

      knn_ratio: KNN ration between top two descriptor matchers for good match

      downsample_cams: will half image resolution

      use_nultithreading: if we should use multi-threading for stereo matching

      use_mask: if we should load a mask and use it to reject invalid features
      */
      {
      "en_auto_reset": true,
      "auto_reset_max_velocity": 20,
      "auto_reset_max_v_cov_instant": 0.10000000149011612,
      "auto_reset_max_v_cov": 0.10000000149011612,
      "auto_reset_max_v_cov_timeout_s": 0.5,
      "auto_reset_min_features": 1,
      "auto_reset_min_feature_timeout_s": 3,
      "auto_fallback_timeout_s": 3,
      "auto_fallback_min_v": 0.600000023841858,
      "en_cont_yaw_checks": false,
      "fast_yaw_thresh": 5,
      "fast_yaw_timeout_s": 1.75,
      "do_fej": true,
      "imu_avg": true,
      "use_rk4_integration": true,
      "cam_to_imu_refinement": true,
      "cam_intrins_refinement": true,
      "cam_imu_ts_refinement": true,
      "max_clone_size": 8,
      "max_slam_features": 35,
      "max_slam_in_update": 10,
      "max_msckf_in_update": 10,
      "feat_rep_msckf": 4,
      "feat_rep_slam": 4,
      "cam_imu_time_offset": 0,
      "slam_delay": 1,
      "gravity_mag": 9.80665,
      "init_window_time": 1,
      "init_imu_thresh": 1,
      "imu_sigma_w": 0.00013990944749616306,
      "imu_sigma_wb": 4.1189724174615527e-07,
      "imu_sigma_a": 0.0038947538150776763,
      "imu_sigma_ab": 5.538346201712153e-05,
      "msckf_chi2_multiplier": 1,
      "slam_chi2_multiplier": 40,
      "zupt_chi2_multiplier": 1,
      "refine_features": true,
      "pyr_levels": 6,
      "grid_x": 5,
      "grid_y": 5,
      "msckf_sigma_px": 1,
      "slam_sigma_px": 1.8,
      "zupt_sigma_px": 1,
      "try_zupt": true,
      "zupt_max_velocity": 0.03,
      "zupt_only_at_beginning": true,
      "zupt_noise_multiplier": 1,
      "zupt_max_disparity": 8,
      "init_dyn_use": false,
      "triangulate_1d": false,
      "max_runs": 5,
      "init_lamda": 0.001,
      "max_lamda": 10000000000,
      "min_dx": 1e-06,
      "min_dcost": 1e-06,
      "lam_mult": 10,
      "min_dist": 0.1,
      "max_dist": 60,
      "max_baseline": 40,
      "max_cond_number": 600000,
      "use_mask": false,
      "use_stereo": false,
      "use_baro": false,
      "num_opencv_threads": 4,
      "fast_threshold": 15,
      "histogram_method": 1,
      "knn_ratio": 0.7,
      "takeoff_accel_threshold": 0.5,
      "takeoff_threshold": -0.1,
      "use_stats": false,
      "max_allowable_cep": 1,
      "en_force_init": false,
      "en_force_ned_2_flu": false,
      "en_imu_frame_output": false,
      "track_frequency": 15,
      "publish_frequency": 5,
      "en_vio_always_on": true,
      "en_ext_feature_tracker": false,
      "en_gpu_for_tracking": true,
      "num_features_to_track": 20,
      "raansac_gn": false,
      "raansac_tri": true,
      "en_thermal_enhance": false,
      "en_overlay_landscape": false,
      "thermal_brightness": 1,
      "thermal_brightness_bos": 1
      }

    • Jakub TvrzJ

      Starling 2 Max for indoor

      Starling & Starling 2
      • • • Jakub Tvrz
      5
      0
      Votes
      5
      Posts
      79
      Views

      Jakub TvrzJ

      @Zachary-Lowell-0
      We haven't bought anything yet, but we are deciding what will be the best for our warehouse inventory application. Of course, we considered the ToF option. But you still say: "however, it is not... great" - does that mean that Starling 2 is better for our application? Or does Dual vs Triple camera for Visual Inertial Odometry also have an impact?

    • A

      GPS not connecting to Voxl 2

      Ask your questions right here!
      • • • alan123
      5
      0
      Votes
      5
      Posts
      78
      Views

      Eric KatzfeyE

      @alan123 If it keeps reporting changing to a new UART baudrate then that's an indication that it isn't connecting at all to the GPS unit. You could also put an oscilloscope on the lines to see if you can detect traffic from the GPS and from VOXL 2.

    • N

      Mavlink messages through voxl-logging

      Ask your questions right here!
      • • • ndwe
      5
      0
      Votes
      5
      Posts
      161
      Views

      N

      Ok thanks, I can parse the raw data. I guess I was expecting the csv to contain the data as well

    • N. ChenN

      voxl2 unbrick fails

      Ask your questions right here!
      • • • N. Chen
      4
      0
      Votes
      4
      Posts
      42
      Views

      N. ChenN

      @N-Chen

      Adding the new full log, for completeness, in hope someone from the dev Team might actually look at this and try to figure it out.
      Maybe at least try to get some help from Qualcomm devs if you have no clue?

      {"message": "modal hello\n[MODALAI] test log\n\n[MODALAI] Executing usb_open\n[MODALAI] Completed usb_open\n[MODALAI] Executing sahara_run\nHELLO version: 0x2 compatible: 0x1 max_len: 1024 mode: 0\nREAD64 image: 13 offset: 0x0 length: 0x40\nREAD64 image: 13 offset: 0x40 length: 0x310\nREAD64 image: 13 offset: 0x1000 length: 0x1000\nREAD64 image: 13 offset: 0x2000 length: 0xc48\nREAD64 image: 13 offset: 0x3000 length: 0x1000\nREAD64 image: 13 offset: 0x4000 length: 0x1000\nREAD64 image: 13 offset: 0x5000 length: 0x1000\nREAD64 image: 13 offset: 0x6000 length: 0x1000\nREAD64 image: 13 offset: 0x7000 length: 0x1000\nREAD64 image: 13 offset: 0x8000 length: 0x1000\nREAD64 image: 13 offset: 0x9000 length: 0x1000\nREAD64 image: 13 offset: 0xa000 length: 0x1000\nREAD64 image: 13 offset: 0xb000 length: 0x1000\nREAD64 image: 13 offset: 0xc000 length: 0x1000\nREAD64 image: 13 offset: 0xd000 length: 0x1000\nREAD64 image: 13 offset: 0xe000 length: 0x1000\nREAD64 image: 13 offset: 0xf000 length: 0x1000\nREAD64 image: 13 offset: 0x10000 length: 0x1000\nREAD64 image: 13 offset: 0x11000 length: 0x1000\nREAD64 image: 13 offset: 0x12000 length: 0x1000\nREAD64 image: 13 offset: 0x13000 length: 0x1000\nREAD64 image: 13 offset: 0x14000 length: 0x1000\nREAD64 image: 13 offset: 0x15000 length: 0x1000\nREAD64 image: 13 offset: 0x16000 length: 0x1000\nREAD64 image: 13 offset: 0x17000 length: 0x1000\nREAD64 image: 13 offset: 0x18000 length: 0x1000\nREAD64 image: 13 offset: 0x19000 length: 0x1000\nREAD64 image: 13 offset: 0x1a000 length: 0x1000\nREAD64 image: 13 offset: 0x1b000 length: 0x1000\nREAD64 image: 13 offset: 0x1c000 length: 0x1000\nREAD64 image: 13 offset: 0x1d000 length: 0x1000\nREAD64 image: 13 offset: 0x1e000 length: 0x1000\nREAD64 image: 13 offset: 0x1f000 length: 0x1000\nREAD64 image: 13 offset: 0x20000 length: 0x1000\nREAD64 image: 13 offset: 0x21000 length: 0x1000\nREAD64 image: 13 offset: 0x22000 length: 0x1000\nREAD64 image: 13 offset: 0x23000 length: 0x1000\nREAD64 image: 13 offset: 0x24000 length: 0x1000\nREAD64 image: 13 offset: 0x25000 length: 0x1000\nREAD64 image: 13 offset: 0x26000 length: 0x1000\nREAD64 image: 13 offset: 0x27000 length: 0x1000\nREAD64 image: 13 offset: 0x28000 length: 0x1000\nREAD64 image: 13 offset: 0x29000 length: 0x1000\nREAD64 image: 13 offset: 0x2a000 length: 0x1000\nREAD64 image: 13 offset: 0x2b000 length: 0x1000\nREAD64 image: 13 offset: 0x2c000 length: 0x1000\nREAD64 image: 13 offset: 0x2d000 length: 0x1000\nREAD64 image: 13 offset: 0x2e000 length: 0x1000\nREAD64 image: 13 offset: 0x2f000 length: 0x1000\nREAD64 image: 13 offset: 0x30000 length: 0x1000\nREAD64 image: 13 offset: 0x31000 length: 0x1000\nREAD64 image: 13 offset: 0x32000 length: 0x1000\nREAD64 image: 13 offset: 0x33000 length: 0x1000\nREAD64 image: 13 offset: 0x34000 length: 0x1000\nREAD64 image: 13 offset: 0x35000 length: 0x1000\nREAD64 image: 13 offset: 0x36000 length: 0x1000\nREAD64 image: 13 offset: 0x37000 length: 0x1000\nREAD64 image: 13 offset: 0x38000 length: 0x1000\nREAD64 image: 13 offset: 0x39000 length: 0x1000\nREAD64 image: 13 offset: 0x3a000 length: 0x1000\nREAD64 image: 13 offset: 0x3b000 length: 0x1000\nREAD64 image: 13 offset: 0x3c000 length: 0x1000\nREAD64 image: 13 offset: 0x3d000 length: 0x1000\nREAD64 image: 13 offset: 0x3e000 length: 0x1000\nREAD64 image: 13 offset: 0x3f000 length: 0x1000\nREAD64 image: 13 offset: 0x40000 length: 0x1000\nREAD64 image: 13 offset: 0x41000 length: 0x1000\nREAD64 image: 13 offset: 0x42000 length: 0x1000\nREAD64 image: 13 offset: 0x43000 length: 0x1000\nREAD64 image: 13 offset: 0x44000 length: 0x1000\nREAD64 image: 13 offset: 0x45000 length: 0x1000\nREAD64 image: 13 offset: 0x46000 length: 0x1000\nREAD64 image: 13 offset: 0x47000 length: 0x1000\nREAD64 image: 13 offset: 0x48000 length: 0x1000\nREAD64 image: 13 offset: 0x49000 length: 0x1000\nREAD64 image: 13 offset: 0x4a000 length: 0x1000\nREAD64 image: 13 offset: 0x4b000 length: 0x1000\nREAD64 image: 13 offset: 0x4c000 length: 0x1000\nREAD64 image: 13 offset: 0x4d000 length: 0x1000\nREAD64 image: 13 offset: 0x4e000 length: 0x1000\nREAD64 image: 13 offset: 0x4f000 length: 0x1000\nREAD64 image: 13 offset: 0x50000 length: 0x1000\nREAD64 image: 13 offset: 0x51000 length: 0x1000\nREAD64 image: 13 offset: 0x52000 length: 0x1000\nREAD64 image: 13 offset: 0x53000 length: 0x1000\nREAD64 image: 13 offset: 0x54000 length: 0x1000\nREAD64 image: 13 offset: 0x55000 length: 0x1000\nREAD64 image: 13 offset: 0x56000 length: 0x1000\nREAD64 image: 13 offset: 0x57000 length: 0x1000\nREAD64 image: 13 offset: 0x58000 length: 0x1000\nREAD64 image: 13 offset: 0x59000 length: 0x1000\nREAD64 image: 13 offset: 0x5a000 length: 0x1000\nREAD64 image: 13 offset: 0x5b000 length: 0x1000\nREAD64 image: 13 offset: 0x5c000 length: 0x1000\nREAD64 image: 13 offset: 0x5d000 length: 0x1000\nREAD64 image: 13 offset: 0x5e000 length: 0x1000\nREAD64 image: 13 offset: 0x5f000 length: 0x1000\nREAD64 image: 13 offset: 0x60000 length: 0x1000\nREAD64 image: 13 offset: 0x61000 length: 0x1000\nREAD64 image: 13 offset: 0x62000 length: 0x1000\nREAD64 image: 13 offset: 0x63000 length: 0x1000\nREAD64 image: 13 offset: 0x64000 length: 0x1000\nREAD64 image: 13 offset: 0x65000 length: 0x16c\nREAD64 image: 13 offset: 0x65170 length: 0x1000\nREAD64 image: 13 offset: 0x66170 length: 0x1000\nREAD64 image: 13 offset: 0x67170 length: 0x1000\nREAD64 image: 13 offset: 0x68170 length: 0x1000\nREAD64 image: 13 offset: 0x69170 length: 0x1000\nREAD64 image: 13 offset: 0x6a170 length: 0x1000\nREAD64 image: 13 offset: 0x6b170 length: 0x1000\nREAD64 image: 13 offset: 0x6c170 length: 0x1000\nREAD64 image: 13 offset: 0x6d170 length: 0x1000\nREAD64 image: 13 offset: 0x6e170 length: 0x1000\nREAD64 image: 13 offset: 0x6f170 length: 0x1000\nREAD64 image: 13 offset: 0x70170 length: 0x1000\nREAD64 image: 13 offset: 0x71170 length: 0x6a0\nREAD64 image: 13 offset: 0x71810 length: 0x1000\nREAD64 image: 13 offset: 0x72810 length: 0x1000\nREAD64 image: 13 offset: 0x73810 length: 0x1000\nREAD64 image: 13 offset: 0x74810 length: 0x1000\nREAD64 image: 13 offset: 0x75810 length: 0x1000\nREAD64 image: 13 offset: 0x76810 length: 0x1000\nREAD64 image: 13 offset: 0x77810 length: 0x1000\nREAD64 image: 13 offset: 0x78810 length: 0x1000\nREAD64 image: 13 offset: 0x79810 length: 0x1000\nREAD64 image: 13 offset: 0x7a810 length: 0x1000\nREAD64 image: 13 offset: 0x7b810 length: 0x1000\nREAD64 image: 13 offset: 0x7c810 length: 0x1000\nREAD64 image: 13 offset: 0x7d810 length: 0x1000\nREAD64 image: 13 offset: 0x7e810 length: 0x1000\nREAD64 image: 13 offset: 0x7f810 length: 0x1000\nREAD64 image: 13 offset: 0x80810 length: 0x1000\nREAD64 image: 13 offset: 0x81810 length: 0xcc\nREAD64 image: 13 offset: 0x818e0 length: 0x84\nREAD64 image: 13 offset: 0x81964 length: 0x1000\nREAD64 image: 13 offset: 0x82964 length: 0x1000\nREAD64 image: 13 offset: 0x83964 length: 0x1000\nREAD64 image: 13 offset: 0x84964 length: 0x1000\nREAD64 image: 13 offset: 0x85964 length: 0x1000\nREAD64 image: 13 offset: 0x86964 length: 0x1000\nREAD64 image: 13 offset: 0x87964 length: 0x1000\nREAD64 image: 13 offset: 0x88964 length: 0x134\nREAD64 image: 13 offset: 0x88a98 length: 0x1000\nREAD64 image: 13 offset: 0x89a98 length: 0x1000\nREAD64 image: 13 offset: 0x8aa98 length: 0x1000\nREAD64 image: 13 offset: 0x8ba98 length: 0x1000\nREAD64 image: 13 offset: 0x8ca98 length: 0x1000\nREAD64 image: 13 offset: 0x8da98 length: 0x1000\nREAD64 image: 13 offset: 0x8ea98 length: 0x3f0\nREAD64 image: 13 offset: 0x8ee88 length: 0x1000\nREAD64 image: 13 offset: 0x8fe88 length: 0x1000\nREAD64 image: 13 offset: 0x90e88 length: 0x1000\nREAD64 image: 13 offset: 0x91e88 length: 0x1000\nREAD64 image: 13 offset: 0x92e88 length: 0x1000\nREAD64 image: 13 offset: 0x93e88 length: 0x1000\nREAD64 image: 13 offset: 0x94e88 length: 0x3f0\nREAD64 image: 13 offset: 0x95278 length: 0x1000\nREAD64 image: 13 offset: 0x96278 length: 0x1000\nREAD64 image: 13 offset: 0x97278 length: 0x1000\nREAD64 image: 13 offset: 0x98278 length: 0x1000\nREAD64 image: 13 offset: 0x99278 length: 0x1000\nREAD64 image: 13 offset: 0x9a278 length: 0x1000\nREAD64 image: 13 offset: 0x9b278 length: 0x1000\nREAD64 image: 13 offset: 0x9c278 length: 0x1000\nREAD64 image: 13 offset: 0x9d278 length: 0x1000\nREAD64 image: 13 offset: 0x9e278 length: 0x1000\nREAD64 image: 13 offset: 0x9f278 length: 0x1000\nREAD64 image: 13 offset: 0xa0278 length: 0x1000\nREAD64 image: 13 offset: 0xa1278 length: 0x1000\nREAD64 image: 13 offset: 0xa2278 length: 0x1000\nREAD64 image: 13 offset: 0xa3278 length: 0x1000\nREAD64 image: 13 offset: 0xa4278 length: 0x1000\nREAD64 image: 13 offset: 0xa5278 length: 0x1000\nREAD64 image: 13 offset: 0xa6278 length: 0x1000\nREAD64 image: 13 offset: 0xa7278 length: 0x1000\nREAD64 image: 13 offset: 0xa8278 length: 0x1000\nREAD64 image: 13 offset: 0xa9278 length: 0x1000\nREAD64 image: 13 offset: 0xaa278 length: 0x1000\nEND OF IMAGE image: 13 status: 0\nDONE status: 1\n[MODALAI] Completed sahara_run\n[MODALAI] Executing firehose_run\n[MODALAI] Executing firehose_read\nLOG: INFO: Binary build date: Aug 17 2021 @ 23:37:37\nLOG: INFO: Binary build date: Aug 17 2021 @ 23:37:37 \nLOG: INFO: Chip serial num: 2337757136 (0x8b5757d0)\nLOG: INFO: Supported Functions (15):\nLOG: INFO: program\nLOG: INFO: read\nLOG: INFO: nop\nLOG: INFO: patch\nLOG: INFO: configure\nLOG: INFO: setbootablestoragedrive\nLOG: INFO: erase\nLOG: INFO: power\nLOG: INFO: firmwarewrite\nLOG: INFO: getstorageinfo\nLOG: INFO: benchmark\nLOG: INFO: emmc\nLOG: INFO: ufs\nLOG: INFO: fixgpt\nLOG: INFO: getsha256digest\nLOG: INFO: End of supported functions 15\n[MODALAI] Completed firehose_read\n[MODALAI] Executing ufs_need_provisioning\n\n\n[MODALAI] ==== Executing firehose configure ====\nLOG: INFO: Calling handler for configure\nLOG: INFO: Storage type set to value UFS\nLOG: DEBUG: Calling usb_al_bulk_set_zlp_mode(TRUE), zlp is not set to 0\n\n\n[MODALAI] ==== Completed firehose configure ====\n\n\n[MODALAI] ==== Executing firehose erase ====\n\n\n[MODALAI] ==== Completed firehose erase ====\n\n\n[MODALAI] ==== Executing firehose program ====\nLOG: INFO: Calling handler for program\nLOG: DEBUG: Can't decode attribute slot with value \nLOG: ERROR: Failed to open the UFS Device slot 0 partition 0\nLOG: ERROR: Failed to open the device:3 slot:0 partition:0 error:0\nLOG: ERROR: OPEN handle NULL and no error, weird 344489460\nLOG: ERROR: Failed to open device, type:UFS, slot:0, lun:0 error:3\nqdl: firehose operation timed out\n[PROGRAM] failed to setup programming\n\nFlash flat build failed\n"}

    • J

      Softap issues

      VOXL 2 Mini
      • • • jeremyrbrown5
      4
      0
      Votes
      4
      Posts
      70
      Views

      Alex KushleyevA

      @jeremyrbrown5 , it is possible that overheating VOXL2 cpu could be causing your SoftAP performance slowdown. You can run voxl-inspect-cpu which is a tool that will show you cpu usage, temps and other stats. If the CPU cores reach 95 deg C, the thermal management will slow down the cpu clock, so all the processes will run slower, including SoftAP.

      Alex

    • S

      Ribbon connectors for ModalAI cameras to Board

      Support Request Format for Best Results
      • • • snowt33nshi
      4
      0
      Votes
      4
      Posts
      273
      Views

      VinnyV

      Hi @snowt33nshi
      All of our ucoax based image sensors use the same cables.
      Be careful mating adapters to sensors as they are not all compatible as noted here:
      https://docs.modalai.com/micro-coax-user-guide/
      Hope this helps.

    • Dmytro StolbovyiD

      Quectel RM530-GL 5G-Modem doesn't work

      Support Request Format for Best Results
      • • • Dmytro Stolbovyi
      4
      0
      Votes
      4
      Posts
      298
      Views

      Dmytro StolbovyiD

      @Dmytro-Stolbovyi
      voxl2:~$ usb-devices |less [1/1]

      T: Bus=01 Lev=00 Prnt=00 Port=00 Cnt=00 Dev#= 1 Spd=480 MxCh= 1
      😧 Ver= 2.00 Cls=09(hub ) Sub=00 Prot=01 MxPS=64 #Cfgs= 1
      P: Vendor=1d6b ProdID=0002 Rev=04.19
      S: Manufacturer=Linux 4.19.125 xhci-hcd
      S: Product=xHCI Host Controller
      S: SerialNumber=xhci-hcd.0.auto
      šŸ˜„ #Ifs= 1 Cfg#= 1 Atr=e0 MxPwr=0mA
      I: If#= 0 Alt= 0 #EPs= 1 Cls=09(hub ) Sub=00 Prot=00 Driver=hub

      T: Bus=01 Lev=01 Prnt=01 Port=00 Cnt=01 Dev#= 2 Spd=480 MxCh= 5
      😧 Ver= 2.10 Cls=09(hub ) Sub=00 Prot=02 MxPS=64 #Cfgs= 1
      P: Vendor=0424 ProdID=2744 Rev=02.21
      S: Manufacturer=Microchip Tech
      S: Product=USB2744
      šŸ˜„ #Ifs= 1 Cfg#= 1 Atr=e0 MxPwr=0mA
      I: If#= 0 Alt= 1 #EPs= 1 Cls=09(hub ) Sub=00 Prot=02 Driver=hub

      T: Bus=01 Lev=02 Prnt=02 Port=03 Cnt=01 Dev#= 3 Spd=480 MxCh= 0
      😧 Ver= 2.10 Cls=00(>ifc ) Sub=00 Prot=00 MxPS=64 #Cfgs= 1
      P: Vendor=0bda ProdID=0811 Rev=02.00
      S: Manufacturer=Realtek
      S: Product=802.11ac WLAN Adapter
      S: SerialNumber=00e04c000001
      šŸ˜„ #Ifs= 1 Cfg#= 1 Atr=e0 MxPwr=500mA
      I: If#= 0 Alt= 0 #EPs= 6 Cls=ff(vend.) Sub=ff Prot=ff Driver=rtl88XXau

      T: Bus=01 Lev=02 Prnt=02 Port=04 Cnt=02 Dev#= 4 Spd=480 MxCh= 0
      😧 Ver= 2.01 Cls=00(>ifc ) Sub=00 Prot=00 MxPS=64 #Cfgs= 1
      P: Vendor=0424 ProdID=2740 Rev=02.00
      S: Manufacturer=Microchip Tech
      S: Product=Hub Controller
      šŸ˜„ #Ifs= 1 Cfg#= 1 Atr=c0 MxPwr=0mA
      I: If#= 0 Alt= 0 #EPs= 0 Cls=ff(vend.) Sub=ff Prot=ff Driver=(none)

      T: Bus=02 Lev=00 Prnt=00 Port=00 Cnt=00 Dev#= 1 Spd=10000 MxCh= 1
      😧 Ver= 3.10 Cls=09(hub ) Sub=00 Prot=03 MxPS= 9 #Cfgs= 1
      P: Vendor=1d6b ProdID=0003 Rev=04.19
      S: Manufacturer=Linux 4.19.125 xhci-hcd
      S: Product=xHCI Host Controller
      S: SerialNumber=xhci-hcd.0.auto
      šŸ˜„ #Ifs= 1 Cfg#= 1 Atr=e0 MxPwr=0mA
      I: If#= 0 Alt= 0 #EPs= 1 Cls=09(hub ) Sub=00 Prot=00 Driver=hub

      T: Bus=02 Lev=01 Prnt=01 Port=00 Cnt=01 Dev#= 2 Spd=5000 MxCh= 4
      😧 Ver= 3.20 Cls=09(hub ) Sub=00 Prot=03 MxPS= 9 #Cfgs= 1
      P: Vendor=0424 ProdID=5744 Rev=02.21
      S: Manufacturer=Microchip Tech
      S: Product=USB5744
      šŸ˜„ #Ifs= 1 Cfg#= 1 Atr=e0 MxPwr=0mA
      I: If#= 0 Alt= 0 #EPs= 1 Cls=09(hub ) Sub=00 Prot=00 Driver=hub

      T: Bus=02 Lev=02 Prnt=02 Port=00 Cnt=01 Dev#= 3 Spd=5000 MxCh= 0
      😧 Ver= 3.20 Cls=00(>ifc ) Sub=00 Prot=00 MxPS= 9 #Cfgs= 1
      P: Vendor=2c7c ProdID=0801 Rev=05.04
      S: Manufacturer=Quectel
      S: Product=RM530N-GL
      S: SerialNumber=4543cb18
      šŸ˜„ #Ifs= 5 Cfg#= 1 Atr=a0 MxPwr=896mA
      I: If#= 0 Alt= 0 #EPs= 2 Cls=ff(vend.) Sub=ff Prot=30 Driver=(none)
      I: If#= 1 Alt= 0 #EPs= 3 Cls=ff(vend.) Sub=00 Prot=40 Driver=(none)
      I: If#= 2 Alt= 0 #EPs= 3 Cls=ff(vend.) Sub=00 Prot=00 Driver=(none)
      I: If#= 3 Alt= 0 #EPs= 3 Cls=ff(vend.) Sub=00 Prot=00 Driver=(none)
      I: If#= 4 Alt= 0 #EPs= 3 Cls=ff(vend.) Sub=ff Prot=ff Driver=(none)

    • J

      Issues with custom Yolov8

      VOXL 2 Mini
      • yolov8 deep learning voxl 2 mini custom models • • jeremyrbrown5
      3
      0
      Votes
      3
      Posts
      35
      Views

      J

      @Zachary-Lowell-0 we are using the yolo predict function inside the voxl-docker. I didn't know about voxl-inspect-detections, so I'll try that.