GithubHelp home page GithubHelp logo

classicvalues / libuavcan-1 Goto Github PK

View Code? Open in Web Editor NEW

This project forked from dronecan/libuavcan

1.0 0.0 0.0 2.89 MB

License: MIT License

Shell 0.20% C++ 94.08% Python 4.89% Makefile 0.05% CMake 0.77%

libuavcan-1's Introduction

DroneCAN stack in C++

Portable reference implementation of the DroneCAN protocol stack in C++ for embedded systems and Linux.

DroneCAN is a lightweight protocol designed for reliable communication in aerospace and robotic applications via CAN bus.

Documentation

Library usage

Cloning the repository

git clone https://github.com/DroneCAN/libuavcan
cd libuavcan
git submodule update --init

If this repository is used as a git submodule in your project, make sure to use --recursive when updating it.

Using in a Linux application

Libuavcan can be built as a static library and installed on the system globally as shown below.

mkdir build
cd build
cmake .. # Default build type is RelWithDebInfo, which can be overriden if needed.
make -j8
sudo make install

The following components will be installed:

  • Libuavcan headers and the static library
  • Generated DSDL headers
  • Libuavcan DSDL compiler (a Python script named libuavcan_dsdlc)
  • Libuavcan DSDL compiler's support library (a Python package named libuavcan_dsdl_compiler)

Note that Pyuavcan (an implementation of DroneCAN in Python) will not be installed. You will need to install it separately if you intend to use the Libuavcan's DSDL compiler in your applications.

It is also possible to use the library as a submodule rather than installing it system-wide. Please refer to the example applications supplied with the Linux platform driver for more information.

Using with an embedded system

For ARM targets, it is recommended to use GCC ARM Embedded; however, any other standard-compliant C++ compiler should also work.

Library development

Despite the fact that the library itself can be used on virtually any platform that has a standard-compliant C++11 compiler, the library development process assumes that the host OS is Linux.

Prerequisites:

  • Google test library for C++ - gtest (dowloaded as part of the build from github)
  • C++11 capable compiler with GCC-like interface (e.g. GCC, Clang)
  • CMake 2.8+
  • Optional: static analysis tool for C++ - cppcheck (on Debian/Ubuntu use package cppcheck)

Building the debug version and running the unit tests:

mkdir build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Debug
make -j8
make ARGS=-VV test

Test outputs can be found in the build directory under libuavcan.

Note that unit tests suffixed with "_RealTime" must be executed in real time, otherwise they may produce false warnings; this implies that they will likely fail if ran on a virtual machine or on a highly loaded system.

Vagrant

Vagrant can be used to setup a compatible Ubuntu virtual image. Follow the instructions on Vagrantup to install virtualbox and vagrant then do:

vagrant up
vagrant ssh
mkdir build
cd build
mkdir build && cd build && cmake .. -DCMAKE_BUILD_TYPE=Debug -DCONTINUOUS_INTEGRATION_BUILD=1

Note that -DCONTINUOUS_INTEGRATION_BUILD=1 is required for this build as the realtime unit tests will not work on a virt.

You can build using commands like:

vagrant ssh -c "cd /vagrant/build && make -j4 && make test"

or to run a single test:

vagrant ssh -c "cd /vagrant/build && make libuavcan_test && ./libuavcan/libuavcan_test --gtest_filter=Node.Basic"

Developing with Eclipse

An Eclipse project can be generated like that:

cmake ../../libuavcan -G"Eclipse CDT4 - Unix Makefiles" \
                      -DCMAKE_ECLIPSE_VERSION=4.3 \
                      -DCMAKE_BUILD_TYPE=Debug \
                      -DCMAKE_CXX_COMPILER_ARG1=-std=c++11

Path ../../libuavcan in the command above points at the directory where the top-level CMakeLists.txt is located; you may need to adjust this per your environment. Note that the directory where Eclipse project is generated must not be a descendant of the source directory.

libuavcan-1's People

Contributors

andreasantener avatar antoinealb avatar battlesnake avatar bendyer avatar bugobliterator avatar dagar avatar daniel-formlabs avatar davids5 avatar eshamaev avatar frizensami avatar git-aroberts avatar guludo avatar i-sheremet avatar jamesstewy avatar jgoppert avatar julianoes avatar kylemanna avatar lorenzmeier avatar maetugr avatar magicrub avatar miccio-dk avatar nuft avatar papatience avatar partyzzzan avatar pavel-kirienko avatar peterbarker avatar potaito avatar suiauthon avatar thirtytwobits avatar tridge avatar

Stargazers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.