使用Matlab进行VGA 15针端口数据读写
我使用的是带有 Windows 7 Ultimate(32 位操作系统)的 compaq presario cq40 笔记本电脑。我想使用 Matlab(最好使用数据采集工具箱)访问 15 针 VGA 端口。我需要额外的驱动程序还是应该从 Mathworks.com 下载任何内容?
我已经开发了一个程序,用于使用 DAQ 工具箱中的 digitalio() 函数通过并行端口(LPT1)发送数字信号。我打算以同样的方式使用 VGA 15 针端口(因为笔记本电脑没有并行端口)。
谢谢。
I am using compaq presario cq40 laptop with windows seven ultimate(32-bit OS). I would like to access the 15 pin VGA port using Matlab (preferrably using the Data Acquisition Toolbox). Do I require extra drivers or should download anything from Mathworks.com ??
I have already developed a program for sending digital signal through parallel port (LPT1) using digitalio() function in DAQ toolbox. I intend to use the VGA 15 pin port the same way (since there is no parallel port for the laptop).
Thank You.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
无法访问 VGA 端口上的各个引脚。
问题是显卡完全将其抽象出来(非泄漏),因此无法解决它,即使在内核级别也是如此。
无论如何,我不建议使用 VGA 端口作为数据端口。
It is not possible to access the individual pins on a VGA port.
The problem is that the graphics card completely abstracts it away(non-leakyish) so there is no way of working around it, not even at the kernel level.
I would not recommend using the VGA port as a data port anyway though.