Borrar filtros
Borrar filtros

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

3 visualizaciones (últimos 30 días)
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

Respuesta aceptada

Matteo Pellegri
Matteo Pellegri el 1 de Nov. de 2023
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

Más respuestas (0)

Etiquetas

Productos


Versión

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by