How do you pass port number parameter data to Simulink Serial blocks
3 次查看(过去 30 天)
显示 更早的评论
I have a need to be able to set the communication port number in my serial blocks prior to running the model (e.g. via a test harness or constant string block). The goal is to have the serial ports not "hard coded" in the model just in case Win 10 reassigns the USB device to another com port.
It seems like the "Port" parameter is limited to the drop down list. Does anyone know of a mechanism to allow for external Port setting?
0 个评论
回答(1 个)
Sachin Lodhi
2023-8-30
As per my understanding, you would like to set the communication port number in your serial blocks dynamically. For this, I recommend you use the “set_param” function. To set communication port in the “Serial Configuration” block, please use the following command(use your port number instead of COM5)
set_param(gcb, "Port", "COM5");
I suggest you refer to the following documentation to know more about “set_param()” function:
The parameter name to be used in the “set_param()” function is “Port”. I suggest you refer to the following documentation for more reference:
I hope this helps you in setting the port number as an external parameter.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Programmatic Model Editing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!