Restart a USB connection

12 vues (au cours des 30 derniers jours)
Mathias Westlund
Mathias Westlund le 17 Jan 2013
Hi, I have a hardware intrument with a Matlab GUI that calls a few different USB devices. From time to time a USB connection fails. To resolve this I currently need to restart Matlab, the hardware or unplugg/replug the USB device. Is there a way to restart the USB communication from Matlab wihtout restarting any of the hardware or programs?
Thanks Mathias Westlund
  1 commentaire
Mickael PIERRE
Mickael PIERRE le 12 Mar 2021
Hi there,
I have the same issue. Did you find a way around it?
Thank you,
Mickael

Connectez-vous pour commenter.

Réponse acceptée

Walter Roberson
Walter Roberson le 18 Jan 2013
Mathworks has said there is no current mechanism to do this.
A small number of people have reported success using instrreset, but that is part of the Instrument Control toolbox.
  1 commentaire
Mathias Westlund
Mathias Westlund le 18 Jan 2013
Déplacé(e) : Walter Roberson le 23 Oct 2025
Thanks Walter. I will investigate instrreset.

Connectez-vous pour commenter.

Plus de réponses (1)

Gavin
Gavin le 22 Oct 2025
See this same issue with a solution here
workaround exists: you can delete the existing serial port connection and then establish a new connection. For example:
myComPort = serial('COM5');
fopen(myComPort);
% Now disconnect the device
delete(myComPort);
clear myComPort;
% Reconnect the device; the following will now be successful:
myComPort = serial('COM5');
fopen(myComPort);

Catégories

En savoir plus sur Instrument Control Toolbox Supported Hardware dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by