create custom application name with slrealtime
조회 수: 1 (최근 30일)
이전 댓글 표시
I am deploying a model called TestModel.slx to a device using slrealtime but I want the image to be called Test01. It looks like I need to set the Application name but I don't see a property to set it in the documentation.
AppName = 'Test01';
ModelName = 'TestModel';
TargetName = 'Device-01';
tg = slrealtime(TargetName);
tg.ModelStatus.Application = AppName;
load(tg, ModelName);
댓글 수: 0
답변 (1개)
Diego Kuratli
2022년 3월 10일
You don't need to set an Application name. This line is not required:
tg.ModelStatus.Application = AppName;
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Real-Time Simulation and Testing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!