home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / programs / comms_networking / kermit / Archie < prev   
Text File  |  1992-03-08  |  5KB  |  112 lines

  1.                            Archimedes Kermit
  2.                            =================
  3.  
  4. This file contains any additions to docs.Kermit specific to the Archimedes.
  5.  
  6.  
  7. (1) When setting baud rates, it is possible to set both transmit and receive
  8.     rates. This is done by using the set speed command with two parameters;
  9.          set speed 1200 75
  10.     will give a transmit rate of 1200 and a receive rate of 75. Similarly,
  11.     you can put two rates on the command line like this;
  12.          *kermit -b 1200 75
  13.  
  14. (2) Archimedes Kermit has at the moment, two terminal emulations vt52 and
  15.     teletype. These can be selected by using the command set emulation;
  16.         set emulation tty
  17.         set emulation vt52
  18.  
  19.     The teletype emulation, simply prints all characters above code 31,
  20.     including those above 128 if terminal byte size is set to 8.
  21.     It also acts on the following codes;
  22.          7 beep
  23.          8 cursor left
  24.          9 cursor right
  25.         10 cursor down
  26.         11 cursor up
  27.         12 clear screen
  28.         30 home cursor
  29.        127 backward delete.
  30.     The cursor keys produce codes 8-11.
  31.  
  32.     The vt52 emulator is fairly complete the main omission being printer
  33.     support.
  34.  
  35.     In the vt52 emulator, the following codes are trasmitted;
  36.  
  37.     Archimedes key    vt52 key    Numeric keypad mode      Application mode
  38.     ==============    ========    ===================      ================
  39.       Num Lock         PF1           ESC P                    ESC ? P
  40.       /                PF2           ESC Q                    ESC ? Q
  41.       *                PF3           ESC R                    ESC ? R
  42.       #                PF4           ESC S                    ESC ? S
  43.     keypad 7          keypad 7       7                        ESC ? w
  44.     keypad 8          keypad 8       8                        ESC ? x
  45.     keypad 9          keypad 9       9                        ESC ? y
  46.     keypad 4          keypad 4       4                        ESC ? t
  47.     keypad 5          keypad 5       5                        ESC ? u
  48.     keypad 6          keypad 6       6                        ESC ? v
  49.     keypad 1          keypad 1       1                        ESC ? q
  50.     keypad 2          keypad 2       2                        ESC ? r
  51.     keypad 3          keypad 3       3                        ESC ? s
  52.     keypad 0          keypad 0       0                        ESC ? p
  53.     keypad .          keypad .       .                        ESC ? n
  54.     keypad Enter      keypad Enter   code 13                  ESC ? M
  55.     keypad +          keypad +       +                        ESC ? l
  56.     keypad -          keypad -       -                        ESC ? m
  57.  
  58.     Archimedes key            vt52 key             cursor key mode
  59.     ==============            ========             ===============
  60.  
  61.     cursor up                 cursor up             ESC A
  62.     cursor down               cursor down           ESC B
  63.     cursor right              cursor right          ESC C
  64.     cursor left               cursor left           ESC D
  65.  
  66.    The vt52 extended graphics character set is implemented as are the following
  67.    escape sequences;
  68.  
  69.    Pn is a decimal number (if omitted default used)
  70.    Pl is a character whose ASCII value is 31+line number
  71.    Pc is a character whose ASCII value is 31+col number
  72.    (origin 1,1 is top left hand corner of screen)
  73.  
  74.   ESC =         set application keypad mode
  75.   ESC >         set numeric keypad mode
  76.   ESC A         cursor up
  77.   ESC B         cursor down
  78.   ESC C         cursor right
  79.   ESC D         cursor left
  80.   ESC H         home cursor
  81.   ESC I         reverse line feed
  82.   ESC Y Pl Pc   cursor to line Pl column Pc
  83.   ESC J         erase to end of screen
  84.   ESC K         erase to end of line
  85.   ESC Z         identify; replies with ESC/Z
  86.   ESC F         select special graphics
  87.   ESC G         select US ASCII character set
  88.  
  89.   These control codes are implemented;
  90.  
  91.    7            beep
  92.    8            backspace
  93.    9            tab
  94.   10            line feed
  95.   11             "     "
  96.   12             "     "
  97.   13            carriage return
  98.   24            cancel escape sequence
  99.   27            start  escape sequence
  100.  
  101.  
  102. !Kermit
  103. =======
  104. This is an example of how to setup Kermit, so that you can use it from the
  105. RISC OS desktop. Appart from the usual !Run and !Boot files, the !Kermit
  106. directory also contains a Kerm_ini initialisation file. You can put any
  107. sequence of commands that you want into this and they will be executed
  108. when Kermit starts. The point is though that for this version of Kermit
  109. kerm_ini must be in !Kermit.
  110.  
  111.  
  112.