Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
Collapse
Brand Logo

ModalAI Forum

  1. ModalAI Support Forum
  2. Software Development
  3. VOXL SDK
  4. RPM control

RPM control

Scheduled Pinned Locked Moved VOXL SDK
23 Posts 5 Posters 6.3k Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • N Offline
    N Offline
    nbobbili
    wrote on last edited by
    #8

    Alex,
    Regarding the ring buffer issue...
    We checked our code and the only two functions we use are voxl_uart_init and voxl_uart_write, which from the voxl_serial.py script, we should be find to use.
    For the voxl_uart_write function, we are currently passing (SLPI_QUP2_UART, tx_buf, packet_length) where
    uint8_t tx_buf[128];
    int32_t packet_length = qc_esc_create_rpm_packet4_fb(rpm0, rpm1, rpm2, rpm3, led, led, led, led, cntr, tx_buf, sizeof(tx_buf));
    Aside from this, we are not interacting with the ESC at all, so the error must be coming from one of these functions being called.
    Do you have any ideas for us by chance?
    Thank you for your insights and time!

    Alex KushleyevA 1 Reply Last reply
    0
    • N nbobbili

      Alex,
      Regarding the ring buffer issue...
      We checked our code and the only two functions we use are voxl_uart_init and voxl_uart_write, which from the voxl_serial.py script, we should be find to use.
      For the voxl_uart_write function, we are currently passing (SLPI_QUP2_UART, tx_buf, packet_length) where
      uint8_t tx_buf[128];
      int32_t packet_length = qc_esc_create_rpm_packet4_fb(rpm0, rpm1, rpm2, rpm3, led, led, led, led, cntr, tx_buf, sizeof(tx_buf));
      Aside from this, we are not interacting with the ESC at all, so the error must be coming from one of these functions being called.
      Do you have any ideas for us by chance?
      Thank you for your insights and time!

      Alex KushleyevA Offline
      Alex KushleyevA Offline
      Alex Kushleyev
      ModalAI Team
      wrote on last edited by Alex Kushleyev
      #9

      @nbobbili , when you send rpm control packet, this also requests feedback from ESCs, so each ESC will send some data back to VOXL2 (one ESC id at a time).

      If you do not read from the same serial port that you are writing to, the data coming back from ESCs will fill the RX buffer (in slpi-cpu bridge) and you will get this message of ring buffer full.

      If you do not wish to parse the ESC feedback data, just read and discard all bytes right after you write the RPM commands.

      Alex

      J 1 Reply Last reply
      0
      • wilkinsafW Offline
        wilkinsafW Offline
        wilkinsaf
        ModalAI Team
        wrote on last edited by
        #10

        We were seeing the same issue, but for a different reason.. this is how we fixed it

        Link Preview Image
        Android recording - 28 Mar 2024

        Use Loom to record quick videos of your screen and cam. Explain anything clearly and easily – and skip the meeting. An essential tool for hybrid workplaces.

        favicon

        Loom (www.loom.com)

        We essentially deleted the ips for primary_gcs and secondary_gcs in voxl-mavlink-server

        wilkinsafW 1 Reply Last reply
        0
        • wilkinsafW wilkinsaf

          We were seeing the same issue, but for a different reason.. this is how we fixed it

          Link Preview Image
          Android recording - 28 Mar 2024

          Use Loom to record quick videos of your screen and cam. Explain anything clearly and easily – and skip the meeting. An essential tool for hybrid workplaces.

          favicon

          Loom (www.loom.com)

          We essentially deleted the ips for primary_gcs and secondary_gcs in voxl-mavlink-server

          wilkinsafW Offline
          wilkinsafW Offline
          wilkinsaf
          ModalAI Team
          wrote on last edited by
          #11

          @wilkinsaf For context we are connected to an external flight controller over UART DSP

          1 Reply Last reply
          0
          • Alex KushleyevA Alex Kushleyev

            @nbobbili , when you send rpm control packet, this also requests feedback from ESCs, so each ESC will send some data back to VOXL2 (one ESC id at a time).

            If you do not read from the same serial port that you are writing to, the data coming back from ESCs will fill the RX buffer (in slpi-cpu bridge) and you will get this message of ring buffer full.

            If you do not wish to parse the ESC feedback data, just read and discard all bytes right after you write the RPM commands.

            Alex

            J Offline
            J Offline
            jenyeom
            Contributor
            wrote on last edited by
            #12

            @Alex-Kushleyev going back to getting RPM control working on ROS2 and SDK 1.1+...

            Our current findings:
            ROS2 Humble with SDK 0.8 and the old library (installed with voxl-slpi-uart-bridge_1.0.0-202303130921_arm64.deb) is working well without any issues.
            ROS2 Humble with SDK 1.1+ and the new library libvoxl_io.so and new interface (uart.h) has high frequency oscillations when flying the drone.

            We've tried many things to incldue:

            1. Updating the crc16.h/c and qc_esc_packet.h/c and other dependent code from:
              [https://github.com/modalai/px4-firmware/blob/main/src/drivers/actuators/voxl_esc]
            2. Exhaustive gain tuing 😞
            3. Delay time analysis within our control stack
            4. Experiments with different baudrates

            None of which solved the issue or clarified why we are currently having this issue on SDK 1.1+ with the new SLPI library.

            Of note, we are using the functions:
            voxl_uart_init(SLPI_QUP2_UART, 250000, 0.1, 0, 1, 0); to initialize the UART,
            int32_t packet_length = qc_esc_create_rpm_packet4_fb(rpm0, rpm1, rpm2, rpm3, led, led, led, led, cntr, tx_buf, sizeof(tx_buf), 0); to create packets,
            and int ret2 = voxl_uart_write(SLPI_QUP2_UART, tx_buf, packet_length); to actually send the rpms.
            Additionally we are using voxl_uart_flush(SLPI_QUP2_UART); because we were having issues with the ring buffer overflow.
            We are running everything in ROS2 at 500Hz.

            Do you have any thoughts on this?
            Any ideas on what we might try next?
            Thanks in advance.

            Alex KushleyevA 1 Reply Last reply
            0
            • J jenyeom

              @Alex-Kushleyev going back to getting RPM control working on ROS2 and SDK 1.1+...

              Our current findings:
              ROS2 Humble with SDK 0.8 and the old library (installed with voxl-slpi-uart-bridge_1.0.0-202303130921_arm64.deb) is working well without any issues.
              ROS2 Humble with SDK 1.1+ and the new library libvoxl_io.so and new interface (uart.h) has high frequency oscillations when flying the drone.

              We've tried many things to incldue:

              1. Updating the crc16.h/c and qc_esc_packet.h/c and other dependent code from:
                [https://github.com/modalai/px4-firmware/blob/main/src/drivers/actuators/voxl_esc]
              2. Exhaustive gain tuing 😞
              3. Delay time analysis within our control stack
              4. Experiments with different baudrates

              None of which solved the issue or clarified why we are currently having this issue on SDK 1.1+ with the new SLPI library.

              Of note, we are using the functions:
              voxl_uart_init(SLPI_QUP2_UART, 250000, 0.1, 0, 1, 0); to initialize the UART,
              int32_t packet_length = qc_esc_create_rpm_packet4_fb(rpm0, rpm1, rpm2, rpm3, led, led, led, led, cntr, tx_buf, sizeof(tx_buf), 0); to create packets,
              and int ret2 = voxl_uart_write(SLPI_QUP2_UART, tx_buf, packet_length); to actually send the rpms.
              Additionally we are using voxl_uart_flush(SLPI_QUP2_UART); because we were having issues with the ring buffer overflow.
              We are running everything in ROS2 at 500Hz.

              Do you have any thoughts on this?
              Any ideas on what we might try next?
              Thanks in advance.

              Alex KushleyevA Offline
              Alex KushleyevA Offline
              Alex Kushleyev
              ModalAI Team
              wrote on last edited by
              #13

              @jenyeom,

              I would recommend somehow logging the timestamps right before and after sensing our the uart packet to the uart bridge. This will give you two things: you can analyze how regular the rpm updates are coming from ROS, and if for some reason the write call takes too long. Also check how long uart flush is taking!

              If you dont want any esc to send feedback, you can set the esc feedback id to -1, i believe, then you dont need to do uart flush. It should be documented in the packet api source code

              J 1 Reply Last reply
              0
              • Alex KushleyevA Alex Kushleyev

                @jenyeom,

                I would recommend somehow logging the timestamps right before and after sensing our the uart packet to the uart bridge. This will give you two things: you can analyze how regular the rpm updates are coming from ROS, and if for some reason the write call takes too long. Also check how long uart flush is taking!

                If you dont want any esc to send feedback, you can set the esc feedback id to -1, i believe, then you dont need to do uart flush. It should be documented in the packet api source code

                J Offline
                J Offline
                jenyeom
                Contributor
                wrote on last edited by
                #14

                @Alex-Kushleyev thanks for the suggestions!
                I did some testing logging timestamps today and here is what I've found.

                There was definitely some additional delay when using the voxl_uart_read_bytes function, so currently I am exclusively running the qc_esc_create_rpm_packet4_fb and voxl_uart_write functions.
                With those two functions, we are still experiencing high frequency oscillations.
                Here is what the time differences (dt) look like when sending rpms to the esc:
                Screenshot from 2024-04-04 14-41-49.png
                The dt goes up to greater than 0.003 sec every now and then, which is why I think we have oscillation issues as we trying to send rpm commands at 500 Hz.

                Are these 'spikes' in time something you would expect?
                We are not currently running any other functions in the rpm callback, only the creation of the packets and writing to the uart.
                Thanks for your help, Alex.

                Alex KushleyevA 1 Reply Last reply
                0
                • J jenyeom

                  @Alex-Kushleyev thanks for the suggestions!
                  I did some testing logging timestamps today and here is what I've found.

                  There was definitely some additional delay when using the voxl_uart_read_bytes function, so currently I am exclusively running the qc_esc_create_rpm_packet4_fb and voxl_uart_write functions.
                  With those two functions, we are still experiencing high frequency oscillations.
                  Here is what the time differences (dt) look like when sending rpms to the esc:
                  Screenshot from 2024-04-04 14-41-49.png
                  The dt goes up to greater than 0.003 sec every now and then, which is why I think we have oscillation issues as we trying to send rpm commands at 500 Hz.

                  Are these 'spikes' in time something you would expect?
                  We are not currently running any other functions in the rpm callback, only the creation of the packets and writing to the uart.
                  Thanks for your help, Alex.

                  Alex KushleyevA Offline
                  Alex KushleyevA Offline
                  Alex Kushleyev
                  ModalAI Team
                  wrote on last edited by
                  #15

                  @jenyeom , you are running your application on the CPU, so there are no real time guarantees. You should set the cpu into perf mode if you are not already doing that (voxl-set-cpu-mode perf). Additionally, if you can increase cpu priority of your ros node, do that. Finally, i would suggest updating the baud rate of the esc to 2Mbit (2000000) from 250k. This will further reduce actuator latency. Change the param in esc params first and then update your ros node to use 2mbit. Finally, it can help, if you have an oscilloscope, to look at tx line from voxl2 to see if there are 500hz on average packets going out or are there frequent gaps that would suggest dropped outgoing packets (for whatever reason).

                  Jeffrey MaoJ 1 Reply Last reply
                  0
                  • Alex KushleyevA Alex Kushleyev

                    @jenyeom , you are running your application on the CPU, so there are no real time guarantees. You should set the cpu into perf mode if you are not already doing that (voxl-set-cpu-mode perf). Additionally, if you can increase cpu priority of your ros node, do that. Finally, i would suggest updating the baud rate of the esc to 2Mbit (2000000) from 250k. This will further reduce actuator latency. Change the param in esc params first and then update your ros node to use 2mbit. Finally, it can help, if you have an oscilloscope, to look at tx line from voxl2 to see if there are 500hz on average packets going out or are there frequent gaps that would suggest dropped outgoing packets (for whatever reason).

                    Jeffrey MaoJ Offline
                    Jeffrey MaoJ Offline
                    Jeffrey Mao
                    Contributor
                    wrote on last edited by Jeffrey Mao
                    #16

                    @Alex-Kushleyev

                    By the way Alex to add on to this would it be possible for us to acquire a version of the libqrb5165-io that does NOT contain the slpi_uart_bridge portion?

                    Link Preview Image
                    Files · master · voxl / VOXL SDK / Core Libs / libqrb5165-io · GitLab

                    GitLab.com

                    favicon

                    GitLab (gitlab.com)

                    Or we can have a version that allows us to to old voxl-slpi-uart-bridge_1.0.0-202303130921_arm64.deb on the newest SDK?

                    I don't believe it is a CPU performance issue because our drone is always in performance mode and has a very high baud rate as recommended and the osccilations in flight. The only way to remove those oscillations is to downgrade the SDK 0.8 and use this library voxl-slpi-uart-bridge_1.0.0-202303130921_arm64.deb to send RPM.

                    Since the hardware and our own software stack hasn't changed between these runs. I think the problem lies somewhere inside the SDK and the library. If we could simply install the older SDK Uart bridge then I believe that should show where the problem is.

                    Thanks,

                    Jeff

                    Alex KushleyevA 1 Reply Last reply
                    0
                    • Jeffrey MaoJ Jeffrey Mao

                      @Alex-Kushleyev

                      By the way Alex to add on to this would it be possible for us to acquire a version of the libqrb5165-io that does NOT contain the slpi_uart_bridge portion?

                      Link Preview Image
                      Files · master · voxl / VOXL SDK / Core Libs / libqrb5165-io · GitLab

                      GitLab.com

                      favicon

                      GitLab (gitlab.com)

                      Or we can have a version that allows us to to old voxl-slpi-uart-bridge_1.0.0-202303130921_arm64.deb on the newest SDK?

                      I don't believe it is a CPU performance issue because our drone is always in performance mode and has a very high baud rate as recommended and the osccilations in flight. The only way to remove those oscillations is to downgrade the SDK 0.8 and use this library voxl-slpi-uart-bridge_1.0.0-202303130921_arm64.deb to send RPM.

                      Since the hardware and our own software stack hasn't changed between these runs. I think the problem lies somewhere inside the SDK and the library. If we could simply install the older SDK Uart bridge then I believe that should show where the problem is.

                      Thanks,

                      Jeff

                      Alex KushleyevA Offline
                      Alex KushleyevA Offline
                      Alex Kushleyev
                      ModalAI Team
                      wrote on last edited by Alex Kushleyev
                      #17

                      @Jeffrey-Mao,

                      It should be possible. You would need an older slpi firmware image that goes with the older uart bridge. I will check with @Eric-Katzfey . Since you dont use px4 on slpi, i think we may be able to downgrade the slpi image without affecting anything else.

                      I am curious why you are having performance issues with the latest bridge. I will be back to office on Wednesday and can run some tests using our python and c++ api for the uart bridge.

                      J 1 Reply Last reply
                      0
                      • Alex KushleyevA Alex Kushleyev

                        @Jeffrey-Mao,

                        It should be possible. You would need an older slpi firmware image that goes with the older uart bridge. I will check with @Eric-Katzfey . Since you dont use px4 on slpi, i think we may be able to downgrade the slpi image without affecting anything else.

                        I am curious why you are having performance issues with the latest bridge. I will be back to office on Wednesday and can run some tests using our python and c++ api for the uart bridge.

                        J Offline
                        J Offline
                        jenyeom
                        Contributor
                        wrote on last edited by
                        #18

                        @Alex-Kushleyev
                        Just a quick update on this journey...
                        We completed a full downgrade to SDK 0.8 and still experienced oscillations - so it doesn't seem to be an SDK issue.
                        The last thing that I can think could be an issue is the updated firmware of the ESC (39) that automatically happens when you update the SDK to 1.1+
                        Or maybe it was an ESC issue all along..? its hard to say at this point.

                        In order to track this down, I attempted to downgrade our current ESC to version 36 and had some issues with the baud rate not updating (it seemed to be stuck at a baud rate of 57600). And while updating and checking firmware/parameters, I lost all communication with the ESC.

                        Here is my post on the ESC page about it:
                        (https://forum.modalai.com/topic/3310/escs-not-found-esc-bricked)

                        Alex KushleyevA 1 Reply Last reply
                        0
                        • J jenyeom

                          @Alex-Kushleyev
                          Just a quick update on this journey...
                          We completed a full downgrade to SDK 0.8 and still experienced oscillations - so it doesn't seem to be an SDK issue.
                          The last thing that I can think could be an issue is the updated firmware of the ESC (39) that automatically happens when you update the SDK to 1.1+
                          Or maybe it was an ESC issue all along..? its hard to say at this point.

                          In order to track this down, I attempted to downgrade our current ESC to version 36 and had some issues with the baud rate not updating (it seemed to be stuck at a baud rate of 57600). And while updating and checking firmware/parameters, I lost all communication with the ESC.

                          Here is my post on the ESC page about it:
                          (https://forum.modalai.com/topic/3310/escs-not-found-esc-bricked)

                          Alex KushleyevA Offline
                          Alex KushleyevA Offline
                          Alex Kushleyev
                          ModalAI Team
                          wrote on last edited by Alex Kushleyev
                          #19

                          @jenyeom , there have not been any performance-related changes in the ESC firmware since version 36. The only main change was a change in param structure, if you wanted to use that firmware, you would have to use voxl-esc tools and params from this branch : https://gitlab.com/voxl-public/voxl-sdk/utilities/voxl-esc/-/tree/params-v1/voxl-esc-tools.

                          What could have happened, if you were running older firmware / params before, after the SDK install, the firmware was updated and params as well, and it is possible that ESC params that were installed are not what you needed - that would definitely mess things up.

                          At this point, i would suggest finding the old ESC params that you were using (i am assuming that you have a custom motor / propeller and you performed the ESC calibration). I can help you updating these params to be compatible with latest firmware (easy).

                          To recover the ESC to latest firmware, use:

                          • latest voxl-esc tools from dev branch : https://gitlab.com/voxl-public/voxl-sdk/utilities/voxl-esc/-/tree/dev/voxl-esc-tools
                          • perform voxl-esc-scan.py, it should find all 4 ESCs, potentially running at different uart baud rates
                          • upgrade firmware to latest using ./voxl-esc-upload-firmware-all.sh , which is a wrapper for voxl-esc-upload-firmware.py . please keep track of which ESCs were updated
                          • upload latest compatible params (you can use generic params for now) : for example from here https://gitlab.com/voxl-public/voxl-sdk/utilities/voxl-esc/-/blob/master/voxl-esc-params/boards/esc_params_generic_m0134.xml . Later you can update params with your actual tuning results.
                          • ./voxl-esc-scan.py to scan the escs
                          • './voxl-esc-verify-params.py` to verify params
                          J 1 Reply Last reply
                          0
                          • Alex KushleyevA Alex Kushleyev

                            @jenyeom , there have not been any performance-related changes in the ESC firmware since version 36. The only main change was a change in param structure, if you wanted to use that firmware, you would have to use voxl-esc tools and params from this branch : https://gitlab.com/voxl-public/voxl-sdk/utilities/voxl-esc/-/tree/params-v1/voxl-esc-tools.

                            What could have happened, if you were running older firmware / params before, after the SDK install, the firmware was updated and params as well, and it is possible that ESC params that were installed are not what you needed - that would definitely mess things up.

                            At this point, i would suggest finding the old ESC params that you were using (i am assuming that you have a custom motor / propeller and you performed the ESC calibration). I can help you updating these params to be compatible with latest firmware (easy).

                            To recover the ESC to latest firmware, use:

                            • latest voxl-esc tools from dev branch : https://gitlab.com/voxl-public/voxl-sdk/utilities/voxl-esc/-/tree/dev/voxl-esc-tools
                            • perform voxl-esc-scan.py, it should find all 4 ESCs, potentially running at different uart baud rates
                            • upgrade firmware to latest using ./voxl-esc-upload-firmware-all.sh , which is a wrapper for voxl-esc-upload-firmware.py . please keep track of which ESCs were updated
                            • upload latest compatible params (you can use generic params for now) : for example from here https://gitlab.com/voxl-public/voxl-sdk/utilities/voxl-esc/-/blob/master/voxl-esc-params/boards/esc_params_generic_m0134.xml . Later you can update params with your actual tuning results.
                            • ./voxl-esc-scan.py to scan the escs
                            • './voxl-esc-verify-params.py` to verify params
                            J Offline
                            J Offline
                            jenyeom
                            Contributor
                            wrote on last edited by
                            #20

                            @Alex-Kushleyev
                            Thanks for the quick response.
                            I was able to upload firmware version 36, but had issues getting the ESC set to the right baud rate, using voxl-esc-upload-params.py. Even though I was giving it 250,000 as the baud rate, it seemed to be stuck at 57600, which may have been a hint that the params were not loading well (after further reading in the forums and modalai documentation).
                            However, now I cannot even communicate with the ESC.
                            Here is what I get when I try the voxl-esc-scan.py script:

                            Screenshot from 2024-04-10 12-15-22.png

                            Could I have bricked the ESC...?
                            Any idea how I might go about reviving it?
                            Nothing (uplading firmware or parameter or scanning) seems to work at this point.
                            Thanks much!

                            Alex KushleyevA 1 Reply Last reply
                            0
                            • J jenyeom

                              @Alex-Kushleyev
                              Thanks for the quick response.
                              I was able to upload firmware version 36, but had issues getting the ESC set to the right baud rate, using voxl-esc-upload-params.py. Even though I was giving it 250,000 as the baud rate, it seemed to be stuck at 57600, which may have been a hint that the params were not loading well (after further reading in the forums and modalai documentation).
                              However, now I cannot even communicate with the ESC.
                              Here is what I get when I try the voxl-esc-scan.py script:

                              Screenshot from 2024-04-10 12-15-22.png

                              Could I have bricked the ESC...?
                              Any idea how I might go about reviving it?
                              Nothing (uplading firmware or parameter or scanning) seems to work at this point.
                              Thanks much!

                              Alex KushleyevA Offline
                              Alex KushleyevA Offline
                              Alex Kushleyev
                              ModalAI Team
                              wrote on last edited by Alex Kushleyev
                              #21

                              @jenyeom ,

                              As i just mentioned above, i will repeat again 🙂

                              use latest voxl-esc tools from dev branch : https://gitlab.com/voxl-public/voxl-sdk/utilities/voxl-esc/-/tree/dev/voxl-esc-tools

                              You should recover the ESC to the latest state and then if you want to go back to older firmware and params, i can tell you how to do it properly.

                              Alex KushleyevA 1 Reply Last reply
                              0
                              • Alex KushleyevA Alex Kushleyev

                                @jenyeom ,

                                As i just mentioned above, i will repeat again 🙂

                                use latest voxl-esc tools from dev branch : https://gitlab.com/voxl-public/voxl-sdk/utilities/voxl-esc/-/tree/dev/voxl-esc-tools

                                You should recover the ESC to the latest state and then if you want to go back to older firmware and params, i can tell you how to do it properly.

                                Alex KushleyevA Offline
                                Alex KushleyevA Offline
                                Alex Kushleyev
                                ModalAI Team
                                wrote on last edited by
                                #22

                                Once you recover to the newest firmware, before going to the old firmware, i would suggest that we figure out if you used wrong ESC params in the recent tests. So if you had old params, did you upload them after the ESC firmware was updated to version 39?

                                Alex KushleyevA 1 Reply Last reply
                                0
                                • Alex KushleyevA Alex Kushleyev

                                  Once you recover to the newest firmware, before going to the old firmware, i would suggest that we figure out if you used wrong ESC params in the recent tests. So if you had old params, did you upload them after the ESC firmware was updated to version 39?

                                  Alex KushleyevA Offline
                                  Alex KushleyevA Offline
                                  Alex Kushleyev
                                  ModalAI Team
                                  wrote on last edited by Alex Kushleyev
                                  #23

                                  Also, if you are using very old SDK on VOXL2, the uart bridge may not be working 100% properly.

                                  When in doubt, the best thing to do is to connect to the ESC using a serial to usb adapter going directly to a Linux PC (and run voxl-esc tools on the PC). do you have that available?

                                  1 Reply Last reply
                                  0

                                  Hello! It looks like you're interested in this conversation, but you don't have an account yet.

                                  Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

                                  With your input, this post could be even better 💗

                                  Register Login
                                  Reply
                                  • Reply as topic
                                  Log in to reply
                                  • Oldest to Newest
                                  • Newest to Oldest
                                  • Most Votes


                                  ModalAI
                                  Categories Recent Tags ModalAI.com Docs
                                  © 2026 ModalAI® · Accelerating autonomy for smaller, smarter, safer drones · Powered by NodeBB
                                  • Login

                                  • Don't have an account? Register

                                  • Login or register to search.
                                  • First post
                                    Last post
                                  0
                                  • Categories
                                  • Recent
                                  • Tags
                                  • Popular
                                  • Users
                                  • Groups