ModalAI Forum
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login
    1. Home
    2. Dong Liu
    • Profile
    • Following 0
    • Followers 0
    • Topics 12
    • Posts 43
    • Best 1
    • Controversial 0
    • Groups 0

    Dong Liu

    @Dong Liu

    1
    Reputation
    11
    Profile views
    43
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    Dong Liu Unfollow Follow

    Best posts made by Dong Liu

    • RE: Voxl_mpa_to_ros

      @gauravshukla914 I also noticed it. Somehow on the drone's ROS indigo system. roslaunch voxl_mpa_to_ros voxl_map_to_ros.launch won't honor the existing ROS_MASTER_URI, it always source ROS_MASTER_URI etc from my_ros_env.sh

      posted in Ask your questions right here!
      Dong LiuD
      Dong Liu

    Latest posts made by Dong Liu

    • RE: DSP - unable to load unsigned PD

      @paynej

      Hi, I know this is very old topic. Did you manage to find a solution (or reason) yet?

      posted in Ask your questions right here!
      Dong LiuD
      Dong Liu
    • RE: Can't Flash VOXL2 (Battery Capacity is Very Low)

      After multiple tries, the fastboot start to flash system images. But it got stuck. We then power cycle again, this time everything worked. We got the new nightly build flashed.

      Thanks!

      posted in VOXL 2
      Dong LiuD
      Dong Liu
    • RE: Can't Flash VOXL2 (Battery Capacity is Very Low)

      Looks like we need to press some physical button. I'll ask my coworker to open the heat sink again 🙂

      The system is just recovered by using qdl, voxl-version shows

      root@qrb5165-rb5:/# voxl-version 
      --------------------------------------------------------------------------------
      system-image: 1.1.2-M0054-14.1a-FLAT-V3
      kernel:       #1 SMP PREEMPT Wed Feb 9 22:21:24 UTC 2022 4.19.125
      --------------------------------------------------------------------------------
      hw version:   865
      --------------------------------------------------------------------------------
      voxl-suite:   
      --------------------------------------------------------------------------------
      
      

      I tried to flash it with voxl2_platform_nightly_20230521

      Thanks!

      posted in VOXL 2
      Dong LiuD
      Dong Liu
    • RE: Can't Flash VOXL2 (Battery Capacity is Very Low)

      @Dong-Liu Even I power on the voxl2 with usb cable connected, I get the same error.

      posted in VOXL 2
      Dong LiuD
      Dong Liu
    • Can't Flash VOXL2 (Battery Capacity is Very Low)

      Re: Can't Flash VOXL2 (Battery Capacity is Very Low)

      The same issue with the reference post.

      I followed the instruction that power on the voxl2, wait for 10 seconds, connect the USB cable. But I got

      [WARNING] Failed to reboot to fastboot
      Try power cycling VOXL while holding the fastboot button
      

      We're running the voxl2 with a power adapter, no battery is used.

      posted in VOXL 2
      Dong LiuD
      Dong Liu
    • RE: mpa_to_ros publish stereo left and right image in different timestamp

      Just tried to calibrated the stereo camera using ROS camera calibrator. Had to run the fixed voxl-mpa-to-ros. Because the ROS calibrator expects left and right to be exactly synchronized.

      posted in Ask your questions right here!
      Dong LiuD
      Dong Liu
    • RE: mpa_to_ros publish stereo left and right image in different timestamp

      MR submitted.

      posted in Ask your questions right here!
      Dong LiuD
      Dong Liu
    • RE: mpa_to_ros publish stereo left and right image in different timestamp

      will do soon.

      posted in Ask your questions right here!
      Dong LiuD
      Dong Liu
    • mpa_to_ros publish stereo left and right image in different timestamp

      Here is the code,

      imgL.header.stamp = (_clock_monotonic_to_ros_time(meta.timestamp_ns));
      imgL.width    = meta.width;
      imgL.height   = meta.height;
      imgL.step     = meta.width;
      imgL.encoding = GetRosFormat(meta.format);
      
      imgR.header.stamp = (_clock_monotonic_to_ros_time(meta.timestamp_ns));
      imgR.width    = meta.width;
      imgR.height   = meta.height;
      imgR.step     = meta.width;
      imgR.encoding = GetRosFormat(meta.format);
      

      They are all from meta.timestamp_ns, but _clock_monotonic_to_ros is using the current time, so the final times are slight different.

      I think it should be
      imgR.header.stamp = imgL.header.stamp

      posted in Ask your questions right here!
      Dong LiuD
      Dong Liu
    • RE: voxl-camer-server's hires snapshot produce huge files

      I extract the findJpegSize function, add to voxl-camera-server. Now it will produce the correct size snapshot.

      posted in Ask your questions right here!
      Dong LiuD
      Dong Liu