This is a customised Ardupilot firmware builder which allows to integrate custom patches, recall old builds etc. This is hosted on a private server but publicly accessible and the source code can be downloaded by anyone. Detailed instruction on how to build your custom firmware patcher based with this code are in the readme below. A live version of this app can be accessed here: https://ardupilot.equalmass.com

yaapu 5aaf4b62de Added dependencies for MSP преди 4 години
static bd52b48d15 added a collapsible list преди 4 години
templates 1c252af60b Tidy up преди 4 години
.gitignore 519e1f8813 Initial commit преди 5 години
CustomBuild.conf 75a5cc39c7 Updated config file (final GSoC commit) преди 4 години
LICENSE 519e1f8813 Initial commit преди 5 години
README.md 1ede064807 Update README.md преди 4 години
__init__.py dbb766af42 Attempted to get apache server running with wsgi (not currently working) преди 4 години
app.py 5aaf4b62de Added dependencies for MSP преди 4 години
app.wsgi 32ebd62a5a tidy ups of WSGI support преди 4 години

README.md

ArduPilot Custom Firmware Builder - GSoC 2021 Project

Summary

This is a website that generates a downloadable custom ArduPilot firmware, based on user selection.
Website: https://custom.ardupilot.org
Blog post: https://discuss.ardupilot.org/t/gsoc-2021-custom-firmware-builder/74946

For developers

This website uses the Flask library. Flask must be installed before use.
Directories: ardupilot must be within base, which must be in the same directory as CustomBuild.

To run:

./app.py

For Apache web server on Ubuntu with WSGI

  • Install mod_wsgi for python 3:

    sudo apt-get install libapache2-mod-wsgi-py3 python-dev
    
  • In app.wsgi, specify the app directory (.../CustomBuild/).

  • Copy the config file to /etc/apache2/sites-available/ and specify the correct directory.

  • Enable the file:

    sudo a2ensite CustomBuild.conf
    
  • To restart Apache:

    sudo apache2ctl graceful
    
  • To stop Apache:

    sudo apache2ctl stop
    
  • To start Apache:

    sudo apache2ctl start
    

    Webpage: 127.0.0.1