home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / cpm / mex / mex-rvw.txt < prev    next >
Text File  |  1984-07-12  |  3KB  |  54 lines

  1.  THIS FILE IS A BRIEF REVIEW OF MEX10, AND CONTAINS A FEW HINTS DERIVED
  2. FROM TRIAL AND ERROR EXPERIMENTATION......
  3.  
  4. MEX10 is yet another modem program....and for those using MDM7, there arises
  5. the question "What does MEX offer that MDM7 doesn't already have, or that you
  6. don't need anyway?"  There is a great deal of truth there, but as a dedicated
  7. MDM7 user, I offer the following comments after just a few days of using MEX.
  8. First, I'm already convinced that MEX is the most powerful modem program I've
  9. come across.  MDM7 is excellent, but doesn't begin to offer the power and 
  10. flexibility that MEX offers.  Probably the most exciting area is the dynamic
  11. ability to change program paramaters  very easily in real time, and command
  12. line processing with simple command files. As an example (very simple), the 
  13. following one line file (much like a submit file) will with a single command
  14. entry (get FILE.QQQ), do the following:
  15.  
  16. MEX] A0>>GET FILE.QQQ            ;entered command
  17. MEX] A0>>SENDOUT XMODEM S FILE.QQQ    ;MEX sends out request
  18. (WAITS FOR REPLY)            ;remote system responds (XMODEM...etc)
  19. MEX] A0>>R FILE.QQQ            ;MEX sets up receive 
  20. (TRANSFERS FILE)
  21. B0>                    ;back to remote system!!!    
  22.  
  23. Here is the one line file that does all this  (GET.MEX):
  24.  
  25. SENDOUT "XMODEM S {1}";R {1}
  26.  
  27. Those who have used submit files will appreciate the parameters {n}.
  28.  
  29. A file for transfering library member files is just slightly more complicated.
  30.  
  31. MEX] A0>>GETL NAME.LBR NAME.MBR        ;Single command (the name GETL is
  32.                     ;arbitrary..and is filename that
  33.                     ;contains the following text)
  34. SENDOUT "XMODEM L {1} {2}";*R {2}    ;MEX command file
  35.  
  36. These command files can be used for many purposes, and can change operating
  37. parameters for particular systems called (even such things as parity, stop 
  38. bits, etc for particular systems).  
  39.  
  40. All this flexibility is not without its price, however!  As is always the 
  41. case, increased power and flexibility also leads to increased complexity.
  42. Thats a polite way of saying that MEX is not for the beginner.  The array of
  43. commands and variables under the control of the operator in real time is
  44. more than a little overwhelming at first.  Also, there are many people who
  45. will never need all the power and flexibility offered, and will find the
  46. much simpler to use MDM7 satisfies all their needs.  MEX  is of most value 
  47. to those who need its greatly increased power for non-typical uses 
  48. (main-frame com., etc) or those who will enjoy  the use of a "sports car" 
  49. and the programming challenge it offers.
  50.  
  51. Just one man's opinion.....
  52.  
  53.                             Norman Beeler
  54.                             Sunnyvale, Ca