Skip to content

VOXL 2

593 Topics 3.3k Posts

VOXL 2 Support Forum

  • VOXL2 TOF Camera not working

    2
    0 Votes
    2 Posts
    361 Views
    Viktor GalV
    @Thomas-Müller interesting. i'm just experience the very same thing. have you by chance figured out what was the issue?
  • VOXL2 and PCIe WiFi module

    1
    0 Votes
    1 Posts
    286 Views
    No one has replied
  • Issues with M9N GPS and Ardupilot

    15
    0 Votes
    15 Posts
    3k Views
    Eric KatzfeyE
    @cguzikowski Yes, very odd. Hopefully it just works now
  • This topic is deleted!

    1
    5
    0 Votes
    1 Posts
    10 Views
    No one has replied
  • Issue initializing three i2c devices on voxl-px4

    7
    0 Votes
    7 Posts
    790 Views
    Eric KatzfeyE
    @Riccardo Okay, thanks for the confirmation. I'll look into increasing that limit to 16 or so.
  • VOXL2 Servos Not Rotating

    2
    1
    0 Votes
    2 Posts
    664 Views
    VinnyV
    HI @teddy-zaremba That is the correct approach. We have no mentions of direct servo support from VOXL 2 or any HW. All servos, just like an ESC, need power from an independent battery source not from VOXL 2. Thanks for clarifying here on the Forum.
  • CPU Temperature Logging

    voxl2 cpu sensors
    5
    0 Votes
    5 Posts
    2k Views
    K
    @tom Is there a way to voxl-logger the outputs from voxl-inspect-cpu and play it so that I can see the graphs on voxl-portal? Currently I can only voxl-inspect-cpu or view the graphs in real-time on voxl-portal, but I would like to record the data when the drone flies and review it post-flight
  • GPIO numbering

    2
    0 Votes
    2 Posts
    425 Views
    Alex KushleyevA
    @tonygurney , please see the doc page regarding GPIO and the offset: https://docs.modalai.com/voxl2-linux-user-guide/#gpios specifically, Starting SDK 1.2.X/System Image 1.7.3, GPIOs are exported by default in /sys/class/gpio, the GPIO have an offest of 1100 (e.g. GPIO 84 = 1184).
  • ArducamIMX519 Payload for Sentinel and VOXL2

    2
    0 Votes
    2 Posts
    412 Views
    Alex KushleyevA
    @Rajamani , Yes you can connect a raspberry pi to VOXL2 via a USB C cable (using the USB C port next to the VOXL2 power connector). The RPI will be the "host" in this case, and you can use ADB from RPI to access voxl2 (just like connecting VOXL2 to a laptop or a desktop computer). Please make sure to use the USB 3.0 port on the raspberry pi and test the cable / usb port before doing any further design plans (just to make sure it works for you). Alex
  • VOXL ArduPilot not starting up

    1
    2
    0 Votes
    1 Posts
    300 Views
    No one has replied
  • temperature issue with voxl 2

    3
    0 Votes
    3 Posts
    430 Views
    Alex KushleyevA
    @Jetson-Nano , 60C is not an issue for embedded devices (throttling limit is around 95C, at which point the CPU will start reducing frequency to avoid overheating). However, you mention that the temperature can reach 90C. Please note that the camera server itself most likely is not the main cause of the CPU temperature, but the consumers of the image frames may be using significant CPU. You should identify the main causes of temperature rise by looking at output of top to see rough cpu usage of each process, but also try disabling mapper or openvins or hires image processing (if any). Also, without any cooling, it is not a surprise that VOXL2 could overheat if its cpu / gpu load is very high. The SoC cannot run without cooling at full power. Airflow during flight usually provides significant cooling and you can manage the system load when not in flight or add cooling for stationary use cases (lack of air flow from propellers), Alex
  • Voxl2 Use J10 as I2C slave

    2
    0 Votes
    2 Posts
    407 Views
    Eric KatzfeyE
    @KnightHawk What are you trying to do? Why would you want to communicate with your FC via i2c?
  • VOXL2 troubleshooting

    14
    0 Votes
    14 Posts
    2k Views
    tomT
    @claw That is definitely not the expected behavior, I recommend going through the RMA process
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    2 Views
    No one has replied
  • How to multicast with Voxl Streamer

    3
    0 Votes
    3 Posts
    528 Views
    Eric KatzfeyE
    @v_v_ramarao voxl-streamer does not support multicast
  • Voxl2 reboot due to what it seems a power limitation

    15
    0 Votes
    15 Posts
    3k Views
    VinnyV
    Hi @voxltester Apologies you are having issues with the power cable. We have expressed in several forum posts that care must be employed when removing and inserting any power cables to not tug on the cables themselves, but rather the large shroud/connector housing. Pulling on any cable repeatedly will dramatically reduce it's service life as it results in frayed conductors at the pin crimp contacts. This is not an MCBL-00001 issue, but all cables in all electronics not just from ModalAI. There are no plans to change this solution as it has been tried and true for over a decade. Some of my power cables are nearing 13 years old and every one can last that long if handled properly. If needed, I can try to search through some forum posts where I think we have a picture showing the recommended methods of grabbing onto the plastic shroud instead of the cable conductors themselves. Our team is trained on this method as well. Hope this helps.
  • wlan0 does not exist with wifi add on

    4
    0 Votes
    4 Posts
    556 Views
    tomT
    @swickliff Interesting, have you had success with this hardware setup before?
  • APPS IMU stopped producing data mid flight

    1
    0 Votes
    1 Posts
    337 Views
    No one has replied
  • Camera access

    2
    0 Votes
    2 Posts
    397 Views
    Eric KatzfeyE
    @kestrelsystemsbp Take a look at Python MPA interface: https://gitlab.com/voxl-public/voxl-sdk/core-libs/libmodal-pipe/-/tree/dev/python?ref_type=heads
  • downloading the voxl-mapper service log file

    5
    0 Votes
    5 Posts
    787 Views
    Meytal LempelM
    @Eric-Katzfey Thank you! I now use journalctl and write to a file in a logger service, for example: voxl-mapper-logger.service [Unit] Description=Logs voxl-mapper log output to file After=voxl-wait-for-fs.service network.target network-online.target Requires=voxl-wait-for-fs.service network.target network-online.target voxl-mapper.service [Service] Type=simple ExecStart=/bin/bash -c "sleep 45 && journalctl -f -u voxl-mapper.service >> /data/logs/voxl_mapper.log" StartLimitInterval=0 Restart=always RestartSec=2s [Install] WantedBy=multi-user.target