ardrone_autonomy | ROS driver for Parrot AR-Drone 1.0 and 2.0 quadrocopters | Robotics library

 by   AutonomyLab C Version: 1.4.1 License: BSD-3-Clause

kandi X-RAY | ardrone_autonomy Summary

kandi X-RAY | ardrone_autonomy Summary

ardrone_autonomy is a C library typically used in Automation, Robotics applications. ardrone_autonomy has no bugs, it has no vulnerabilities, it has a Permissive License and it has low support. You can download it from GitHub.

ROS Driver for Parrot AR-Drone 1.0 & 2.0 Quadrocopters.
Support
    Quality
      Security
        License
          Reuse

            kandi-support Support

              ardrone_autonomy has a low active ecosystem.
              It has 350 star(s) with 226 fork(s). There are 54 watchers for this library.
              OutlinedDot
              It had no major release in the last 6 months.
              There are 53 open issues and 130 have been closed. On average issues are closed in 378 days. There are 5 open pull requests and 0 closed requests.
              It has a neutral sentiment in the developer community.
              The latest version of ardrone_autonomy is 1.4.1

            kandi-Quality Quality

              ardrone_autonomy has 0 bugs and 0 code smells.

            kandi-Security Security

              ardrone_autonomy has no vulnerabilities reported, and its dependent libraries have no vulnerabilities reported.
              ardrone_autonomy code analysis shows 0 unresolved vulnerabilities.
              There are 0 security hotspots that need review.

            kandi-License License

              ardrone_autonomy is licensed under the BSD-3-Clause License. This license is Permissive.
              Permissive licenses have the least restrictions, and you can use them in most projects.

            kandi-Reuse Reuse

              ardrone_autonomy releases are not available. You will need to build from source code and install.
              Installation instructions are available. Examples and code snippets are not available.
              It has 167 lines of code, 0 functions and 3 files.
              It has low code complexity. Code complexity directly impacts maintainability of the code.

            Top functions reviewed by kandi - BETA

            kandi's functional review helps you automatically verify the functionalities of the libraries and avoid rework.
            Currently covering the most popular Java, JavaScript and Python libraries. See a Sample of ardrone_autonomy
            Get all kandi verified functions for this library.

            ardrone_autonomy Key Features

            No Key Features are available at this moment for ardrone_autonomy.

            ardrone_autonomy Examples and Code Snippets

            No Code Snippets are available at this moment for ardrone_autonomy.

            Community Discussions

            Trending Discussions on ardrone_autonomy

            QUESTION

            How to make ardrone autonomy package work on Jetson Nano?
            Asked 2019-Nov-09 at 10:31

            I'm working on a Jetson Nano board and I need to connect it with a parrot ar drone 2.0, so in order to do that I would like to use the ardrone_autonomy package, but I can't do that because jetson has Ubuntu 18, which only supports ROS Melodic, which doesn't have this package.

            Here is what I tried:

            1. I built the package from this repository: https://github.com/dsapandora/ardrone_autonomy

            But I obtained this error:

            ...

            ANSWER

            Answered 2019-Aug-13 at 11:08

            I finally solved the problem, here are the complete steps, if there is someone else who is struggling with the same problems:

            1. I downloaded the docker image using: sudo docker pull ros:kinetic-robot-xenial And then followed this steps to run the image: http://wiki.ros.org/docker/Tutorials/Docker

            2. The I cloned the ardrone_autonomy package in a worksapce, from the above link:

            mkdir -p catkin_ws/src cd catkin_ws/src git clone https://github.com/dsapandora/ardrone_autonomy.git apt-get update cd ../ rosdep install --from-paths src --ignore-src -r -y catkin_make

            1. After the error with bswap appears, edit this file: devel/src/ardronelib/ARDroneLib/VP_SDK/VP_Os/linux/intrin.h and replace:

            static INLINE uint32_t _byteswap_ulong(uint32_t value) { __asm("bswap %0": "=r" (value): "0" (value));

            return value; }

            with this:

            static INLINE uint32_t _byteswap_ulong(uint32_t value) { int32_t tmp;

            __asm __volatile( "eor %1, %2, %2, ror #16\n" "bic %1, %1, #0x00ff0000\n" "mov %0, %2, ror #8\n" "eor %0, %0, %1, lsr #8" : "=r" (value), "=r" (tmp) : "r" (value) );

            return value; }

            and comment this line: _BitScanReverse(&index, code);

            1. After you do this if you try to give it a catkin_make it should appear the last error which can be resolved "simply" (after you understand what is happening there :) ) just by replacing this line (from the same file as above):

            "mov %0, %2, ror #8\n"

            with:

            "mov %0, %2\n"

            and now should work just fine.

            PS: Don't forget to source your workspace.

            Source https://stackoverflow.com/questions/57358653

            Community Discussions, Code Snippets contain sources that include Stack Exchange Network

            Vulnerabilities

            No vulnerabilities reported

            Install ardrone_autonomy

            ROS Build farm (Jade):
            ROS Build farm (Indigo):
            Travis (Jade/Indigo):

            Support

            For any new features, suggestions and bugs create an issue on GitHub. If you have any questions check and ask questions on community page Stack Overflow .
            Find more information at:

            Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items

            Find more libraries
            CLONE
          • HTTPS

            https://github.com/AutonomyLab/ardrone_autonomy.git

          • CLI

            gh repo clone AutonomyLab/ardrone_autonomy

          • sshUrl

            git@github.com:AutonomyLab/ardrone_autonomy.git

          • Stay Updated

            Subscribe to our newsletter for trending solutions and developer bootcamps

            Agree to Sign up and Terms & Conditions

            Share this Page

            share link

            Explore Related Topics

            Consider Popular Robotics Libraries

            openpilot

            by commaai

            apollo

            by ApolloAuto

            PythonRobotics

            by AtsushiSakai

            carla

            by carla-simulator

            ardupilot

            by ArduPilot

            Try Top Libraries by AutonomyLab

            create_robot

            by AutonomyLabC++

            bebop_autonomy

            by AutonomyLabC++

            libcreate

            by AutonomyLabC++

            freeboard_ros

            by AutonomyLabPython

            autonomy_hri

            by AutonomyLabC++