home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c129 / 1.ddi / TERMINAL.C < prev    next >
Encoding:
C/C++ Source or Header  |  1989-05-09  |  1.1 KB  |  40 lines

  1. /* Simple terminal program for Microsoft C 5.1 */
  2. /* Quinn-Curtis 1989 */
  3.  
  4. # include <stdlib.h>
  5. # include <stdio.h>
  6. # include "asyncxx.h"
  7.  
  8.      int err;
  9.      char transmit_ch;
  10.      char receive_ch;
  11.  
  12. void main()
  13.  
  14. { /* Com port 1, 9600 baud, no parity, 1 stop bit, 8 data bits */
  15.   open_com(0,9600,0,1,8,&err);
  16.   do {
  17.      do {
  18.        transmit_ch = getche();  /* Get Character with echo */
  19.        if (transmit_ch != 27) send_com(transmit_ch,&err);
  20.        /* Grab characters until CR or ESC */
  21.      } while ((transmit_ch != 13) && (transmit_ch != 27));
  22.      putch(10); /* Send a LF to screen */
  23.      do { /* Read com buffer until no characters left */
  24.        check_com(&receive_ch,&err);
  25.        if (err==0) {
  26.          putch(receive_ch);  /* If good character the write to screen*/
  27.          if (receive_ch==13) putch(10);  /* Add LF if CR */
  28.        }
  29.        else if (err==7){
  30.            putch(receive_ch);
  31.            printf("BUFFER OVERRUN");
  32.            reset_buffer();
  33.         }
  34.      } while (err == 0);
  35.   } while (transmit_ch != 27); /* Exit program by pressing ESC key */
  36.   close_com();
  37. }
  38.  
  39.  
  40.