User Tools

Site Tools


eeros_architecture:safety_system:start

Safety System

The safety system is key to the EEROS framework. It regulates all interaction with the HAL (Hardware Abstraction Layer) and uses a safety level to determine the future course that the robot should take. If the situation becomes less safe, the robot may have its movement restricted to avoid damaging nearby people, materials, or itself.

All critical hardware inputs are read and all critical hardware outputs are driven by the safety system. So called safety levels exactly define in which state a robot can be. Such a level could be initializing, homing or running.

Key Features of a Safety Level

  • A safety level ….
    1. has a unique id number
    2. has a unique name
    3. defines the state of all critical outputs
    4. defines conditions for the critical inputs, which are checked periodically by an inspection task
    5. can accept certain events
    6. can cause events
  • The order of the safety level numbering corresponds to the potential damage in case of an error
  • The actual safety level can be requested by the Control System and the Sequencer
  • There are no hidden states in the safety system, such as “do this first, then …”. Each step corresponds exactly to a safety level.

Events

A change of the safety level can only be caused by an event. An event could be caused by the safety system itself. In this case, we call the event private. It could also be caused by the Control System or the Sequencer. If so, we call it a public event.

Events are exclusively received and handled by the safety system. An event can cause a change of the safety level. Such a change can happen only if this specific event was registered for the current level. The next figure shows a couple of safety levels together with associated events causing a level change.  //Typical safety levels and associated events//

  • If the safety system itself causes an event leading to a change of the safety level, this level change takes place only after the safety system completes this run.
  • Multiple events fired during a single safety period would lead to ambiguities. The event leading to a lower prioritized safety level wins, while the other events are cancelled.

What does the Safety System do ?

The most important function of the safety system is its run method. This method is called periodically by the executor. Here's how it works:

  void SafetySystem::run() {
 
    // 1) Read inputs and check them
    for(auto ia : level->inputAction) {
      if(ia != nullptr) ia->check(&privateContext);
    }
 
    // 2) Execute level action
    if(level->action != nullptr) level->action(&privateContext);
 
    // 3) Set outputs
    for(auto oa : level->outputAction) {
      if(oa != nullptr) oa->set();
    }
  }

If you want to learn more about the individual parts of the safety system, look at the links below:

eeros_architecture/safety_system/start.txt · Last modified: 2023/02/26 17:59 by ursgraf