home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #20 / NN_1992_20.iso / spool / comp / terminal / 1107 < prev    next >
Encoding:
Internet Message Format  |  1992-09-08  |  7.5 KB

  1. Xref: sparky comp.terminals:1107 comp.protocols.misc:669 comp.unix.programmer:4551 comp.periphs:1227
  2. Path: sparky!uunet!haven.umd.edu!darwin.sura.net!utkcs2!shuford
  3. From: shuford@cs.utk.edu (Richard Shuford)
  4. Newsgroups: comp.terminals,comp.protocols.misc,comp.unix.programmer,comp.periphs
  5. Subject: comp.terminals FAQ
  6. Followup-To: comp.terminals
  7. Date: 7 Sep 92 03:32:33 GMT
  8. Organization: University of Tennessee, Knoxville--Dept. of Computer Science
  9. Lines: 209
  10. Sender: shuford@cs.utk.edu
  11. Distribution: world
  12. Expires: 10 Dec 1992 22:23:24 GMT
  13. Message-ID: <laljahINNe7@utkcs2.cs.utk.edu>
  14. NNTP-Posting-Host: duncan.cs.utk.edu
  15. Summary: Frequently Asked Questions
  16. Keywords: terminals, FTP, FAQ
  17.  
  18. This FAQ list was prepared by pdsmith@bbn.com (Peter D. Smith).
  19. Since school is starting in lots of places, there will be many
  20. people dusting off old terminals during the next few weeks....
  21.  
  22. .....RSS
  23.  
  24. \/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/
  25.  
  26. comp.terminals unofficial FAQ
  27. 19-DEC-1991 Modifed Q. 2 (Interesting DEC escape sequences)
  28.         Added d) (printer on/off)
  29. 22-NOV-1991 Added Q. 7 (Concept 108 bps rate)
  30. 20-NOV-1991 Added Q. 6 (VT125 setups) and changed Q.1 to point to Q.6
  31.  1-NOV-1991 Added Q. 5 (cursor on and off)
  32.  
  33. 1) How do I save my VT100 setups? -- see question 6
  34.  
  35. 2) What are interesting DEC escape sequences?
  36. a) ESC [ ? 5 h   :(white on black) or ESC [ ? 5 l (black on white).
  37. b) ESC [ ? 6 7 l :to make <=] send DEL; ESC[?67h to make it send BackSpace.
  38. c) ESC [ ? 2 5 h :Cursor visible; ESC [ ? 2 5 l   --- Cursor Invisible
  39. d) ESC [ <nnn> i :Printer control, possible <nnn> values are
  40.           0=print screen 5=turn on printer controller 4=turn off..
  41.           ?0=print graphics screen ?5=turn on auto-print ?4=turn off..
  42.  
  43. 3) What are the DIP switches for an H19 (or Z19)?
  44.     Switch S402
  45.         0 cursor is 0=underscore 1=block
  46.         1 keys 0=will 1=wont click
  47.         2 lines 0=wont 1=will wrap
  48.         3 Auto LF on CR is 0=off 1=on
  49.         4 Auto CR on LF is 0=off 1=on
  50.         5 Terminal mode is 0=Heath/Zenith 1=Ansi
  51.         6 keypad 0=normal 1=shifted
  52.         7 refresh 0=60Hz 1=50Hz
  53.     Switch S401
  54.         0..3 = Data rate, on of N/A 110 150 300 600 1200 1800 2000
  55.            2400 3600 4800 7200 9600 N/A N/A N/A such that if all
  56.                    switches are ZERO except switch 0, terminal is 300 bps
  57.         4 Parity is 0=off 1=on
  58.         5 Parity is 0=even 1=odd
  59.         6 Parity is 0=normal 1=stick
  60.         7 Duplex is 0=half 1=full
  61.  
  62. From: Joseph Gil <yogi@cs.ubc.ca>
  63. Organization: Computer Science, University of B.C., Vancouver, B.C., Canada
  64.  
  65. Q: How can an application set the Backarrow (the key at the north east
  66. side of the keyboard which is supposed to erase the previous char.
  67. The icon on it is something like <=] partkey of vt320 to send backspace? DEL?
  68.  
  69. A: Send ESC[?67l to make <=] send DEL
  70.    Send ESC[?67h to make it send BackSpace.
  71.  
  72. The following CSH script in unix may turn useful for switching
  73. between the two modes.
  74.  
  75.     if ($?DEL) then
  76.         stty erase "^?"    
  77.         echo "[?67l"
  78.     else
  79.         stty erase ""
  80.         echo "[?67h"
  81.     endif
  82.  
  83. 5) How do I turn my cursor on and off?
  84.     ESC [ ? 2 5 h   --- Cursor visible
  85.     ESC [ ? 2 5 l   --- Cursor Invisible
  86.     Many "ANSI" terminal implement this, including all DEC VT100 and
  87.     higher, the Kermit terminal emulator, etc, but not all.
  88.  
  89. 6) What are the VT1xx setup items?
  90.     Storing SETUP -- go into SETUP-A mode and press 'S'
  91.     Recalling SETUP -- go into SETUP-A mode and press 'R'
  92.     Resetting to factory default -- go into SETUP-A mode and press 'reset'
  93.     Screen brightness -- go into SETUP-A mode and use up/down arrow keys.
  94.  
  95.     SETUP B
  96.     Bank 1
  97.     Scroll is 0=jump 1 =smooth
  98.     Auto repeat 0=off 1=on
  99.     Screen background is 0=dark 1=light
  100.     Cursor is 0=underline 1=block
  101.  
  102.     Bank 2
  103.     Margin Bell is 0=off 1=on
  104.     Key click is 0=off 1=on
  105.     Terminal is a 0=vt52 1=ansi (vt100)
  106.     Auto XON is 0=off 1=on
  107.  
  108.     Bank 3
  109.     Character set is 0=us 1=uk
  110.     Auto wrap is 0=off 1=on
  111.     Line feed/new line is 0=off 1=on
  112.     Interlace is 0=off 1=on
  113.  
  114.     Bank 4
  115.     Parity sense is 0=odd 1=even
  116.     Parity is 0=off 1=on
  117.     There are 0=7 1=8 bits/char
  118.     Power supply is 0=60 1=50 hz
  119.  
  120.     Bank 5
  121.     Reserved = 0
  122.     Aux. Port has 0=7 1=8 bits/char
  123.     Aux port speed is 00=300 01=1200 10=2400 11=9600
  124.     Aux port speed second bit
  125.  
  126. 7. How do I change the data rate of my Concept 108 terminal??
  127.    
  128.     According to the manual...
  129.       3.Display the status line by typing the STAT key.   If the
  130.     terminal is not in Remote mode (Field g), select Remote mode
  131.     by typing the two keys MULT CODE 9.  If the terminal is not in
  132.     Programmer mode (Field h), select Programmer mode by typing
  133.     the two keys MULT CODE U (note - upper case U)
  134.       4.Select the appropriate duplex setting (Field c).  The factory
  135.     default is Half Duplex.  If this setting is correct proceed to
  136.     step 5.  Change the duplex by one of following [sic] two key
  137.     sequences:
  138.         MULT CODE 8 (Full Duplex)
  139.         MULT CODE * (Half Duplex)
  140.     Hint--the following manufacturers are usually Half Duplex ....
  141.     [list of bankrupt manufacturers omitted]
  142.       5.Select the appropriate parity setting (Field e).  The factory
  143.     default is none (no parity bit is sent).  If this is
  144.     correct proceed to step 6.  To change the parity, type one of
  145.     the following three key sequences:
  146.         MULT CODE P Space (none)
  147.         MULT CODE P !     (Even)
  148.         MULT CODE P "     (Odd)
  149.         MULT CODE P #     (Mark)
  150.         MULT CODE P $     (Space)
  151.       6.Select the appropriate Data Rate setting (field b).  The
  152.     factory default setting is 300 bps (bits per second).  If this
  153.      setting is correct proceed to step 7.  To change the data rate,
  154.     type one of the following three key sequences:
  155.         MULT CODE O Space       50
  156.         MULT CODE O !           75
  157.         MULT CODE O "           110
  158.         MULT CODE O #           135
  159.         MULT CODE O $           150
  160.         MULT CODE O %           300
  161.         MULT CODE O &           600
  162.         MULT CODE O '           1200
  163.         MULT CODE O (           1800
  164.         MULT CODE O )           2000
  165.         MULT CODE O *           2400
  166.         MULT CODE O +           3600
  167.         MULT CODE O ,           4800
  168.         MULT CODE O -           7200
  169.         MULT CODE O .           9600
  170.       7.Select the appropriate stop bit setting (Field d).  The factory
  171.     default setting is two stop bits.  If this is correct proceed
  172.     to step 8.  To change the number of stop bits type one of the
  173.         following four key sequences:
  174.         MULT CODE Space < !     (One stop bit)
  175.         MULT CODE Space < "     (Two stop bits)
  176.     Stop bits are usually set to two for data rates below 300 bits
  177.     per second; any faster speed uses one stop bit.
  178.       8.Once you have achieved communications you can store these
  179.     setting permanently in the terminal by typing the three
  180.     character sequence MULT CODE Space C
  181.  
  182. (end of FAQ list)
  183.  
  184. \/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/
  185.  
  186. Additionally, the following files are available for anonymous FTP
  187. from CS.UTK.EDU (128.169.201.1) in /pub/shuford (until the Next
  188. Great Disk Space Crunch)!
  189.  
  190.  adds_viewpoint_dips.txt
  191.  all-about-sixels.txt
  192.  ansi_pictures.news
  193.  ansi_x3_64.txt
  194.  ascii_table.txt
  195.  comp.terminals.faq
  196.  dec_la50_dips.txt
  197.  ibm_parallel_port.news
  198.  iowa_vt100.news
  199.  joetty_curses.1
  200.  joetty_curses.2
  201.  joetty_curses.3
  202.  msdger.txt
  203.  msvibm.tek
  204.  msvibm.vt
  205.  msvibm.vt.Z
  206.  naplps.news
  207.  private_control.news
  208.  qk-kermit.article
  209.  regis.news
  210.  televideo.news
  211.  televideo.termcap
  212.  televideo_950.chart
  213.  televideo_codes.news
  214.  terminal.news
  215.  tektronix.news
  216.  villanova-vt100-esc-codes.txt
  217.  vt100.demo.Z
  218.  vt100.setup
  219.  vt320_font_edit.vms_shar
  220.  wyse_termcap.news.Z
  221.  xdvorak.tar.Z
  222.  
  223. -- 
  224.  ....Richard S. Shuford  | "A prudent man sees danger and takes refuge,
  225.  ....shuford@cs.utk.edu  |  but the simple keep going and suffer for it."
  226.  ....BIX: richard        |  Proverbs 22:3 NIV
  227.