home *** CD-ROM | disk | FTP | other *** search
- ; sample C-Kermit setup for Practical Peripherals PM-9600
- ; V.32/V.42/V.42bis/MNP-5 internal modem with 16550 UART.
-
- ; issue the mode command below before running C-Kermit
- ; mode com3:9600,n,8,1,idsr=on,odsr=on,octs=on,dtr=on,rts=on
-
- ; When the speed is set to 38400, the modem uses speed-buffering
- ; and when S95=44, it responds with "CONNECT 38400" although
- ; it actually uses 9600. So, no "SET DIAL SPEED-MATCH" command
- ; is necessary.
-
- set line com3
- set speed 38400
- set parity none
-
- set modem hayes
- set dial init \{13}AT H0 L2 M3 Q0 V1 X4 W1 S95=44 &C1 &D2\{13}
- set dial timeout 90
- set dial display on
-
- set terminal bytesize 8
- set command bytesize 8
-
- set file type binary
- set file character-set cp437
-
- set terminal cursor half
-
- define sz !m2zmodem -u 3 -s %1
- define rz !m2zmodem -u 3 -r %1
-