Tagged Questions

3
votes
1answer
908 views

Finding available LPT (parallel) ports and addresses in Delphi

I am doing direct I/O on a parallel port which is fine and necessary for speed. I would like to enumerate the available ports to offer the user a choice of ports at setup time rather than a tedious ...
2
votes
2answers
436 views

Windows Monitoring a parallel or LPT port

Does anyone know a good library to allow us to programmatically monitor a parallel port (or LPT port) in windows. There are lots of good ones for Serial ports but I have had no luck yet for parallel ...
1
vote
1answer
119 views

LPT I/O address mapping in PC

I heard about USB to LPT adapters that are capable of mapping PC legacy parallel port address. What is the level of such mapping? I mean - is it possible to access the adpater's pins by using 'in' or ...
0
votes
1answer
34 views

vxWorks Parallel Port write() Failure

I'm attempting to write to the parallel port for the first time using the vxWorks lptDrv driver, but a call to write() always seems to return a -1. Here's the code I'm using: #define PARALLEL_PORT ...
0
votes
3answers
2k views

C# LPT inpout32.dll

I don't get any error or exception. Button in one Window: private void button1_Click(object sender, EventArgs e) { ControlPort.Output(0x378, 0xff); } and inpout.dll interface: class ...
0
votes
1answer
292 views

C# LPT Name problem

How can I send output to LPT in C#. I use SerialPort class. I set port name to "LPT1" and I'm getting this error. The given port name does not start with COM/com or does not resolve to a valid ...
0
votes
1answer
92 views

inpou32.dll doesn't work on my computer

I've tried to run the following code on my PC. With PORT 0x378 (LPT1 data) it works fine. But with PORT 0x379 (LPT1 status) it always returns 126 no matter what I output in the previous line. 0x37A ...