Simulink Real Time Speedgoat and App Generator
6 次查看(过去 30 天)
显示 更早的评论
Hi there,
I am trying to build an user interface by starting with the App Generator. App Generator creates a basic app with all the components required to connect the generated app to the Speedgoat machine. When I try running the app from the Run button the Speedgoat machine cannot be found.
Actually I don't know how to provide the IP address ( if I have to) as I did in the Simulink real time explorer. If I connect the Speedgoat (target PC) to the Host Pc in Simulink Real Time Explorer it is works.
Any idea?
Thank you
Regards
0 个评论
采纳的回答
Dimitri MANKOV
2022-12-9
Hi Daniel,
You can insert a "Target Selector" UI component to your App Designer interface to select the target machine you'd like to connect to. By default, this component displays the list of all named target computers currently defined in Simulink Real-Time Explorer on the host computer.
You can also include the following code in the startup callback of your app:
% Create target object
app.tg = slrealtime;
% Initialize target properties
app.tg.TargetSettings.address = '192.168.7.5';
I hope this is helpful!
Dimitri
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Target Computer Setup 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!