Skip to content

Latest commit

 

History

History
executable file
·
90 lines (70 loc) · 3.56 KB

9_Arduploit.md

File metadata and controls

executable file
·
90 lines (70 loc) · 3.56 KB

Kiss Ardupilot

Arduploit is a great choice for people tired of PX4. Of course, be a nice guy, I should cite someone telling the differences

2 Learn code of ArduCopter

Ardupilot is mainly built on C++ and Class are used widely there.

Source Learning the ArduPilot Codebase. ArduCopter Flight Controllers

---
title: control diagram for mode stablize
---
classDiagram
    Copter -- Mode
    ModeStabilize --|> Mode

    ModeStabilize -- AC_AttitudeControl
    AC_AttitudeControl_Multi --|> AC_AttitudeControl
    class Copter{
        - void fast_loop()
        + motors_output()
    }

    class Mode{
        - void update_flight_mode()
        + void get_pilot_desired_lean_angles()
        + float get_pilot_desired_yaw_rate()
    }
    
    class ModeStabilize{
        - run()
    }

    class AC_AttitudeControl{
        - void input_euler_angle_roll_pitch_euler_rate_yaw()
        + void attitude_controller_run_quat()
        - void control_monitor_update()
    }

    class AC_AttitudeControl_Multi{
        + void rate_controller_run()
        + void update_throttle_gain_boost()
        + void update_throttle_rpy_mix()
    }

Loading

Explanation of methods

2.1 Position control

Source:

2.3 Attitude control

3 Guided mode and Guided_NoGPS mode

Guided Mode allows us to control Ardupilot from an onboard computer autonoumously. This is usually essentially needed in research on drones.

Ardupilot provides us with two guided modes:

  • Guided mode that requires a GPS and enables to send one of post, vel and acc comands and some combinations of them.
  • Guided_NoGPS mode that can take angle or body rate commands.

Source