DevGuide/CodeEditors

From PaparazziUAV
Revision as of 13:41, 15 June 2016 by Podhrmic (talk | contribs)
Jump to navigation Jump to search

Introduction

So you want to adjust the sourcecode to your wishes, get rid of some bugs that bother you and help to improve the code, great! While theoretically it all an be done with VI and command line instructions, learning to code for Paparazzi this way is a little cumbersome. Therefore it is a good idea to set up an IDE Integrated Development Environment.

As you may have noticed, this page is far from finished, it really would be great if you help to improve this page with even a small improvement.

IDE for OCAML

We start of with OCAML IDE's first

EMACS

Tuareg is a really nice mode for Emacs. On Ubuntu/Debian just apt-get install tuareg-mode.

http://www.emacswiki.org/emacs/TuaregMode

Netbeans

Installation

First install a reasonable new Netbeans, e.g. v6.8 via the synaptic package manager in Ubuntu or use the commandline

OCAML Plugin

http://ocamlplugin.loki-a.com/index.php?title=Main_Page

  1. Start netbeans IDE
  2. Go to Netbean menu -Tools - Plugins
  1. Select tab - Settings
  2. Click the Add button

Name: Ocaml from Loki a URL: http://ocamlplugin.loki-a.com/ocamlplugin/updates/updates.xml

  1. Then click the tab "Available plugins"
  2. Select for install from the list the "Ocaml Plugin"
  3. Click Install
  4. Click Install Then Next
  5. If you see "Signed but not trusted, ignore the message just click "continue"
  6. If it all worked, you will see "Install completed successfully, just click "Finish"

Syntax Highlighting

Eclipse

OcaIDE seems to be the best option for Eclipse. Note that OcaIDE requires eclipse to run under Java 7. No release of ODT since November 2013.

IDE for Python

PyCharm is a great Python IDE with awesome completion, code assistance, debugger and git integration and much more...

IDE for C and CPP

Next are the IDE's for C development

Netbeans

Eclipse

Typical process consists of compiling the autopilot code for given airframe in Paparazzi center, and then running the related debug configuration in Eclipse. The debugger will first recompile whole Paparazzi (e.g. running "make" in Paparazzi home directory), which is not really useful, but bearable.

In case we want to work with a single aircraft and want Eclipse to also compile the autopilot code, we have to do the following:

  1. Import paparazzi into eclipse as normal
  2. in project->properties->c/c++->environment add three variables
    1. Current_Airframe: set to the name of the airframe you want to build
    2. PAPARAZZI_HOME: set to the root paparazzi directory
    3. PAPARAZZI_SRC: set to the root paparazzi directory
  3. in project->properties->c/c++
    1. in Builder Settings Tab
      1. Uncheck Use default build command
      2. in build command put: make -f Makefile.ac AIRCRAFT=${Current_Airframe}
    2. In Behavior Tab
      1. set the Build field to: ap.compile
      2. set the Clean field to:clean_ac

That will compile Current_Aiframe with target ac. Obviously, if you need a different target, for example test_telemetry, you will have to change the last two steps to test_telemetry.compile and so on.

Code::Blocks

Debugging tools

GDB

GDB can be used for quite effective Paparazzi debugging. Debugging guide with Eclipse IDE was already described for RT_Paparazzi, but the exact same steps can be used for classic Paparazzi. The guide is here: