Simulink Real Time Speedgoat and App Generator
5 ビュー (過去 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 件)
参考
カテゴリ
Find more on Target Computer Setup 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!