PDA

Click to See Complete Forum and Search --> : Hardware programming


kryptonite0110
January 3rd, 2004, 10:19 PM
hmmm... i was wandering what it was called to write programs that interface with hardware. I wanted to interface my own circuts with my computer and it seems the only way to do this would be with software, but what would i search for???

chsh
January 4th, 2004, 01:30 AM
Drivers. They basically would take operating system or application commands and instruct the hardware based on that. Most drivers for PCs are written in C/C++.

brt4c
January 8th, 2004, 02:55 PM
check this article out:

http://neworder.box.sk/newsread.php?newsid=10206

Algaen
January 15th, 2004, 06:16 PM
Look at your hardware's assembly programming language. For Intel architecture (and AMD) look at Intel assembler language. This is the category of language just above machine language (010101000011010...). It will allow you to have the most direct control possible over the hardware. If you can interface your circuits with a parallel or serial port then you can use assembly to sent and receive data through the ports.

Also, if I'm not mistaken C also provides some functions that can interface directly with the hardware as well.

Unfortunately I'm not too sure where you can find this information. Maybe some else can help you out with that.

Algaen
January 19th, 2004, 05:03 PM
I just came across this link:
http://freshmeat.net/projects/pport/?branch_id=47138&release_id=148381&topic_id=861%2C234%2C904%2C905

Basically it is a program that will let you communicate over your parallel port. Hope this helps!