home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / old / ckermit5a190 / ckop101.ini < prev    next >
Text File  |  2020-01-01  |  1KB  |  38 lines

  1. ; FILE P101.INI (CKOP101.INI)
  2. ;  Macros for invoking P version 1.01 from OS/2 C-Kermit.
  3. ;
  4. ; Jeffrey Altman, Altmania Productions and Seer Technologies
  5. ;  <p00118@psilink.com>
  6. ;  August 1994
  7. ;
  8. ; P is an external protocol package providing X-modem, Y-modem, Y-modem-G
  9. ; and Z-modem send and receive capabilities on OS/2 via Serial connections,
  10. ; written by Jyrki Salmi <jytasa@jyu.fi>.
  11. ;
  12. ; The P protocol dynamic link library is freeware available from most major
  13. ; ftp sites, bulletin board services and CompuServe.  It is suggested that
  14. ; you update to version 2.00.
  15. ;
  16. ; Commands:
  17. ;    sz/rz - send/receive with Zmodem
  18. ;    sy/ry - send/receive with Ymodem
  19. ;    sg/rg - send/receive with Ymodem-G
  20. ;    sx/rx - send/receive with Xmodem
  21. ;
  22. ; DISCLAIMER:
  23. ;   These macro definitions are included with C-Kermit as a convenience
  24. ;   to users of P 1.01.  Columbia University is not a source for the P
  25. ;   software, nor does it support P in any way.
  26. ;
  27. echo Initializing X,Y,YG,Z-modem support using P version 1.01....
  28.  
  29. define sz !p \v(ttyfd) \v(speed) -b9024 -f -k sz \%1
  30. define sg !p \v(ttyfd) \v(speed) -b9024 -f -k sg \%1
  31. define sy !p \v(ttyfd) \v(speed) -b9024 -f -k sy \%1
  32. define sx !p \v(ttyfd) \v(speed) -b9024 -F -m sx \%1
  33.  
  34. define rz !p \v(ttyfd) \v(speed) -b9024 -f -F -k -r rz \%1
  35. define rg !p \v(ttyfd) \v(speed) -b9024 -f -k rg \%1
  36. define ry !p \v(ttyfd) \v(speed) -b9024 -f -k ry \%1
  37. define rx !p \v(ttyfd) \v(speed) -b9024 -F -m rx \%1
  38.