Skip to content
Merged
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
4 changes: 3 additions & 1 deletion hardware_interface/src/resource_manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -989,8 +989,10 @@ class ResourceStorage
{
if (interface)
{
for (auto & [hw_name, limiters] : joint_limiters_interface_)
for (auto & entry : joint_limiters_interface_)
{
auto & limiters = entry.second;

// If the prefix is a joint name, then bind the limiter to the command interface
if (limiters.find(interface->get_prefix_name()) != limiters.end())
{
Expand Down