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

Merged
merged 46 commits into from
Aug 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
882919f
Initial draft
xiyuoh Mar 25, 2022
64baf02
Added Configuration and make()
xiyuoh Apr 21, 2022
4518d3c
Merge branch 'open-rmf:main' into feature/easyfullcontrol
xiyuoh Aug 23, 2022
a463312
Merge branch 'main' into feature/easyfullcontrol
xiyuoh Aug 26, 2022
d755f0e
WIP draft added partial implementation
xiyuoh Aug 26, 2022
bbcd0ca
Minor cleanup
xiyuoh Aug 26, 2022
59eef3e
Update
xiyuoh Sep 1, 2022
6e3c69a
Working draft without dock
xiyuoh Sep 2, 2022
52d6784
Add docking
xiyuoh Sep 12, 2022
7fb14fb
Merge branch 'main' into feature/easy_full_control
xiyuoh Sep 13, 2022
6006cfa
Fix docking problems
xiyuoh Sep 13, 2022
38ae86b
Add ActionExecutor
xiyuoh Sep 13, 2022
271cd1b
Uncrustify
xiyuoh Sep 13, 2022
6be6d55
Cleanup
xiyuoh Sep 13, 2022
e58650d
Merge branch 'main' into feature/easy_full_control
xiyuoh Sep 19, 2022
b1c0218
Remove easy_main
xiyuoh Sep 19, 2022
66ce9dd
Add python bindings
xiyuoh Sep 19, 2022
043ffac
Add rmf to robot transformer
xiyuoh Sep 20, 2022
1e9ef02
Apply async behavior fixes
xiyuoh Sep 20, 2022
ce49e6a
Add replanning
xiyuoh Sep 20, 2022
c3a1be7
Update parse_waypoints
xiyuoh Sep 20, 2022
13c19a0
Merge branch 'main' into feature/easy_full_control
xiyuoh Sep 20, 2022
ef42c63
Merge branch 'main' into feature/easy_full_control
Yadunund Oct 7, 2022
38cbdad
Refinements to EasyFullControl (#244)
Yadunund Nov 4, 2022
c0ccb59
Iterate on API (#247)
xiyuoh Dec 9, 2022
5848f87
Merge branch 'main' into feature/easy_full_control
xiyuoh May 16, 2023
8843f44
Invert navigation and docking request callback relationship
xiyuoh May 18, 2023
e77d61b
Uncrustify
xiyuoh May 18, 2023
e4f2912
Merge branch 'main' into feature/easy_full_control
xiyuoh May 18, 2023
8c16ec4
Merge branch 'main' into feature/easy_full_control
Yadunund May 29, 2023
85707b0
Pass worker to data
Yadunund May 30, 2023
8cda989
Add Transformation header file
xiyuoh May 30, 2023
8765d80
Update ActionExecution methods and minor fixes
xiyuoh May 30, 2023
7d2f03a
Fix pybind and move transform to Transformation class
xiyuoh May 30, 2023
400282a
Uncrustify
xiyuoh May 30, 2023
607beb2
Missed out removing update_request from header
xiyuoh May 30, 2023
afef64c
Update replan and override schedule
xiyuoh May 31, 2023
33dc617
Move transform out of Transformation
xiyuoh May 31, 2023
0e1c2ae
Merge branch 'main' into feature/easy_full_control
xiyuoh Jun 15, 2023
67079c2
Reactive easy full control (#286)
mxgrey Aug 14, 2023
8baba9a
Merge branch 'main' into feature/easy_full_control
mxgrey Aug 14, 2023
2cff1a6
Fix max merge lane distance import
xiyuoh Aug 17, 2023
2662e61
Turn off rmf_rxcpp tests that are producing spurious CI failures due …
mxgrey Aug 17, 2023
bca14cf
Merge branch 'main' into feature/easy_full_control
mxgrey Aug 17, 2023
3d00c33
Disambiguate type aliasing
mxgrey Aug 18, 2023
a69ec3d
Merge branch 'feature/easy_full_control' of ssh://github.com/open-rmf…
mxgrey Aug 18, 2023
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