We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efa1dec commit db10bd6Copy full SHA for db10bd6
controller_interface/include/controller_interface/helpers.hpp
@@ -55,7 +55,9 @@ bool get_ordered_interfaces(
55
throw std::range_error(
56
"Capacity of ordered_interfaces (" + std::to_string(ordered_interfaces.capacity()) +
57
") has to be equal or higher as size of ordered_names (" +
58
- std::to_string(ordered_names.size()) + ") for realtime reasons.");
+ std::to_string(ordered_names.size()) +
59
+ ") for realtime reasons. Please reserve sufficient space in the on_configure method to avoid "
60
+ "allocating memory in real-time loop.");
61
}
62
for (const auto & name : ordered_names)
63
{
0 commit comments