Is it possible to capture data from USB, through Silicon Labs CP2102 UART Bridge in Matlab (Windows 10)? I could not identify specific Matlab driver for the same..
8 ビュー (過去 30 日間)
古いコメントを表示
Is it possible to capture data from USB, through Silicon Labs CP2102 UART Bridge in Matlab (Windows 10)? I could not identify specific Matlab driver for the same..
1 件のコメント
Eric Lau
2019 年 1 月 28 日
Were you able to get this working? I am interested in the same thing and haven't seen much information on the topic.
採用された回答
Walter Roberson
2019 年 1 月 28 日
You use the vendor driver and open the device as a com port using serial(). No special MATLAB driver.
I did not investigate to see if it would be possible to wrap it with visa.
0 件のコメント
その他の回答 (1 件)
Ben Barrowes
2023 年 12 月 21 日
Related to this, I bought a USB relay that is based off the CP2102, CP201x silicon labs chip, the DSD TECH SH-UR01A.
Windows10 automatically installed the correct driver, but I had to change the default termination to get matlab to talk to the device properly:
sp=serialport('COM4',9600)
configureTerminator(sp,'LF','CR/LF')
writeline(sp,'AT')
readline(sp)
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Equations についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!