Difference between revisions of "Xenomai:examples usage"

From ArmadeusWiki
Jump to: navigation, search
m (Others examples)
(Others examples)
 
(2 intermediate revisions by the same user not shown)
Line 2: Line 2:
  
  
Xenomai is a Linux kernel real time extension. For explainations on how to install it, take a look at [[Xenomai | Xenomai install instructions]].<br>
+
Xenomai is a Linux kernel real time extension. For explanations on how to install it, take a look at [[Xenomai | Xenomai install instructions]].<br>
 
The directory ''target/demos/real_time/'' contains a set of examples for Xenomai evaluation.<br>
 
The directory ''target/demos/real_time/'' contains a set of examples for Xenomai evaluation.<br>
 
For each example, a "functionnal equivalent" version is available for Linux environnement, in order to make some comparison.<br>
 
For each example, a "functionnal equivalent" version is available for Linux environnement, in order to make some comparison.<br>
Line 19: Line 19:
 
=== Kernel drivers ===
 
=== Kernel drivers ===
  
Loading and unloading a kernel driver is classical, like every other Linux kernel driver.
+
Loading and unloading a kernel driver is standard, like every other Linux kernel driver.
 
* To load the driver
 
* To load the driver
 
<pre class="apf">
 
<pre class="apf">
Line 39: Line 39:
 
==Others examples==
 
==Others examples==
  
The directory ''buildroot/build_armvXXt/xenomai-x.y.z/examples'' contains many other examples.
+
The directory ''$ARMADEUS_XENOMAI_DIR/examples'' contains many other examples:
 +
<pre class="host">
 +
$ make shell_env
 +
$ source armadeus_env.sh
 +
$ cd $ARMADEUS_XENOMAI_DIR/examples
 +
</pre>
  
 
==Links==
 
==Links==
  
* [[Xenomai | Xenomai install instructions]]
 
 
* [[Xenomai:Blinking LEDs | LEDs tutorial]]
 
* [[Xenomai:Blinking LEDs | LEDs tutorial]]
 +
* [[Xenomai | Xenomai installation instructions]]
 
* [http://www.xenomai.org Xenomai main page ]
 
* [http://www.xenomai.org Xenomai main page ]
  

Latest revision as of 11:13, 15 February 2010

Page under construction... Construction.png Informations on this page are not guaranteed !!


Xenomai is a Linux kernel real time extension. For explanations on how to install it, take a look at Xenomai install instructions.
The directory target/demos/real_time/ contains a set of examples for Xenomai evaluation.
For each example, a "functionnal equivalent" version is available for Linux environnement, in order to make some comparison.

Structure

Directories named linux contain the examples for Linux and the directories named xenomai contain the real time examples.
For each of them, a subdirectory called user_space or kernel specifies the programmation domain.

Configurations & compilation

Once you are in the directory of an example, you just have to type make to compile it and make install to install it on /tftpboot/local/bin directory on your computer.

Running

Kernel drivers

Loading and unloading a kernel driver is standard, like every other Linux kernel driver.

  • To load the driver
# insmod your_driver
  • To unload it
# rmmod your_driver

User Space applications

If it's a userspace application, you have to type:

# xeno-load your_application 

Others examples

The directory $ARMADEUS_XENOMAI_DIR/examples contains many other examples:

$ make shell_env
$ source armadeus_env.sh
$ cd $ARMADEUS_XENOMAI_DIR/examples

Links