Hi
Im working on a project for handling 50khz data transmission from an A/D interface device to a software in windows XP.
Best way for me is developing a device driver for handling my external 50khz interrupts via parallel port. its a month i started study KMDkit tutorial, Some windows NT architecture , Interrupt handling ,Parallel port interrupt , ...
now i really need shortcut like some examples to stick it together.
Does the parallel port allow bidirectional communication?
yes - it is a fairly simple interface to use, too (if it weren't for protected mode :biggrin: )
i did some stuff in the DOS days - but nothing recent
digelo,
If you value your time, take a look at a ready to go product from:
http://www.mccdaq.com/solutions/USB-Multifunction-DAQ.aspx
I have had nothing but good luck with these for one off process control applications. Good hardware and software which allows sampling control and process decisions.
hth,
farrier
I think i should find IDT area in memory and then set an IDT entry for irq7 that seems easy but
Me and my computer cant understand each other yet :(
Quote from: digelo on July 02, 2012, 08:00:57 PM
I think i should find IDT area in memory and then set an IDT entry for irq7 that seems easy but
Me and my computer cant understand each other yet :(
No, you can not do that. Windows 7 will not allow it. Besides your will interfere with OS function and most liker your program will generate random crashes.
You must study and use the proper kernel mode driver interfaces.
Anyway in win7 your drivers must be signed by Microsoft or otherwise the drive will NOT be loaded by the OS and there is no way to bypass this.
I seriously doubt that Microsoft will sign a a driver written in ASM that is overwriting the IDT bluntly.
Alternative all antivirus programs should flag such an application as an potential threat.
Quote from: farrier on July 02, 2012, 07:49:38 PM
digelo,
If you value your time, take a look at a ready to go product from:
http://www.mccdaq.com/solutions/USB-Multifunction-DAQ.aspx
I have had nothing but good luck with these for one off process control applications. Good hardware and software which allows sampling control and process decisions.
hth,
farrier
After this parallel project i should design a interface that is similar to those usb data acquisition modules but via PCI port.
Quote from: BogdanOntanu on July 02, 2012, 08:13:29 PM
Quote from: digelo on July 02, 2012, 08:00:57 PM
I think i should find IDT area in memory and then set an IDT entry for irq7 that seems easy but
Me and my computer cant understand each other yet :(
No, you can not do that. Windows 7 will not allow it. Besides your will interfere with OS function and most liker your program will generate random crashes.
You must study and use the proper kernel mode driver interfaces.
Anyway in win7 your drivers must be signed by Microsoft or otherwise the drive will NOT be loaded by the OS and there is no way to bypass this.
I seriously doubt that Microsoft will sign a a driver written in ASM that is overwriting the IDT bluntly.
Alternative all antivirus programs should flag such an application as an potential threat.
I know i cant use my driver in windows 7 cuz of that i still use windows xp for hardware projects
If my way is wrong can u put me in right direction?
you may have some luck with IOCTL - i don't know
otherwise, you might find a 3rd party driver
Quote from: dedndave on July 02, 2012, 09:05:05 PM
you may have some luck with IOCTL - i don't know
otherwise, you might find a 3rd party driver
IOCTL is for unix based os like linux or macOS
IOCTL is also the name of a group of functions in the Windows API, in Windows it has nothing to do with Unix based systems.
ah i never heard of it in windows :D
well - i have looked at a few 3rd party drivers
none of them seem to handle interrupts - at least not as i know them
one of them claimed to provide "interrupt emulation" - what ever that means :P
your data rate is at the limit of the parallel port capability, as i remember it
you probably want to use an interrupt-driven driver
According to Frank van Gilluwe's book The Undocumented PC, for a standard parallel port the theoretical maximum transfer rate is 500K bytes per second, and "most users can expect a best case transfer rate of about 150K bytes per second". An EPP port can boost the 150K to 2M bytes per second. That said, I doubt that a 50KHz interrupt rate would be workable if the handler had to do any significant amount of port I/O.
I need max-speed, i can deal with 30-20khz too
In Dos my father reached 180khz with parallel port for NMR interface manufactures. but thats a dream for me in Windows user-mode.
In Windows user-mode maximum speed i could communicate with my hardware was 1khz via serial port, beyond this speed can happen only in Windows kernel-mode.
In kernel-mode with a device driver that handle interrupts inside itself i can pass the limitation of windows timers and CPU priority-queue issue.
Here I am, on the road again.
Quote from: digelo on July 03, 2012, 04:37:33 PM...In Dos my father reached 180khz with parallel port for NMR interface manufactures. but thats a dream for me in Windows user-mode.
In Windows user-mode maximum speed i could communicate with my hardware was 1khz via serial port, beyond this speed can happen only in Windows kernel-mode...
your Dad's machine is probably not as fast as todays machines :P
i managed to write some interrupt-driven
serial port code that could handle 9600 baud nicely
that was on a 4.77 mHz 8088 - lol
parallel ports are much faster and easier to write code for, assuming you can install an interrupt handler
What about FTDIChips ?
I use the FT232RL often to communicate with microcontrollers.
You can bitbang in high speed.
Data transfer rates from 300 baud to 3 Mbaud (RS422, RS485, RS232 ) at TTL levels.
http://www.ftdichip.com/Products/ICs/FT232R.htm
Or send an analog signal to the soundcard and detect the signal with the Goertzel algorithm.
There is another approach if speed matters, instead of messing around with stuff as ancient as com and parallel ports, look for a DLL that talks to USB 1/2/3 and shift from kilobytes to megabytes. :bgrin:
Quote from: Siekmanski on July 04, 2012, 11:59:15 AM
What about FTDIChips ?
I use the FT232RL often to communicate with microcontrollers.
You can bitbang in high speed.
Data transfer rates from 300 baud to 3 Mbaud (RS422, RS485, RS232 ) at TTL levels.
http://www.ftdichip.com/Products/ICs/FT232R.htm
Or send an analog signal to the soundcard and detect the signal with the Goertzel algorithm.
I use FTDIChips for communicating via USB port (FT245), that's a good solution when u don wanna mess with USB protocols in ur microprocessor, but its speed is not fast enough.
Thanx for soundcard idea that's creative but not a good way for my project .
Quote from: hutch-- on July 04, 2012, 02:14:03 PM
There is another approach if speed matters, instead of messing around with stuff as ancient as com and parallel ports, look for a DLL that talks to USB 1/2/3 and shift from kilobytes to megabytes. :bgrin:
USB port talks DLL is only for my PC side and its a bit hard to make USB protocols for my microprocessor too(FT245 do it for micros but i couldn't reach high speed with that) i chooses holy parallel port cuz of its simple way of communication and its IRQ7, in next step im ganna switch to PCI port but there i need to know how to write a Device Driver.
The problem is you keep making assumptions about the PC side, if you want to run MS-DOS or a similar real mode operating system then you can play with IRQs, interrrupts and the like but if you want to run any modern version of Windows you either write a device driver or you use the Windows API functions.
Quote from: hutch-- on July 05, 2012, 12:21:19 AM
The problem is you keep making assumptions about the PC side, if you want to run MS-DOS or a similar real mode operating system then you can play with IRQs, interrrupts and the like but if you want to run any modern version of Windows you either write a device driver or you use the Windows API functions.
Why u think those are my assumptions? i explained why those ways is not suitable for me .
Im newbie in writing device driver, made this post to access others experiences .
3 Mbaud not fast enough for 50 KHz ? :icon_confused:
I have translated the FTDI Api to Masm assembly and bitbanging is really fast.
Even with the RS232 protocol and a Baudrate of 921600 ( 8 databits and 1 stopbit ) you can send 102400 bits a second.
Or just toggle RTS or DTS or CTS and detect it on the PC.
If you need the sources let me know.
ah i couldn't reach that speed , i think i really need those codes :D
are they work with FT245 too?:D
Yes, you can communicate to all those FTDI chips. It's the complete FTDI Api.
I'll post it tomorrow.
Have to remove all the Dutch and translate it to English.
I recomment to use the bitbang method. ( 8 pins at once )
Just to get you in the mood: :biggrin:
From the docs : FT232 /FT245 BIT BANG MODE
The commands of interest are :
1) FT_SetBaudRate(ftHandle : Dword ; BaudRate : Dword) : FT_Result;
This controls the rate of transferring bytes that have been written to the device onto the pins. It also sets the sampling of the pins
and transferring the result back to the Read path of the chip. The maximum baud rate is 3 MegaBaud. The clock for the Bit Bang
mode is actually 16 times the baudrate. A value of 9600 baud would transfer the data at (9600 x 16) = 153600 bytes per second or
1 every 6.5 uS.
Masm sources for direct communication to FTDI devices.
I was experimenting with a Philips Tuner (FM1216ME/I H-3) ripped of, of an old pci TV-/Radio card.
This module has an MPX output in FM radio mode.
I needed control via the PC to monitor the MPX output from my FM transmitters.
So I used an ATmega168 microcontroller and a FTDI FT232RL chip to control the Tuner.
This is why I did the FTDI-Api translation to Masm ( my favorite language )
Be sure you have installed the Direct (D2XX) drivers and not use the Virtual COM Port (VCP) drivers.
The D2XX driver allows direct access to a USB device via a DLL interface.
link to FTDI home page: http://www.ftdichip.com/index.html
link to programmers guide: http://www.ftdichip.com/Support/Documents/ProgramGuides.htm
link to D2XX_Programmer's_Guide: http://www.ftdichip.com/Support/Documents/ProgramGuides/D2XX_Programmer's_Guide(FT_000071).pdf
link to application notes: http://www.ftdichip.com/Support/Documents/AppNotes.htm
link to BitBangMode FT232R-FT245R: http://www.ftdichip.com/Support/Documents/AppNotes/AN_232R-01_Bit_Bang_Mode_Available_For_FT232R_and_Ft245R.pdf
link to ChipID FT232R-FT245R: http://www.ftdichip.com/Support/Documents/AppNotes/AN232R-02_FT232RChipID.pdf
thank you for source code