arktools / ardupilotone

A universal autopilot system for ArduPilotMega
https://github.com/arktools/ardupilotone/wiki
GNU General Public License v3.0
61 stars 20 forks source link

Building using arduino

To install the libraries:

Building using make

Building using cmake

Building using eclipse

Getting the Source:

    assuming source located here: /home/name/apm-src
    You can either download it or grab it from git:
    git clone https://code.google.com/p/ardupilot-mega/ /home/name/apm-src

Generating the Eclipse Project for Your System:

    mkdir /home/name/apm-build 
    cd /home/name/apm-build
    cmake -G"Eclipse CDT4 - Unix Makefiles" -D CMAKE_BUILD_TYPE=Debug ../apm-src -D BOARD=mega -D PORT=/dev/ttyUSB0

    Note: Unix can be substituted for MinGW/ MSYS/ NMake (for windows)
        (see http://www.vtk.org/Wiki/Eclipse_CDT4_Generator)

    input options:

        CMAKE_BUILD_TYPE choose from DEBUG, RELEASE etc.
        PORT is the port for uploading to the board, COM0 etc on windows. /dev/ttyUSB0 etc. on linux
        BOARD is your board type, mega for the 1280 or mega2560 for the 2560 boards.
        ARDUINO_SDK_PATH if it is not in default path can specify as /path/to/arduino

Importing the Eclipse Build Project:

    Import project using Menu File->Import
    Select General->Existing projects into workspace:
    Browse where your build tree is and select the root build tree directory. 
    Keep "Copy projects into workspace" unchecked.
    You get a fully functional eclipse project

Importing the Eclipse Source Project:

    You can also import the source repository (/home/name/apm-src) if you want to modify the source/ commit using git.

Settings up Eclipse to Recognize PDE files:

     Window > Preferences > General > Content Types. This tree associates a
        filename or filename pattern with its content type so that tools can treat it
        properly. Source and header files for most languages are under the Text tree. 
        Add "*.pde" as a C++ Source.

Autocompletion:

    Right click on source project -> Properties -> Project References -> apm-build Project

Advanced:

    * Regenerating the eclipse source project file:
        cmake -G"Eclipse CDT4 - Unix Makefiles" -DECLIPSE_CDT4_GENERATE_SOURCE_PROJECT=TRUE /home/name/apm-src

Build a package using cpack

@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@ Installation and Building on a Mac @@ @@ @@ Modified from README.txt by James Goppert jgoppert@gmail.com @@ By: Nathanael Xie Wenyao wenyaoxie@gmail.com Dec 13 2011

Install Procedure:

  1. Install MacPorts
  2. Install Cmake via MacPorts
  3. Install Arduino IDE (only versions 0022 and 0023 currently supported)
  4. Build using Cmake

Installing MacPorts

Installing Cmake via MacPorts

Installing Arduino IDE

Building using cmake

Within your ardupilotone directory, execute the following in Terminal.app:

Then choose from the following options from within the build directory:

OPTIONAL: This is provided for those who want to build from the Eclipse IDE Building using eclipse

Getting the Source:

    assuming source located here: /home/name/apm-src
    You can either download it or grab it from git:
    git clone https://code.google.com/p/ardupilot-mega/ /home/name/apm-src

Generating the Eclipse Project for Your System:

    mkdir /home/name/apm-build 
    cd /home/name/apm-build
    cmake -G"Eclipse CDT4 - Unix Makefiles" -D CMAKE_BUILD_TYPE=Debug ../apm-src -D BOARD=mega -D PORT=/dev/ttyUSB0

    Note: Unix can be substituted for MinGW/ MSYS/ NMake (for windows)
        (see http://www.vtk.org/Wiki/Eclipse_CDT4_Generator)

    input options:

        CMAKE_BUILD_TYPE choose from DEBUG, RELEASE etc.
        PORT is the port for uploading to the board, COM0 etc on windows. /dev/ttyUSB0 etc. on linux
        BOARD is your board type, mega for the 1280 or mega2560 for the 2560 boards.
        ARDUINO_SDK_PATH if it is not in default path can specify as /path/to/arduino

Importing the Eclipse Build Project:

    Import project using Menu File->Import
    Select General->Existing projects into workspace:
    Browse where your build tree is and select the root build tree directory. 
    Keep "Copy projects into workspace" unchecked.
    You get a fully functional eclipse project

Importing the Eclipse Source Project:

    You can also import the source repository (/home/name/apm-src) if you want to modify the source/ commit using git.

Settings up Eclipse to Recognize PDE files:

     Window > Preferences > General > Content Types. This tree associates a
        filename or filename pattern with its content type so that tools can treat it
        properly. Source and header files for most languages are under the Text tree. 
        Add "*.pde" as a C++ Source.

Autocompletion:

    Right click on source project -> Properties -> Project References -> apm-build Project

Advanced:

    * Regenerating the eclipse source project file:
        cmake -G"Eclipse CDT4 - Unix Makefiles" -DECLIPSE_CDT4_GENERATE_SOURCE_PROJECT=TRUE /home/name/apm-src

vim:ts=4:sw=4:expandtab