how to reinitialize usb device

7 次查看(过去 30 天)
Is there a way to reinitialize or re-instantiate a usb device in matlab? I am using a Total Phase Aardvark spi controller and if I try to run the script a 2nd time I always get a "Error communicating with Hardware" error for the Aardvark. I do a disconnect at the end of the script and clear the comport variable.

采纳的回答

Star Strider
Star Strider 2016-2-26
We would need to see your code.
You will likely have to use the delete function to completely clear the serial object first.
  2 个评论
Randy Gatewood
Randy Gatewood 2016-2-26
编辑:Star Strider 2016-2-26
% connect to aardvark
spi0 = spi('aardvark', 0, 0);
spi0.BitRate = 8000000;
pause(.2);
connect(spi0);
... pgm here ...
disconnect(spi0);
clear spi0;
Star Strider
Star Strider 2016-2-26
I didn’t realise you were using the Instrument Control Toolbox. I just added it as a Product Tag to your post.
I don’t have it, so I have no experience with it. (It’s not required to connect to serial devices with USB, and while I’ve used USB devices, I’ve always just used the serial capabilities in core MATLAB, or the Hardware Support Packages for Arduino and Raspberry Pi.)
The only thing I can do is to direct you to the resources you’ve likely already surfed: SPI Communication for the Instrument Control Toolbox, and to Contact Tech Support if none of the documentation options work.

请先登录,再进行评论。

更多回答(0 个)

标签

Community Treasure Hunt

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

Start Hunting!

Translated by