Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

EasyFullControl (#235) #302

Merged
merged 1 commit into from
Sep 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions rmf_fleet_adapter/include/rmf_fleet_adapter/agv/Adapter.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@

#include <rmf_fleet_adapter/agv/FleetUpdateHandle.hpp>
#include <rmf_fleet_adapter/agv/EasyTrafficLight.hpp>
#include <rmf_fleet_adapter/agv/EasyFullControl.hpp>

#include <rmf_traffic/agv/VehicleTraits.hpp>
#include <rmf_traffic/agv/Graph.hpp>
Expand Down Expand Up @@ -77,6 +78,15 @@ class Adapter : public std::enable_shared_from_this<Adapter>
const rclcpp::NodeOptions& node_options = rclcpp::NodeOptions(),
std::optional<rmf_traffic::Duration> discovery_timeout = std::nullopt);

/// Add an Easy Full Control fleet to be adapted.
///
/// \param[in] config
/// Configuration for the new Easy Full Control fleet.
///
/// \return The handle for adding new robots to the fleet.
std::shared_ptr<EasyFullControl> add_easy_fleet(
const EasyFullControl::FleetConfiguration& config);

/// Add a fleet to be adapted.
///
/// If a single real-life fleet needs to integrate robots with varying traits
Expand Down
Loading
Loading