User Tools

Site Tools


getting_started:install_and_setup_development_environment:use_with_comedi

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Last revisionBoth sides next revision
getting_started:install_and_setup_development_environment:use_with_comedi [2019/10/16 08:44] grafgetting_started:install_and_setup_development_environment:use_with_comedi [2021/03/17 14:49] ursgraf
Line 1: Line 1:
 ====== Use with Comedi ====== ====== Use with Comedi ======
-The following is a step-by-step procedure to get started using EEROS on the [[https://wiki.ntb.ch/infoportal/embedded_systems/imx6/cb#cb20_board|cb20 Board]]. It describes how to set up the cross development tool chainThe application is developed on Linux host machine and can then be deployed to the board.+The following is a step-by-step procedure to get started using EEROS with [[http://www.comedi.org/|comedi]]. It stands for linux control and measurement device interfaceIt is a collection of drivers for a variety of common data acquisition plug-in boards
  
-As cross tool chain, the **arm-linux-gnueabihf-gcc-4.9** is needed. It is recommended to use Ubuntu 16.04 as host operating systemsince this packet is available in the default repositories. +As a first step install comedisee [[http://www.comedi.org/]]. Nextfetch the [[https://github.com/eeros-project/eeros-build-scripts.git|EEROS scripts]] with
-If a Linux host is used in a virtual machine, a [[https://lubuntu.net/downloads/|lightweight Ubuntu distribution]] is recommendedIn case you are using a newer Ubuntu versionyou have to add //xenial// to your sources list, see [[https://askubuntu.com/questions/1036108/install-gcc-4-9-at-ubuntu-18-04]]. +
- +
-Fetch the [[https://github.com/eeros-project/eeros-build-scripts.git|EEROS scripts]] on your cross development system with+
 <code> <code>
 $ git clone https://github.com/eeros-project/eeros-build-scripts.git eeros-project $ git clone https://github.com/eeros-project/eeros-build-scripts.git eeros-project
 +$ git checkout host
 $ cd eeros-project $ cd eeros-project
 </code> </code>
Line 13: Line 11:
 <code> <code>
 use_simulator=false use_simulator=false
-use_flink=false 
-use_bbblue=false 
 use_comedi=true use_comedi=true
 use_ros=false use_ros=false
-use_custom_application=true+use_ros_setup_script=false
 </code> </code>
-Setting the last entry to //true// will fetch an existing application from a git repository. Per default this will will be [[https://github.com/eeros-project/simple-motor-control.git]].  
  
 Now you can run the ''clone'' script  Now you can run the ''clone'' script 
Line 26: Line 21:
 </code> </code>
  
-After this you can continue with [[getting_started:compile_eeros|]].+After this you can continue with [[getting_started:compile_eeros_host|]].