I have a PCI 2 port serial card by Microcomputer Research UK ltd
(MRI) it has dual 16550 uarts ..
when I run my programs under win2000 I have no problems
using all 4 com ports ..
problem:
--------
When I boot to dos (on another drive).I can transmit but not
receive on coms 3 and 4 ????
Coms 1 & 2 are fine .... Transmit and receive
Dos drivers installed and say addresses are &H3E8 and &H2E8
I have no errors on compile .
this was my test prog ....
cls
Open "com3:9600,n,8,1,rs,cs,cd,ds" for random as #1
Open "com4:9600,n,8,1,rs,cs,cd,ds" for random as #2
print" COMS OPEN .... Delaying"
delay 1
print #1,"TEST COM LOOP"
print "Message sent "
delay 1
input #2,a$
print a$
close #1
close #2
end
* I am not using any timeout this is just a test prog ...
This works fine for com 1 & 2
I can transmit but not receive on both com 3 and com 4
Cable is a null modem cable .....
I played around with bios settings ... no joy there.
I tried it on my server under dos ... still the same.
Any help would be greatly appreciated ...
John Twomey
(MRI) it has dual 16550 uarts ..
when I run my programs under win2000 I have no problems
using all 4 com ports ..
problem:
--------
When I boot to dos (on another drive).I can transmit but not
receive on coms 3 and 4 ????
Coms 1 & 2 are fine .... Transmit and receive
Dos drivers installed and say addresses are &H3E8 and &H2E8
I have no errors on compile .
this was my test prog ....
cls
Open "com3:9600,n,8,1,rs,cs,cd,ds" for random as #1
Open "com4:9600,n,8,1,rs,cs,cd,ds" for random as #2
print" COMS OPEN .... Delaying"
delay 1
print #1,"TEST COM LOOP"
print "Message sent "
delay 1
input #2,a$
print a$
close #1
close #2
end
* I am not using any timeout this is just a test prog ...
This works fine for com 1 & 2
I can transmit but not receive on both com 3 and com 4
Cable is a null modem cable .....
I played around with bios settings ... no joy there.
I tried it on my server under dos ... still the same.
Any help would be greatly appreciated ...
John Twomey
Comment