Giter Club home page Giter Club logo

launchpadflightcontroller's Introduction

LaunchPad Flight Controller

Developed by Kristian Sloth Lauszus, 2015-2020


Build Status

This is a flight controller used for a quadcopter in X-configuration.

It is written for the Tiva C Series TM4C123G LaunchPad running at 80 MHz.

More information can be found at the following blog posts: http://blog.tkjelectronics.dk/2015/01/launchpad-flight-controller and http://blog.tkjelectronics.dk/2015/08/bachelors-thesis-launchpad-flight-controller.

Video demonstrations

Some video demonstrations of the flight controller can be seen at my YouTube channel.

Report

The report I wrote for my Bachelor's thesis can be found in the docs folder. The 3D model and Matlab code can be found in there as well.

Features

  • Rate mode, self level mode, heading hold and altitude hold
    • AUX1: Use 3-POS switch for self level and heading hold. At first position both are off, at second position self level is on and at third position both are on
    • AUX2: Use a 3-POS switch for altitude hold. Note that self level mode must be activated for altitude hold to work! At first position altitude hold is turned off, at second position altitude hold will use the distance measured using the sonar and/or LIDAR-Lite v3 and at the third position altitude hold will be using the altitude estimated using the barometer and accelerometer
  • Store PID values, calibration values etc. in EEPROM
  • Gyro, accelerometer & magnetometer calibration routine
    • Gyro is calibrated at startup
    • Accelerometer and magnetometer calibration routine can be activated in the code or by using the Android app
    • The magnetometer turns on the Blue LED while calibrating
      • Rotate flight controller slowly along all three axis
  • Arm/disarm using rudder
  • Status LEDs
  • Supports CPPM receivers
  • Gyro & accelerometer (MPU-6500 or MPU-9250)
  • Magnetometer (HMC5883L or AK8963 (inside MPU-9250))
  • Barometer (BMP180)
  • Ultrasound sensor aka sonar (HC-SR04)
  • LIDAR-Lite v3
    • Connect a 680 µF electrolytic capacitor from 5V to GND
  • Optical flow sensor (ADNS3080)
  • Android application
  • OneShot125 ESC support
  • Buzzer feedback

Current setup

Pinout

Pin Connection Hardware peripheral
PA0 UART RX U0RX (UART0 RX)
PA1 UART TX U0TX (UART0 TX)
PA2 SPI CLK SSI0CLK
PA3 SPI SS SSI0Fss
PA4 SPI MISO SSI0Rx
PA5 SPI MOSI SSI0Tx
PA6 SCL I2C1SCL
PA7 SDA I2C1SDA
PB0* Bluetooth RX U1RX (UART1 RX)
PB1* Bluetooth TX U1TX (UART1 TX)
PB4 Motor 3 M0PWM2
PB5 Motor 4 M0PWM3
PB6 Motor 1 M0PWM0
PB7 Motor 2 M0PWM1
PC5 Sonar echo WTimer0B (WT0CCP1)
PC6 CPPM input WTimer1A (WT1CCP0)
PD2 Buzzer
PE0 Sonar trigger
PE1 ADNS3080 reset
PE2 MPU-6500/MPU-9250 INT
PE3 HMC5883L DRDY
PF0 Switch 1
PF1 Red LED
PF2 Blue LED
PF3 Green LED
PF4 Switch 2

* UART1 is connected to an HC-06 Bluetooth module running at a baudrate of 115200. Not 5V tolerant!, so make sure your Bluetooth module outputs 3.3 voltage level or use a logic level converter.

Furthermore WTimer1B is used to turn off motors if the connection to the RX is lost. SysTick counter is used for time basic time keeping functionality.

The MPU-6500/MPU-9250, HMC5883L, BMP180 and LIDAR-Lite v3 are connected via I2C if they are used.

All pins are defined in src/Config.h and can be overriden by creating a file called "Config_custom.h" in the src directory allowing you to redefine the values.

Notes

The motor layout follows the Naze32 in x-configuration i.e. motor 1 is bottom right, motor 2 is top right, motor 3 is bottom left and motor 4 is top left when looking from the back. Motor 1 and 4 should be spinning clockwise and motor 2 and 3 should be spinning counterclockwise.

Make sure that roll increases when tilting quadcopter to the right, pitch increases when pitching quadcopter upward and yaw increases when rotation quadcopter clockwise. This can be displayed using the graph menu in the Android application.

The flight controller is armed by having the throttle low and the rudder to the right. The flight controller is disarmed again by having the throttle low and the rudder to the left.

Initial setup

  1. Locate the line #define ONESHOT125 1 in PPM.c and set line to 0 if your ESCs does not support OneShot125, if you are in doubt, then set the value to 0.
  2. Configure the orientation of the MPU-9250/6500 and HMC5883L, so they corresponds to your setup. This is done inside mpu6500BoardOrientation and hmc5883lBoardOrientation in MPU6500.c and HMC5883L.c respectively.
    • The x-axis should be facing forward, the y-axis should be facing to the right and the z-axis should be facing downward. Typically the axis is indicated on the breakout board for the sensor.

Calibrating the ESCs

WARNING: Take propellers OFF when testing and calibrating ESCs!!

In order calibrate the ESCs you need to do the following procedure:

  1. Power up the board while holding down both hardware switches. The blue LED will come on, indicating that the ESCs will be calibrated at next power up.
  2. Turn the board off by disconnecting the battery.
  3. Now apply power while holding down the two hardware switches. The board will send out the maximum and minimum pulses to the ESCs and thus calibrating them. When the ESC calibration is done the blue LED will be turned off and a long beep will be played.

The calibration is canceled if the buttons are not held down during the whole procedure or the reset is not performed by a power on reset. The former allows the user to cancel the calibration at any time by releasing the switches and the latter prevents the user from accidentally resetting the board without also resetting the ESCs, for instance by pressing the reset button on the board.

Calibrating accelerometer and magnetometer

The last step is to calibrate the accelerometer and magnetometer. The accelerometer is calibrated by putting the quadcopter horizontal and activating the calibration routine via the Android application's settings menu. It is important that the quadcopter is kept still while running the accelerometer calibration routine. When the calibration is done a long beep will be played using the onboard buzzer.

The magnetometer calibration routine is activated similar to the accelerometer by using the Android application. The blue LED will turn on, indicating that the calibration procedure is activated. Now rotate the quadcopter along all three axis slowly in order to find the minimum and maximum values. The user has 30 seconds to rotate the quadcopter. Once the calibration is done the blue LED will be turned off and a long beep will be played.

It is a good idea to confirm that the estimated angles are all correct by using the graph menu in the Android application.

There is no need to calibrate the gyroscope, as this is done at every startup.

RX

The minimum and maximum receiver values are hardcoded in src/Config.h and might need to be adjusted as well.

Android application

Google Play

The Android source code is available at the following repository: https://github.com/Lauszus/LaunchPadFlightControllerAndroid.

GUI

A simple GUI can be found inside the GUI directory. It can be used to visualise the orientation of the flight controller.

Build instructions

PlatformIO

PlatformIO is a cross-platform build system, which makes it easy to compile and upload the code on both Windows, Linux and Mac. This is the recommended way to compile the code for novice users.

Please follow these instructions in order to install Python 2.7 and PlatformIO: http://docs.platformio.org/en/latest/installation.html.

On Windows be sure to select "Add python.exe to Path" when installing Python 2.7.

Open a terminal (search for cmd.exe on Windows) and navigate to the root of the project:

cd LaunchPadFlightController

Now compile the code:

platformio run

The program should now be compiled.

In order to upload the code simply type:

platformio run -t upload

I recommend installing the PlatformIO IDE if using PlatformIO.

Keil µVision IDE 5

In order to built this project you need to download Keil µVision IDE 5 and then simply open the project file.

Manual installation

In order to built this project you will need to use Make.

First download and install gcc-arm-none-eabi and then install lm4tools.

lm4tools can be installed like so:

$ git clone https://github.com/utzig/lm4tools.git
$ make -C lm4tools/lm4flash all
$ sudo cp lm4tools/lm4flash/lm4flash /usr/bin/

If you are on a Mac, I recommend installing gcc-arm-none-eabi using Homebrew like so:

$ brew tap PX4/homebrew-px4
$ brew update
$ brew install gcc-arm-none-eabi

Now simply compile the code by navigating to the src and running the following command:

make

And to upload the code:

make flash

Some information on configuring Eclipse for use with this project can be the Wiki.

Hardware debugging using OpenOCD

OpenOCD can be installed via Homebrew as well:

$ brew install openocd

Now run the following commands:

$ openocd --file /usr/local/share/openocd/scripts/board/ek-tm4c123gxl.cfg

$ arm-none-eabi-gdb gcc/LaunchPadFlightController.axf
(gdb) target extended-remote :3333
(gdb) monitor reset halt
(gdb) load
(gdb) monitor reset init

More information regarding hardware debugging can be found at the Wiki.

Credits

A lot of the inspiration for this code came from Cleanflight and other open source flight controller projects.

For more information send me an email at [email protected].

launchpadflightcontroller's People

Contributors

lauszus avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

launchpadflightcontroller's Issues

Port to TM4c129x

Hello,
first of all....excellent work.

Will you port it to latest TM4c129x Tivaware family?
Regards.

buzzer.c

Hi,
in the buzzer code :
GPIOPinTypeGPIOOutput(GPIO_BUZZER_BASE, GPIO_PIN_BUZZER);
it's running all the time buzzer.

And this code:
GPIOPinWrite(GPIO_BUZZER_BASE, GPIO_PIN_BUZZER, enable ? GPIO_PIN_BUZZER : 0);//enable is false
continues to work, does not stop

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.