The parallel-port tag has no wiki summary.
0
votes
0answers
30 views
C library parapin and IRQ
I am not a C programmer, but now I have a small problem that require a C program solution.
The problem: on one server where I have hosted an asterisks and other services, when one button is pressed ...
0
votes
1answer
52 views
0x378 port address in short int
I have two methods:
short _stdcall Inp32(short portaddr);
void _stdcall Out32(short portaddr, short datum);
These are to access the ports of the ECP Parallel port. The problem is my data ...
-4
votes
0answers
57 views
Sending data through usb port to communicate with hardware? [closed]
I am doing a project on sending the data through USB port or DB15 port. I want to send data to a relay which is connected to a bulb in a circiut through usb port or DB 15 port by doing a programming ...
0
votes
0answers
41 views
Using PyParallel in Windows XP
I have successfully implemented the PyParallel module in both Linux and Mac OSX as part of a large application to interface with a sensor I am developing.... I am now attempting to use this ...
0
votes
0answers
26 views
Sending hardware signal
I want to send a hardware signal to a relay through my computer(The relay connects a bulb and a computer).
I am using an IC ULN2803 to interface the relay with a VGA port of the computer. Now I have ...
0
votes
1answer
64 views
how to read status registers of a printer in qnx
i am using an x86 processor.
the interface used to connect to the printer is a usb parallel port ieee1284.
i can send data to the printer no problem.
i have tested it with the following command.
cat ...
0
votes
2answers
190 views
Assembly I/O programming
I have learned a bit of assembly code and also learned that there is't that much good tutorials on the internet for this. I was wondering about sending signals with to certain devicesex. parallel ...
2
votes
1answer
109 views
The best way to predict performance without actually porting the code?
I believe there are people with the same experience with me,
where he/she must give a (estimated) performance report of
porting a program from sequential to parallel with some
designated multicore ...
2
votes
1answer
209 views
Detect if parallel port exists
I have a C# program that manipulates 2 wires using a variety of methods one of which is using a parallel port interface.
The user selects which method they would like to use and I would like to ...
-1
votes
2answers
354 views
Control parallel port using C# Mono in Linux
As per the title, I want to control a parallel (LPT) port using C# in Ubuntu.
Are there any inbuilt libraries in Mono that will allow me to do this?
Can anyone give any code examples of making this ...
0
votes
0answers
192 views
Assembly language and parallel port
I am working on this project.
http://www.codeproject.com/Articles/441038/7-Segment-Display-Multiplexing-Control-with-Parall
The hardware is ready and the code is ready. I used Visual Studio 2010 ...
2
votes
1answer
245 views
VB.NET USB to Parallel programming
Before I was working on PC that had integrated Parallel port, but now I have laptop computer and I bought USB to Parallel port converter hoping that I can work on application that will communicate ...
0
votes
0answers
140 views
control parallel port via website
How would I control the parallel port pins via a website? I would like to have a webpage with a series of 8 buttons, on/off, one for each parallel output. All i need to do is set the pin high or low ...
0
votes
1answer
38 views
An EPP connection error occurred
I need to connect to a parallel port device which uses EPP mode to communicate. However, I get an error "An EPP connection error occurred: poll : Interrupted system call". When I try to debug using ...
0
votes
1answer
153 views
turn on LED using C
I want to turn on a LED using C, meaning that I want to write on parallel port.
but the code doesn't work.
I use char ledStatus instead of BYTE ledStatus. is there any difference??
what is the ...
2
votes
1answer
292 views
Write to /dev/port as non-root user
I am working on a rather complex C++ code which performs the following operation as standard user
fd = open("/dev/port",O_WRONLY);
...
lseek(fd, 0x2E,SEEK_SET);
...
write(fd,&buf,1);
I get a ...
0
votes
2answers
861 views
locating base address of PCI Parallel port
I'm developing an application for DOS. I need to communicate via parallel port.
Currently I'm stuck at how can I determine which of the PCI function's BAR(Base address registers) contain the base ...
0
votes
1answer
40 views
Open pages its css and database parallel
I have big databases that contain large no of tables and have PHP/HTML file with java script and css in separate folders.Now I want is to make my page load faster when user navigates through our page ...
0
votes
3answers
441 views
Count Parallel port input frequency - C#
I have to count the input frequency of the parallel port at Pin no.13, comming from a 555 timer IC, the real frequency should be around 3-4 Hz (ON Pulse). I have tried several codes, several times but ...
3
votes
1answer
217 views
Correct way of using a windows lib in D?
I'd like to write C bindings for InpOut32 library.
First of all I downloaded binaries for this library.
There are three files in it:
inpout32.lib
inpout32.h
inpout32.dll
Here's what i've tried ...
2
votes
1answer
249 views
D accessing parallel port under windows
I can simply access parallel port with D in Ubuntu like this.
import std.stdio;
import core.bitop;
// parallel port address
const uint port = 0x0c000;
void main()
{
/*
permission ...
1
vote
1answer
106 views
Linux Module file missing
Actually I'm a beginner and I'm trying to learn the concept of low-level driver and high level driver. I want to know how a module depends on other modules for their operation.
I've done lsmod ...
0
votes
0answers
83 views
parport module source code
I've done lsmod command. I found these lines in the output.
parport_pc 25962 1
lp 7028 0
parport 32635 3 ppdev,parport_pc,lp
From the above ...
2
votes
3answers
383 views
Porting a simple c program from linux to windows
I want to write a simple c program to do the following. Open a connection to a parallel port, make pin 2 high, make pin 2 low and close the connection. I am using JNI for this, so my Java source file ...
1
vote
1answer
345 views
Is possible to program LCD 20X2 display using parallel port?
I'd like to use a LCD DISPLAY using C#, while I was searching I realized several persons uses PICS to do this, I just want to know if this is possible using this language?
And if it's possible, some ...
1
vote
2answers
271 views
Control a robotic arm
I have a Cyber Robot CYBER 310 and a Sciento CS-113 robotic arm with no documentation. Both use a parallel port.
How could I program those?
For the Cyber one, I found this:
Nothing at all on the ...
0
votes
1answer
292 views
WriteFile to Parallel port hangs
I am writing an activex control that will access the parallel port and write the bytes to it. I am able to open the port succesfully but when i write it hangs at WriteFile function. Did i miss ...
0
votes
3answers
1k views
Parallel Port Java Programming
how to control data bits of a parallel port via java.actually i am making a project on " WEB BASED POWER HANDLING" in which i have to control devices remotely from other machines over internet through ...
1
vote
1answer
255 views
What is the most suitable virtual machine software for sharing hardware ports (COM, LPT etc) at register level?
I'm using Delphi to develop real-time control software and over the last couple of years I have done some work running older Windows installations under Microsoft's VirtualPC and it works fine for ...
-2
votes
1answer
222 views
Getting input from the printer port in assembly? [closed]
Is there a way to accept input through the parallel (printer) port in x86 assembly? My friend is designing a chip, that connects to the printer port, that has switches on it to poll for input. He ...
1
vote
1answer
585 views
/dev/port vs /dev/mem
I need some clarification. I can directly write to /dev/port to get direct access to a parallel port and it works fine (I can turn on LEDs plugged into the port connector). However, I thought I ...
0
votes
0answers
436 views
Enable dBASE III program to print on USB printer
I have a friend with an ancient dBase III program. He says it does not print when connected to a USB parallel port printer and is considering converting the program to MS-Access. There are some 400 ...
1
vote
0answers
1k views
Write to parallel port in Windows 7
I need to output 8 bit data through parallel port in my C# code. I am using Windows7 Ultimate and have a Intel 945GCNL motherboard which has a parallel port and configured to address 0378-037F. The ...
1
vote
1answer
526 views
Creating a virtual parallel for Windows 7 using C++
I am developing an application which would redirect i/o from parallel port of, say, device A to the parallel port of device B. The two devices are connected on ethernet (LAN, WAN, internet, etc.).
...
4
votes
2answers
2k views
Finding Memory Address of a Parallel Port on Linux
I'm trying to find the base (memory) address of a parallel port I have connected to my laptop via a PCI express card. Running lspci -v shows that my computer recognizes the parallel port and gives ...
0
votes
2answers
802 views
C# - Read Parallel Port State (Simple Push Switch)
I am updating in C# some software that was originally written in VC++ V1.0 for DOS6.
One aspect of the software is a check on the parallel port, where a simple push-button switch is connected. I ...
1
vote
2answers
2k views
Method without return value in python c extension module
I'm trying to create a script in python that sends data through a parallel port. I'm creating my own module in C language.
The problem is: when I try to execute my module, python crashes. No errors, ...
0
votes
1answer
701 views
Ruby serial / parallel port manipulation
I wonder if some of you are working with hardware/circuitry via serial or parallel port in ruby, not with arduino or something similar, just sending receiving pulses thru the ports to a breadboard? or ...
2
votes
2answers
2k views
Converting Visual Basic parallel port app using inpout32.dll in to Delphi
I've been given this simple VB application and library which I'm told can open a door/turnstyle attached to the printer port at 0x378 base address.
'Inp and Out declarations for port I/O using ...
1
vote
0answers
391 views
continuous data acquisition from parallel port in Java
For one of my projects, that is related to nerve conduction study, I need to acquire data continuously from a parallel printer port in Windows XP. The analogue data is processed by an Analogue to ...
0
votes
0answers
2k views
Write to a parallel port on windows 7
I try to find out how to access a parallel port for writing some bits on a Windows7 machine. This parallel port ist located on a PCI-Card, and is automatically installed by Windows7 and can be ...
1
vote
3answers
696 views
What is the outp() counterpart in gcc compiler?
In my School my project is to make a simple program that controls the LED lights
my professor said that outp() is in the conio.h, and I know that conio.h is not a standard one.
example of outp()
...
1
vote
1answer
111 views
On CPU start-up cause Start-up my Device Connected on ParallelPort? [closed]
I am using ParallelPort to do communicate with One Electric Device.
My Task on ParallelPort is to just start and stop device.
For that I have write up following code:
One static Class ParellelPort ...
0
votes
0answers
348 views
access parallel port interrupts in python under linux
Is there any such thing as a python module that will allow me to access parallel port interrupts (pin 10) under Linux?
P.S. Do not respond with "PyParallel" unless you can provide me with a working ...
0
votes
1answer
153 views
Easy and efficient language for cross platform parallel port interfacing
I want to use parallel port (LPT) to receive and send data, i have done that before in various language in different OS, like VB in windows, C in linux.
But now, i want to use a language (and a ...
0
votes
1answer
650 views
how to write/read to parallel port in assembly language(linux)?
how to write/read to parallel port in assembly language(linux)?
my plan is this
connect LEDs to parallel port
from the linux machine(ubuntu 10.10), write to parallel port. so I see lightened LEDs.
...
11
votes
2answers
7k views
Open source Portmon
Portmon from Sysinternals is a great tool I have used a lot. I've looked around for a while but can't see any open source alternatives - does anyone know of one?
2
votes
2answers
865 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 ...
4
votes
1answer
440 views
Use of parallel / serial port redirection to transfer data from Terminal desktop to local computer
Amongst features of terminal desktop services running RDP port, there is port redirection of parallel/serial from remote to local PC.
Can this redirection be somehow used to transfer large data to ...
0
votes
1answer
675 views
How to use parallel port to work like switch which read(get) signals and in java listening to that which is true or not?
Hi
i want to use lpt port for interfacing the switch (for example ,signal the 5v to some pin) listening to some pin and notify my app ?
i use rxtx-2.1-7-bins-r2 in windows.
i used the ...

