- 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
    35 views (last 30 days)
  
       Show older comments
    
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 Comments
Accepted Answer
  Prabeen Sahu
    
 on 4 Apr 2023
        
      Edited: Prabeen Sahu
    
 on 4 Apr 2023
  
      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
8 Comments
  Mikhail
 on 21 Apr 2025
				Hello!
Using 2024b, getting that issue and workarounds dont work. Any solution?
  Prabeen Sahu
    
 on 22 Apr 2025
				Hi,
Please note that the workaround mentioned applies only up to R2023a.
Starting from R2023b, if there is an incompatibility between the libstdc++ shipped with MATLAB and the libstdc++ provided with Ubuntu 22.04 LTS, the ros2genmsg() process will display an error message. This message will also provide guidance on how to resolve the issue.
Please follow these steps:
- Revert Previous Workarounds:If you have implemented this workaround in R2023b or any later version of MATLAB, kindly revert those changes.
- Check System Requirements:Please refer to this link for the ROS Toolbox system requirements for each release.
- Clean Up Previous Custom Messages:Delete any previously generated folders from earlier ros2genmsg() executions.Then, run the following commands in MATLAB to remove existing ROS 2 custom messages :
reg = ros.internal.CustomMessageRegistry.getInstance('ros2', true); 
reg.refresh(true);
- Retry:Try running ros2genmsg() again. If you encounter any issues during the ros2genmsg() process, please let us know.
-Prabeen
More Answers (2)
  Prabeen Sahu
    
 on 3 Apr 2023
        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 Comments
  Prabeen Sahu
    
 on 4 Apr 2023
				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
    
 on 4 Apr 2023
        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 Comments
See Also
Categories
				Find more on Custom Message Support in Help Center and File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!








