Hello,
I'm using the service /store_pose to save the dock_pose in the yaml file.
The problem arise when I try to read from the generated .yaml file, getting:
[neo_docking2-1] [ERROR] [1706703526.422064830] [rcl]: Failed to parse global arguments [neo_docking2-1] terminate called after throwing an instance of 'rclcpp::exceptions::RCLInvalidROSArgsError'
The error here, is how storing the 0 value. It expects a double and get an int, leading to an error.
Changing by hand 0 to 0.0, the parameters are properly read.
Hello, I'm using the service
/store_pose
to save thedock_pose
in the yaml file.The problem arise when I try to read from the generated
.yaml
file, getting:[neo_docking2-1] [ERROR] [1706703526.422064830] [rcl]: Failed to parse global arguments
[neo_docking2-1] terminate called after throwing an instance of 'rclcpp::exceptions::RCLInvalidROSArgsError'
The generated pose is:
The error here, is how storing the
0
value. It expects adouble
and get anint
, leading to an error. Changing by hand 0 to 0.0, the parameters are properly read.