PDA

View Full Version : Problems PCI card


Raven
02-01-2008, 12:26 AM
I hope someone can help me with this.......

I installed a 25 pin PCI card in my Dell Desktop(Win Vista) in order for me to be able to program my atmega. Device manager says that the device is working properlly but i get failed to enter program modem in Jeepers.

The one thing that i noticed is that in the Parallel port properties and then the ressouces TAB there's a conflict...

Input/Output Range CCA8 - CCAF not available.
Input/Output Range CCB0 - CCB7 not available.

What is the problem..................?

Pyotr
02-01-2008, 06:13 AM
I hope someone can help me with this.......

I installed a 25 pin PCI card in my Dell Desktop(Win Vista) in order for me to be able to program my atmega. Device manager says that the device is working properlly but i get failed to enter program modem in Jeepers.

The one thing that i noticed is that in the Parallel port properties and then the ressouces TAB there's a conflict...

Input/Output Range CCA8 - CCAF not available.
Input/Output Range CCB0 - CCB7 not available.

What is the problem..................?

Not sure,but if there's a conflict,try to solve it. Change those addresses 'til you get a good one. Don't forget the original numbers.

scrappy
02-05-2008, 07:23 PM
doing a troubleshoot will always say the card is working properly you have make when you are using jeepers to make sure you are connecting to the right port/com. the settings in jeepers gives you options to try different ports/com try that to see if they work otherwise configure your ports to match what device you are using on them.

Ohms
02-05-2008, 07:49 PM
The normal I/O range for LPT1 would be 370-37Fh
Most are set at 378h if memory servers me, and that is probably what the software is sending it's data to.

I could be wrong since it's been a while. Others are encouraged to correct this if needed.

Hope that helps.

DeSi1234
02-06-2008, 10:28 PM
I hope someone can help me with this.......

I installed a 25 pin PCI card in my Dell Desktop(Win Vista) in order for me to be able to program my atmega. Device manager says that the device is working properlly but i get failed to enter program modem in Jeepers.

The one thing that i noticed is that in the Parallel port properties and then the ressouces TAB there's a conflict...

Input/Output Range CCA8 - CCAF not available.
Input/Output Range CCB0 - CCB7 not available.

What is the problem..................?







The problem is this jeepers uses specific I/O Addresses to communicate with Atmea128 (0x378, 0x278, 0x3bc). and vista does NOT allow you to specify an I/O Range for your card to use so you need to edit the Registry entry for jeepers to use your specific I/O Range.

[HKEY_CURRENT_USER\Software\D2\jEEPers]
"Port"=dword:0000dcd8

in your case this would read

[HKEY_CURRENT_USER\Software\D2\jEEPers]
"Port"=dword:0000cca8

DeSi

Ohms
02-06-2008, 11:03 PM
That sounds like an excellent solution