Orocos
Documentation
The documentation of the last, stable version of Orocos can be found here:
http://www.orocos.org/wiki/main-page/toolchain/toolchain-reference-manuals
To get started, read the chapter two of the following document: orocos-components-manual.pdf
Installation
Assumption: You have Ubuntu 11.10 (32 bit) or 12.04 installed
See also: http://www.orocos.org/wiki/orocos/toolchain/quick-start-linux
Install the script language "Ruby":
sudo apt-get install ruby
Create and "cd" into the directory in which you want to install the toolchain:
cd ~ mkdir orocos-toolchain cd orocos-toolchain
Save the Toolchain-2.5 bootstrap.sh script in the folder you just created:
wget http://gitorious.org/orocos-toolchain/build/blobs/raw/toolchain-2.5/bootstrap.sh
In a console, run sh bootstrap.sh. This installs the toolchain-2.5 branch (latest fixes, stable).
sh bootstrap.sh
Answer the questions of the script:
- So, what do you want ? (all, ruby, os or none) [all] all
- the target operating system for Orocos/RTT (gnulinux or xenomai) [gnulinux]
- which CORBA implementation should the RTT use ? none
Load the generated env.sh script at the end of the build !!!
source ./env.sh
Also, add it to the .bashrc file in your home directory
(append "source ~/orocos-toolchain/env.sh" -- without the quotes -- to the end of your .bashrc)
cd ~ gedit .bashrc
Test
cd ~/orocos-toolchain/install/bin sudo ./deployer-gnulinux
Expected result:
ufechner@dell-laptop:~/orocos-toolchain/install/bin$ sudo ./deployer-xenomai
[sudo] password for ufechner:
Switched to : Deployer
This console reader allows you to browse and manipulate TaskContexts.
You can type in an operation, expression, create or change variables.
(type 'help' for instructions and 'ls' for context info)
TAB completion and HISTORY is available ('bash' like)
Deployer [S]> quit
TLSF bytes allocated=20480 overhead=3232 max-used=3232 currently-used=3232 still-allocated=0Use "quit" to leave the program.
Back to FrontPage