No description
Find a file
2023-05-22 11:07:45 -04:00
src/priority_executor quick test to make the the queue behaves 2023-05-22 11:07:45 -04:00
README.md make a slimmed-down branch with just the exector and usage example 2022-04-07 20:32:01 -04:00

This contains the priority_executor package that adds an Executor with deadline and chain-aware priority support.

  • simple_timer contains timing related functions, and a wrapper for calling some kernel scheduling functions
  • priority_executor contains the modified executor and some nodes to test it

In priority_executor:

  • priority_executor.cpp subclasses rclcpp::Executor to allow for additional customization
  • priority_memory_strategy.hpp is a modified version of rclcpps allocator_memory_strategy.hpp that selects callbacks based on either the earliest deadline, or a relative priority. Executor polls this for ready callbacks.
  • usage_example.cpp shows how to set deadlines for callbacks and timers

the main branch of this repository has the test scripts and nodes used in the paper.