Tagged Questions
3
votes
1answer
907 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 ...
0
votes
1answer
33 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
0answers
388 views
How to print with LPT Epson TM-T88III printer and JavaPoS
I want to use Epson TM-T88III printer connected to LPT port in my Java code. I use Epson JavaPoS ADK and it officially have no support of parallel ports. Other Epson SDKs - OPOS ADK and OPOS for .NET ...
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
91 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 ...