Windows Custom Device Driver Control

1 回表示 (過去 30 日間)
Thomas Carpenter
Thomas Carpenter 2014 年 3 月 17 日
コメント済み: Eric Sampson 2014 年 6 月 11 日
Hi,
I have written a driver for a device I am making and need to interface the device with MATLAB. Essentially the driver is a kernel mode Windows driver written around WDF. I can already access the driver using the Windows APIs: "GetDevicePath()", "CreateFile()", "WriteFile()" and "ReadFile()" from a C++ program.
So the question is, is there a MATLAB equivalent to the aforementioned functions? If not how is the best way to go about this?
Thanks.

採用された回答

Eric Sampson
Eric Sampson 2014 年 3 月 18 日
Hi Tom, my initial thoughts would be to investigate one of the following:
a) write a C/C++ dll API for your driver, and then load it into MATLAB using LOADLIBRARY.
b) write a .NET assembly API for your driver, and then use MATLAB's ability to load .NET assemblies.
c) write a MEX function to control the driver directly via WDF Windows APIs.
I would lean towards option a), because that way you will end up with a C/C++ DLL that you can reuse in other contexts/languages, and calling DLL functions in MATLAB using LOADLIBRARY is very painless.
I hope that helps :)
  3 件のコメント
Thomas Carpenter
Thomas Carpenter 2014 年 3 月 19 日
Got it working. I've created a DLL wrapper for the driver and have successfully got loadlibrary() and calllib() working. Thanks :)
Eric Sampson
Eric Sampson 2014 年 6 月 11 日
Awesome, thanks for the update! Missed seeing it somehow :)

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeC Shared Library Integration についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by