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

Andrew Tridgell 32ebd62a5a tidy ups of WSGI support há 4 anos atrás
templates 32ebd62a5a tidy ups of WSGI support há 4 anos atrás
.gitignore 519e1f8813 Initial commit há 5 anos atrás
CustomBuild.conf dbb766af42 Attempted to get apache server running with wsgi (not currently working) há 4 anos atrás
LICENSE 519e1f8813 Initial commit há 5 anos atrás
README.md a1d44d8df8 Update README.md há 4 anos atrás
__init__.py dbb766af42 Attempted to get apache server running with wsgi (not currently working) há 4 anos atrás
app.py 32ebd62a5a tidy ups of WSGI support há 4 anos atrás
app.wsgi 32ebd62a5a tidy ups of WSGI support há 4 anos atrás

README.md

ArduPilot Custom Firmware Builder

Summary

This is a website that generates a downloadable custom ArduPilot firmware, based on user selection.

For developers

This website uses the flask library. The ardupilot directory must be in the same directory as the CustomBuild directory.

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, user and group.

  • Enable the file:

    sudo a2ensite CustomBuild.conf
    
  • Open envvars, and specify the user and group.

    sudo vim /etc/apache/envvars
    
  • To stop Apache:

    sudo apache2ctl stop
    
  • To start Apache:

    sudo apache2ctl start
    

    Webpage: 127.0.0.1/CustomBuild/

Without wsgi

Insert the CustomBuild directory location for DocumentRoot and Directory below.

DocumentRoot "CustomBuild directory location"
<Directory CustomBuild directory location>
				Options Indexes FollowSymLinks MultiViews
				AllowOverride None
				Order allow,deny
				allow from all
Require all granted
</Directory>

To run the server:

/usr/local/opt/httpd/bin/httpd -D FOREGROUND