I have an USB to 25-pin parallel port cable. I connected it to laptop and get a port at /dev/usb/lp0, if I connect pin1/pin25 of parallel port with +/- LED it lights.
Now I move +pin of LED to pin 2 of parallel port, and try to send byte to port , it should light up but it doesn't.
I use the command outb(0xff,port) where port is 0x378. What am I missing here?
This is my complete program:
#include<stdlib.h>
#include<stdio.h>
#include<sys/io.h>
void main(void){
int port=0x378;
outb(0xff,port);
outb(0x01,port+2);
sleep(1);
outb(0x00,port+2);
printf("End");
}
I also checked it with port=0x3bc but did not work. I even checked strobe pin 1 by connecting + of LED, it always lights but does not go low. Is there any problem with port address?