<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://wiki.eeros.org/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="https://wiki.eeros.org/feed.php">
        <title>Real-Time Robotics Framework - tools</title>
        <description></description>
        <link>https://wiki.eeros.org/</link>
        <image rdf:resource="https://wiki.eeros.org/_media/logo.png" />
       <dc:date>2026-05-10T11:39:24+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://wiki.eeros.org/tools/config?rev=1606993305&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.eeros.org/tools/cplusplus?rev=1625765497&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.eeros.org/tools/logging?rev=1527756412&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.eeros.org/tools/singlestepping?rev=1552552475&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.eeros.org/tools/start?rev=1718024471&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.eeros.org/tools/wdt?rev=1718033045&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://wiki.eeros.org/_media/logo.png">
        <title>Real-Time Robotics Framework</title>
        <link>https://wiki.eeros.org/</link>
        <url>https://wiki.eeros.org/_media/logo.png</url>
    </image>
    <item rdf:about="https://wiki.eeros.org/tools/config?rev=1606993305&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2020-12-03T11:01:45+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>Configuration Files</title>
        <link>https://wiki.eeros.org/tools/config?rev=1606993305&amp;do=diff</link>
        <description>Configuration Files

There is often a need to load a configuration from a text file on the disk or write configuration into such a file. This could be calibration data, ip-numbers, etc. This can be achieved in EEROS by packing this configuration data into a class as follows:</description>
    </item>
    <item rdf:about="https://wiki.eeros.org/tools/cplusplus?rev=1625765497&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2021-07-08T17:31:37+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>C++ for Beginners</title>
        <link>https://wiki.eeros.org/tools/cplusplus?rev=1625765497&amp;do=diff</link>
        <description>C++ for Beginners

This is a very short introduction into a couple of concepts of C++. It should enable a beginner without knowledge in C++ to properly use EEROS in an own simple application.

Namespaces

With namespaces you can group entities such as classes or enums under a choosen name. In this way the global scope can be split into subscopes with distinguished names. EEROS heavely uses namespaces.</description>
    </item>
    <item rdf:about="https://wiki.eeros.org/tools/logging?rev=1527756412&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2018-05-31T08:46:52+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>Logging</title>
        <link>https://wiki.eeros.org/tools/logging?rev=1527756412&amp;do=diff</link>
        <description>Logging

	*  Logging
	*  Logging Signals in the Control System
	*  Logging with a Trace Block
	*  Monitoring Execution Timing</description>
    </item>
    <item rdf:about="https://wiki.eeros.org/tools/singlestepping?rev=1552552475&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2019-03-14T08:34:35+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>Single Stepping of Sequences</title>
        <link>https://wiki.eeros.org/tools/singlestepping?rev=1552552475&amp;do=diff</link>
        <description>Single Stepping of Sequences

During the development process it can be useful to be able to run sequences in single stepping mode. For this purpose you can remote connect to the machine running the EEROS application and run sequences in single stepping mode. As soon as the sequencer is created (see</description>
    </item>
    <item rdf:about="https://wiki.eeros.org/tools/start?rev=1718024471&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-06-10T13:01:11+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>Tools for EEROS</title>
        <link>https://wiki.eeros.org/tools/start?rev=1718024471&amp;do=diff</link>
        <description>Tools for EEROS

Several tools facilitate the development and use of a EEROS system.

Logging

	*  Logging
	*  Logging Signals in the Control System
	*  Logging with a Trace Block
	*  Monitoring Execution Timing

Miscellaneous

	*  Vectors and Matrices
	*  Using a Watchdog
	*  Single Stepping of Sequences
	*  Configuration Files
	*  C++ for Beginners</description>
    </item>
    <item rdf:about="https://wiki.eeros.org/tools/wdt?rev=1718033045&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-06-10T15:24:05+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>Using a Watchdog</title>
        <link>https://wiki.eeros.org/tools/wdt?rev=1718033045&amp;do=diff</link>
        <description>Using a Watchdog

A watchdog device can greatly improve the overall safety of a system. We recommend to periodically reset such a watchdog from within the main time domain of the control system, e.g. the time domain which runs your actuators. Set the watchdog time to a reasonable multiple of the period of the time domain. Now, if your system gets stuck and your time domain does not run within its desired limit, the watchdog will timeout and switch off your drives.</description>
    </item>
</rdf:RDF>
