home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / 5 / 550_util.zip / COMM.BAT < prev    next >
DOS Batch File  |  1993-02-04  |  1KB  |  42 lines

  1. rem NOTE: The following is a MS-DOS batch (.BAT) file fragment which 
  2. rem       illustrates the use of 16550JHH.EXE and Norton Utilties Batch
  3. rem       Enhancer to turn off the 16550 UART FIFO buffers upon exit from
  4. rem       TELIX.
  5.  
  6. rem Following line is a sample TELIX command line.  Replace the example 
  7. rem       filenames with actual names and paths from your system.
  8.  
  9. TELIX Sscript.slc Cuser.cnf FC:\TELIX\FON\user.fon
  10.  
  11. cls
  12.  
  13. rem Following lines draw a Batch Enhancer box and report UART FIFO status
  14. rem       on COM2: (which is expected to be ON at this point).
  15.  
  16. BE BOX 9 0 18 31 BRIGHT YELLOW ON BLUE
  17. BE ROWCOL 11 16""
  18. 16550jhh 2 ? 
  19.  
  20. rem Following lines draw a Batch Enhancer box, turn off the UART FIFO 
  21. rem       on COM2:, and report that action in the box.
  22.  
  23. BE BOX 9 0 18 31 BRIGHT YELLOW ON BLUE
  24. BE ROWCOL 14 5"Forcing FIFO buffer off"
  25. 16550jhh 2 off
  26.  
  27. rem Following lines draw a Batch Enhancer box and report UART FIFO status
  28. rem       on COM2: (which is expected to be OFF at this point).
  29.  
  30. BE ROWCOL 15 16""
  31. 16550jhh 2 ? 
  32. BE BOX 9 0 18 31 BRIGHT YELLOW ON BLUE
  33.  
  34. rem Following lines simply hold the box on screen for three seconds (can be
  35. rem       removed immediately by striking any key).
  36.  
  37. ECHO.
  38. BE ask""TIMEOUT=3
  39. ECHO.
  40.  
  41. rem End of batch file fragment.
  42.