home *** CD-ROM | disk | FTP | other *** search
- Perhaps someone else has already told you about a way to make this change
- but here it is anyway. The problem was that when ros exits it resets the modem
- and if you had told it to make the modem busy it reset that as well. the
- following changes fix that with no side effects that i can see.
-
- In ROSDEF.INC
- add a line at the bottom
- IsBusy: Boolean;
-
- In ROSINI.INC
- line 320 change from
- then mdbusy
- to
- then begin mdbusy; IsBusy := True; end
- line 321 from
- else mdhangup;
- to
- else begin mdhangup; IsBusy := False; end;
-
- In ROS.MCH (on a qx-10 anyway)
- line 217 is
- init_send('AT Z' + CR);
- insert a line
- If NOT IsBusy then
-
- It compiles and seems to work ok. Hope you find it useful.17 is
- init_send('AT Z' + CR);
- insert a line
- If NOT IsBusy then