Link to home
Start Free TrialLog in
Avatar of Ykoorb
Ykoorb

asked on

pascal modem..........i want it now.

ok people, this question in my oppinion is a thoughy so i want a good answer, if one exists.

I want a piece of coding from someone that will bascially initialize in crt mode, it will ask whether the user wants to dial or recieve. If the user chooses recieve then the program will let the computer wait for a phone call
until another computer dials in (using modems).  If the user chooses to dial then the user is asked for a phone number. When the phone number is entered the computer will dial the number and connnect to the recieving computer on the other side. There will be then data sent back and forth, the sender will send the number 29999 and the reciever will send 29998 whic will be displayed oin the appropriate screen. The numbers will be continuously sent until a key is pressed on either side and the program exits. So the question? how do i do this?
Avatar of Mathias
Mathias
Flag of Germany image

If you want I can post my comport unit with modem detection and data transfer routines.

This unit can dial phone numbers and receiving data. But what do you mean with "another computer dials in", Do you mean another computer is calling you via the net?

Bye, TDS.
Avatar of Ykoorb
Ykoorb

ASKER

by "another computer dials in" i mean that another computer calls via the phone line (direct connection) not via the net.

Your unit maybe of use, could you implement it into a program like the one i described?

Cheers
               Ykoorb
That isn't easy, because you must always check your modem, using a protocol. But if you dial another modem and the modem answers, your are able to communicate. I don't have the chance to write a program like this, because I have only one modem. But if you are interested in the source for "normal" communication write it on this site and I will post my code on this site.

Bye, TDS.
Avatar of Ykoorb

ASKER

what do you mean by "normal" communication? i am interested in anything which you think will get me closer to my end goal, any help will be appreciated and depending how much help i get may give you the points, thanks for your help so far. This unit sounds interesting, what does it do?

  Cheers
        Ykroob
ASKER CERTIFIED SOLUTION
Avatar of Mathias
Mathias
Flag of Germany image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Ykoorb

ASKER

ok here is my e-mail address

doctor.evil@net.ntl.com


That code looks good so far, hoefully should award you the points when i see the rest of the code, cheers

Ykoorb
Did you get the mail?
Avatar of Ykoorb

ASKER

yep, i got the mail, just checking out how it works now, will get back to you soon

 cheers
        ykoorb
Avatar of Ykoorb

ASKER

hmm, i got the units, compiled them as appropriate and then tested them using your example program above, as it was testing each com port it was ok until it reached com port 3 (the one i use) and then it hung up my system, had to exit pascal. From looking at the code i can't see exactly why this is, it just freezes, think it gets stuck in a repeat loop in the modem.pas. My modem is a rockwell 56k plug and play, but the modem info program seems to work ok. Hopefully you can help.

Cheers
      Ykoorb
I don't have this problem, because I use COM2. But it is possible that there are different problems:

- please don't run under Protected Mode, I didn't test it
- please don't run under Windows
- check if there is a mouse driver installed under DOS
- no card modems (ISA, PCI) are detected and supported

If there are no other problems then you can rewrite the "modem.pas" unit like:

procedure SetOwnSettings(Base: Word; IRQ: Byte;
  NewSpeed: Longint; UART: Byte);
var MyCOM: TCOMPort;
begin
  MyCOM.Base:=Base;       PortBase:=Base;
  MyCOM.IRQ:=IRQ;         UsedIRQ:=IRQ;
  MyCOM.UART:=PORT_16450; UARTType := UART;
  Speed:=NewSpeed;
  SetupPort(MyCOM.Base, NewSpeed, MyCOM.IRQ);
  SetupParamPort(MyCOM, 7, N, 1);
  ResetQueue(InQueue);
  ResetQueue(OutQueue);
  SendChars(InitSeq);
  delay(Modem_TimeOut div 5);
end;

Please verify that you call ResetPort(PortBase, UsedIRQ) at the end.

This code was tested and it works very well.

Good luck, TDS.
Avatar of Ykoorb

ASKER

darn i think i have a software modem, think its ISA, you know why the procedure doesn't support the ISA or PCI ?

p.s it doesn't hang up my machine when run in dos, it just doesn't find my modem.

Cheers
        Ykoorb
If you have an ISA modem, then the unit can't find this modem. The unit based on COM detection so you can't use them.

Sorry, TDS.

PS: If you have Linux look in the source directory if you can find something.
Avatar of Ykoorb

ASKER

thanks for all your help, i am going to try and make my own unit which can be used for software modems.  I've made a few changes to yours and hopefully i should be able to get something working soon. I may mail the result to you when i'm finnished if you're interested. But for now i think you deserve the points. Thanks very much

Ykoorb
Ykoorb, I will follow the project and if you have another question, ask me (Email not EE!)...

TDS