•  Back 
  •  Main 
  •  Index 
  •  Tree View 
  •  Cross references 
  •  Help 
  •  Show info about hypertext 
  •  View a new file 
Topic       : The GFA-Basic Compendium
Author      : GFA Systemtechnik GmbH
Version     : GFABasic.HYP v2.98 (12/31/2023)
Subject     : Documentation/Programming
Nodes       : 899
Index Size  : 28056
HCP-Version : 3
Compiled on : Atari
@charset    : atarist
@lang       : 
@default    : Document not found
@help       : Help
@options    : +g -i -s +z
@width      : 75
@hostname   : STRNGSRV
@hostname   : CAB     
@hostname   : HIGHWIRE
@hostname   : THING   
View Ref-FileINPAUX$
INPMID$

By means of INPAUX$ and INPMID$ data can be read in very quickly from the
serial and MIDI interfaces.

Example:

    DO
      PRINT INPAUX$;
    LOOP UNTIL MOUSEK

--> Reads in all the data from the input buffer of the serial interface. This
    method of data input is much faster than inputting byte by byte.

    inp_aux$=""
    WHILE INP?(1)
      inp_aux$=inp_aux$+CHR$(INP(1))
    WEND

--> This alternative method is clearly slower.

Bconin()+