Questions when Work with ROS2 Messages Using MATLAB Function Block
6 次查看(过去 30 天)
显示 更早的评论
Hello!
I have a question with the matlab functions while dealing with the ros2 messages.
Following the intructions I run successfully with the ros1 blank message, but when I changed to the ros2 blank like the screenshot, the matlab has no response after typing ros.createSimulinkBus(gcs).
Do you konw why this is no use with the ROS2 blank messages?
The link is: https://de.mathworks.com/help/ros/ug/work-with-ros-messages-in-simulink.html
Thanks!
0 个评论
采纳的回答
Abhijeet Gadkari
2022-2-23
编辑:Abhijeet Gadkari
2022-2-23
Hello Xiaochen,
The function, ros.createSimulinkBus(modelName), is not intended for use with a Simulink model containing ROS 2 blocks. This function only works (searches) for the ROS blocks in the Simulink model.
For ROS 2 blocks, use ros.ros2.createSimulinkBus(modelName) function instead.
This function will create the buses, if the OpenFcn callback of the model has not done so already, and return the name of the buses as a cell-array.
-Abhijeet
3 个评论
Abhijeet Gadkari
2022-2-24
编辑:Abhijeet Gadkari
2022-2-24
Hello Xiaochen,
For ROS 2, buses are not saved in the base workspace anymore; this is currently a limitation of ROS 2 blocks. The buses are saved in an internal Simulink dictionary workspace that is not visible.
However, you can still use the names of the buses returned by ros.ros2.createSimulinkBus(modelName) function to access bus in Simulink.
For instance, copy the name of the bus and set the input/output data-type values of the MATLAB function block as shown below:
-Abhijeet
更多回答(0 个)
另请参阅
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!