- Please rename libstdc++.so.6 file located in "matlabroot/sys/os/glnxa64" so that MATLAB cannot find it and is forced to use the system's version of the library. Renaming it to libstdc++.so.6.old should suffice. (where "matlabroot" is root installation directory of MATLAB).
- Please delete the previously generated folders during ros2genmsg() execution and run reg = ros.internal.CustomMessageRegistry.getInstance('ros2',true); reg.refresh(true); to remove the existing ros2 custom messages.
- Now please regenerate the custom messages using ros2genmsg() in R2022b MATLAB and check if you still face the issues.
custom message error in ros2 with simulink
49 次查看(过去 30 天)
显示 更早的评论
I made a custom message using the "ros2genmsg()" function in matlab and successfully made my custom message.
And when i test the message in simulink, i get an error message claiming
STD exception 'mwboost::wrapexcept<mwboost::exception_detail::current_exception_std_exception_wrapper<std::invalid_argument> >': 'Connection to process with Exchange: "5f1470ff-8f66-40e9-84fb-5f3bfd116a13 " was lost.' was caught.
I have no idea what i have missed here. When i use the provided message by matlab like "std_msgs" it works fine, but when i use my custom message, the simulink shows error shown above and likely breaks the simulink.
you can see from the picture below, my custom message "tire4_debug_msgs" is shown when i type ros2 msg list
I wanna know how i can fix this and make it right.
i'll give the the needed information for you guys if you leave a comment.
Thanks.
enviroment:
matlab R2022b
ubuntu22.04 / humble
0 个评论
采纳的回答
Prabeen Sahu
2023-4-4
编辑:Prabeen Sahu
2023-4-4
Hi,
Thanks for helping in investigation. This issue might be due to an incompatibility between the libstdc++ shipped with MATLAB and the libstdc++ shipped with "Ubuntu 22.04 LTS".
Please try the following workaround:
-Pabeen
6 个评论
Tobias
2024-1-30
Hi!
I'm also still having that issue with R2023b and Ubuntu 22.04 LTS, when trying to run or compile Simulink models with ROS2 subscribers that apparently use the code generation via this library.
The solution above didn't work for me either. Has anybody found another solution?
Best regards
Tobias
Diego
2024-6-5
Hello,
I'm having this problem too, with R2023b and Ubuntu 22.04 LTS when using custom messages. The accepted answer doesn't solve it, and I couldn't find any newer solution in forum.
@Prabeen Sahu do you know why your workaround works for 2022b and 2023a, but not for 2023b?
Regards,
Diego
更多回答(2 个)
Prabeen Sahu
2023-4-3
Hi,
please provide us with the following information:
- What is the operating system that you are running your MATLAB on?
- Are you experiencing this issue only with this particular custom message package or with any custom message?
- Could you specify the exact moment when you encounter this issue? Is it when you select the topic or when you start running the model?
- When you face this issue, please execute ros2 topic list in the MATLAB command window and verify if the topic appears in the list.
- Do you encounter this issue when both the publisher and subscriber are in R2022b MATLAB ( Publish the messages using ros2publisher and subscribe them using ros2subscriber)?
Thanks,
Prabeen
3 个评论
Prabeen Sahu
2023-4-4
Hi,
Please run the below mentioned commands in MATLAB to clear the existing custom messages
reg = ros.internal.CustomMessageRegistry.getInstance('ros2',true);
reg.refresh(true);
Now please regenerate the custom messages using ros2genmsg() in R2022b MATLAB and check if you still face the issues.
If you still face the issues please use below mentioned code to create both publisher and subscriber in R2022b MATLAB and publish the messages using ros2publisher and subscribe them using ros2subscriber.
nod = ros2node("/testnode");
pub = ros2publisher(nod,"/control/trajectory_follower/lateral/diagnostic","tire4_debug_msgs/Float32MultiArrayStamped");
sub = ros2subscriber(nod,"/control/trajectory_follower/lateral/diagnostic");
msg = ros2message(pub);
pub.send(msg);
msg = sub.LatestMessage
Please check and inform us if you were able to receive the message(msg) without any problems. This testing will aid us in comprehending and pinpointing the issue.
Additionally, please specify which flavor of Linux you are using to run MATLAB.
-Prabeen
Prabeen Sahu
2023-4-4
Hi,
Thanks for helping in investigation. This issue might be due to an incompatibility between the libstdc++ shipped with MATLAB and the libstdc++ shipped with "Ubuntu 22.04 LTS".
Please try the following workaround:
- Please rename libstdc++.so.6 file located in "matlabroot/sys/os/glnxa64" so that MATLAB cannot find it and is forced to use the system's version of the library. Renaming it to libstdc++.so.6.old should suffice. (where "matlabroot" is root installation directory of MATLAB).
- Please delete the previously generated folders during ros2genmsg() execution and run reg = ros.internal.CustomMessageRegistry.getInstance('ros2',true); reg.refresh(true); to remove the existing ros2 custom messages.
- Now please regenerate the custom messages using ros2genmsg() in R2022b MATLAB and check if you still face the issues.
-Pabeen
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Custom Message Support 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!