I am doing IO programming in C in Ubuntu. And I need the base address of the port to write data.

My laptop dont have a parallel port. So I bought a USB to Parallel port connector. I plugged in the device and its getting detected in /dev/usb/lp0

I ran "lsusb" to see the list of devices and I can see the ID also. But how can I get the base address ? For the usual hardware parallel devices, the base address is 0x0378. this address is not getting detected while using USB to Parallel device.

Please help.

link|improve this question
feedback

2 Answers

A USB parallel port doesn't have a base address - it's not a meaningful concept for USB. I'm afraid the days of doing I/O on PC hardware via in and out instructions ended a few years ago, though lots of old tutorials still survive on the web.

You can write bytes to the parallel port as a character device, and these will appear on the printer port pins. The USB adapter will expect the other end to handshake data exactly like a printer. If you want to do general I/O prototyping, you're probably better off with a simple USB microcontroller like an Arduino.

Further discussion here.

link|improve this answer
1  
I wasted a lot of time on parallel port. But can you give some instruction on using USB with C++ .. Its looking 100times more complicated than parallel port to me. – shababhsiddique May 12 '11 at 7:38
You're right that it's more complicated - the parallel port is just a set of IO pins, but USB is a complete message protocol. For the host side of USB programming, I'd start with libusb (libusb.org). The USB specification is available (usb.org/developers/docs), but quite verbose. There are some tutorials for embedded developers (computer-solutions.co.uk/info/Embedded_tutorials/…) that may also help. – Adrian Cox May 12 '11 at 19:54
feedback

If you are still interested to use this USB-to-parallel-printer device for your own bit-banging, it's important to know that their built-in firmware always allows controlling of D0..D7, INIT (as outputs), /ERR, ONL, PE (as inputs), but never for /ACK, BUSY (inputs), /STB, /AF, /SEL (outputs) pins. And you need an 8-bit latch (e.g. 74HCT574) for catching data while strobing.

See here (http://www.tu-chemnitz.de/~heha/usb2lpt/faq#DIY) especially for possible data rates.

Accessing from software side is a bit complicated but possible, and you may have to re-structure your software and hardware for making such adapters useable. I don't know for Linux case how to access, but IMHO you don't need to write a kernel-mode driver.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.