Overview
The Snapdragon Flight board is based on a Qualcomm Snapdragon 801 processor, which features threes units:
- CPU Cores: Quad-core CPU, 4x Qualcomm Krait 400 CPU (Up to 2.5 GHz)
- GPU: Qualcomm Adreno 330
- DSP: Qualcomm Hexagon
Applications can be built aiming different processing units, depending on its purpose. The CPU cores are used to realize Linux, robot operating systems and high level algorithms, such as obstacle avoidance, motion planning and visual odometry and related algorithms. Moreover, benefited from the Hexagon DSP on Snapdragon, which runs its own Real-Time Operating System (RTOS) QuRT, the low level UAV control algorithm can be isolated and performed in the DSP side. Thus, low level control algorithm executed on DSP can be real-time and more reliable. Compared to autopilots with similar grade as Pixhawk, Snapdragon has a higher grade without increasing too much cost.
Hardware
To build your own drone with Qualcomm Flight , the Qualcomm Flight Kit, Qualcomm Electronic Speed Control (ESC) board, Dragon Drone Development Kit (DragonDDK) are needed. The DragonDDK is an almost ready to fly drone kit includes a pre-assembled frame with motors, propellers, an indicator LED, a Wi-Fi antenna, and adapters for mounting the boards. Follow the User-Assembly-Instructions to assemble the drone, Or If not using the DragonDDk, follow the Walkthrough instruction. A 1350mah 3S battery is used as a power supply. A Spektrum DX-8 is chosen as the remote controller. Moreover, the Stereovision Kit can be assembled as an add on option for the Snapdragon Flight Kit. It provides two additional forward-facing cameras for stereo vision applications.
Hardware platform | Description |
---|---|
Qualcomm Flight Kit | Qualcomm Flight board with all kinds of sensors |
Qualcomm Electronic Speed Control (ESC) board | The 4-in-1 ESC board with cables |
Dragon Drone Development Kit | ready to fly drone kit, compatible with the Qualcomm Snapdragon Fligh development board and Electronic Speed Controller |
Stereovision Kit | Provide two additional forward-facing cameras for stereo vision applications |
Development Environment Setup
Communicating with the snapdragon flight
Communication between the snapdragon flight and a workstation can be facilitated with serial or ADB cable or over Wi-Fi. The specific details are listed on section 3.4 in
Flight_User_Guide.
Recommended Communication method is Wi-Fi, and it’s better to set the WiFi to station mode for downloading files directly online or flying multiple drones, which is convenient for future experiments.
The Wi-Fi on snapdragon can be configured as an Access Point (AP) or Station (STA) mode. For the AP mode, the snapdragon generates its own WiFi. It can also connect to a known WiFi under STA mode. Edit /etc/wpa_supplicant/wpa_supplicant.conf to configure the SSID and security options of STA mode. The configuration of different WiFi mode can be easily done by /usr/local/qr-linux/wificonfig.sh command with “-s” option. “-s station” is used to configure the drone to station mode, while “-s softap” is for AP mode. One ADB to set the network on snapdragon flight and then use ssh over WiFi to access it. The file exchange between the drone and a host machine can be done by adb or scp with the following commands:
$ adb push <local> <remote> or $ adb pull <remote> [local]
$ scp [options] username1@source_host:dir1/filename1 username2@destination_host:dir2/filename2
Install Development Packages
To make the drone start to fly, a few software is required to be installed on the snapdragon flight board.
Install on Snapdragon Platform
To update platform BSP. Unzip the file and run ./jflash.sh
To install the flight controller. Unzip the file and run ./installfcaddon.sh
Machine Vision SDK inclues computer vision algorithms such as localization, autonomy, and obstacle avoidance.
- Install
- Add the license to LD_LIBRARY_PATH . $ mv snapdragon-flight-license.bin /usr/lib
- Install the package on the board. $ sudo dpkg -i mv_1.1.8_8x74.deb
- Toturial
Snapdragon Navigator SDK, an autonomous, vision-supported flight controller SDK
- $ dpkg -i snav_1.2.58_8x74.deb
- toturial
Used for ESC firmware updates
- $ dpkg -i snav-esc_1.2.0.deb
- snav_vehicles
- ROS on Snapdragon Flight
A Robot Operating System provides libraries and tools for robot applications building. See SnapdragonROSInstallation
Install on Workstation
-
qrlSDK Create applications that run on the ARM-based processor
./installsdk.sh --APQ8074 --arm-gcc --qrlSDK
-
Hexagon™ SDK and tools Create applications that run on the Hexagon™ DSP.
./qualcomm_hexagon_sdk_lnx_3_0_eval.bin
Check out Documentation
The platform image binaries file Flight_X.Y.Z_JFlash.zip is for running a full BSP update. the Flight controller add-on binaries file is for updating the DSP firmware and certain device drivers. The license file from Qualcomm developer network is needed to be put it in both the /usr/lib and /opt/qcom-licenses/ location for development.
The machine vision (MV) SDK provides highly runtime optimized and state of the art computer vision algorithms, enables features such as localization, autonomy, and obstacle avoidance. More updates are on official machine-vision-sdk website.
Snapdragon Navigator(SNAV) SDK is an autonomous, vision-supported flight controller SDK, providing stable and aggressive flight for applications. More updates are on official qualcomm-navigator website.
The qrlSDK, Hexagon SDK and tools are needed if one wants to develop applications run on the Snapdragon Flight platform with their workstation. The qrlSDK can be used to compile and link applications meant for the ARM processor or CPU of snapdragon board on the workstation, and then to run them on board. The Hexagon SDK and Hexagon tools are used to create applications on workstations that run on the Hexagon DSP. See Flight Developer Guide for details.
Vehicle Configurations
There are some configurations need to be set after the installation procedure. After install the Electronic Speed Control(ESC) firmware, its updates can be done by loading from a known location on the CPU and flashed on the connected ESCs. Thus the ESC params flash_esc_firmware.xml need to be set, which can be obtain from the repo snav_vehicles on GitHub/ALTFlight. Move the file to /usr/share/data/adsp/snav_params.xml and restart the drone to flash the ESC. snav_params.xml is the runtime parameters file, more details are on the navigator_user_guide.
To set the flight parameters. one can get the dragonddk.xml param file from snav_vehicles repo and move it to the same file /usr/share/data/adsp/snav_params.xml as the ESC only need to be updated once. Restart the vehicle to finish flight parameters update. Moreover, set the vehicle to use VIO (Visual-Inertial Odometry) for flight control. Log in to the board and run /etc/snav/configure_vio.sh file to finish setup. After all these steps, the flight board is ready to fly.
Applications
Many applications are available for the snapdron flight. More infomation refers to the linked pdf.

Structure of Applications
Usage
connect through cable
-
power the snapdragon flight (SDF)
-
connect SDF to your host machine with a micro usb cable
-
adb shell
to access the resource on the SDF -
workspace All the repositories are under
/home/linaro/ros_ws/src
folder. -
repositories There are several repositories from the offical github page or self build ones. The main one we wil be using is
snapdragon_flight
, the else can be found here:- snapdragon_flight: our self-build flight demo module
- snap_cam_ros: Snapdragon Flight ROS Camera Example
- snap_vioL: snap_vio wraps mvVISLAM from the machine vision library, providing a ROS interface.
- snap_imu: Qualcomm Flight Board ROS imu package
- snav_msgs
- snap_cpa: Camera Parameter Adjustment for Qualcomm Flight Board
- snav_gui
- snav_fci: Example high-level abstraction layer between Qualcomm Navigator and developer programs
- qflight_descriptions: Qualcomm Flight Board and Vehicle URDFs
- snap_msgs: This repository provides ROS messages required for snap_cam_ros
-
demos
- Fly circles indoor
roslaunch snapdragon_flight moving_orbit.launch
- check out camera image
roslaunch snap_cam_ros hires.launch
- official navigator
The function of navigator is to restart the whole system. Better to restart it after each use as it will restart the vio system.
Start by
start snav
and stop bystop snav
.
- Fly circles indoor
connect through ssh
Remember to go inside the system with a micro usb cable to setup the network and then login with ssh
in later usage. The other steps are the same.