Printer Interface

Question about which tools to use, bugs, the best way to implement a function, etc should go here. Don't forget to see if your question is answered in the wiki first! When in doubt post here.
Post Reply
JamesParsons
Posts: 17
Joined: Sat Jan 12, 2013 7:37 am

Printer Interface

Post by JamesParsons »

Ok most of you people probably don't remember me. I was here a year or two ago and came asking n00b questions not bothering to do much research myself. I have matured and learned a lot working with 8-bit computers. My question is since most printers has OS specific qualities, How would I interface with the. Hopefully I want to soon be able to print ASCII text. Will I have to port the print drivers to my OS, or could I just print directly through hardware. Also how could I make sure that a printer was in instead of a scanner. Thanks ahead of time
REAL programmers aren't afraid to use goto's
User avatar
Brendan
Member
Member
Posts: 8561
Joined: Sat Jan 15, 2005 12:00 am
Location: At his keyboard!
Contact:

Re: Printer Interface

Post by Brendan »

Hi,
JamesParsons wrote:Ok most of you people probably don't remember me. I was here a year or two ago and came asking n00b questions not bothering to do much research myself. I have matured and learned a lot working with 8-bit computers. My question is since most printers has OS specific qualities, How would I interface with the. Hopefully I want to soon be able to print ASCII text. Will I have to port the print drivers to my OS, or could I just print directly through hardware. Also how could I make sure that a printer was in instead of a scanner. Thanks ahead of time
Printers don't have OS specific qualities. What they have is device specific qualities. To hide device specific qualities most OSs use device drivers.

Basically, you have different device drivers for different printers.


Cheers,

Brendan
For all things; perfection is, and will always remain, impossible to achieve in practice. However; by striving for perfection we create things that are as perfect as practically possible. Let the pursuit of perfection be our guide.
Post Reply