Real-Time App Target Selector won't update the target to the selected one

조회 수: 1 (최근 30일)
Hi,
I just started using the pre-made App components for the real time library in R2022b. In the past I made my own Target selector in the app, and I just switched to the one provided by Matlab as I started using 22b. Even though the different targets are visible, when I select the one I want to connect and press the Connect button, it will connect only to the Default target. Any reason why this is happening? Am I misusing the component and need to attach a callback?
Thanks
Matteo

채택된 답변

Matteo Pellegri
Matteo Pellegri 2023년 11월 1일
I solved this by creating a start-up function and adding it to the components events callbacks
% Code that executes after component creation
function startupFcn(app)
targetSelector = app.TargetSelector;
app.ConnectButton.TargetSource = targetSelector;
app.LoadButton.TargetSource = targetSelector;
app.SystemLog.TargetSource = targetSelector;
app.StatusBar.TargetSource = targetSelector;
end

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Target Computer Setup에 대해 자세히 알아보기

제품


릴리스

R2022b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by