0

我正在尝试在 Windows 7 和 Visual Studio 2010 下将 LPT 端口与 c++ 一起使用

#include <conio.h>
int main()
{
    _outp(0x378,00000000);
    int input=_inp(0x278);
}

但我收到了这个错误

"External component has thrown an exception."

那么如何处理呢?

4

1 回答 1

1

据我所知,出于所有实际目的,Windows 7 不再支持 LPT1,除非可能存在系统 BIOS 已知的物理 LPT1 设备。

但是,您仍然可以使用 8 个逻辑打印机端口,编号为 LPT2 到 LPT9。

于 2012-07-24T05:14:46.863 回答