1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
/* --------------------------------------------------------------------
Project: LX tools
Module: config.h
Author: A. Garzotto
Started: 30. Nov. 95
Last Modified: 13. Dec. 95
Subject: configuration specific include file
-------------------------------------------------------------------- */
/* This file contains constants that are system specific */
/* Set this to reflect the base name of the serial port devices */
/* Sun: "/dev/tty" */
/* HP-UX: "/dev/tty1p" (???) */
#define SERIAL_NAME "/dev/cua"
/* Set this to reflect the name of first serial device */
/* It will be concatenated with SERIAL_NAME to get the full */
/* name of the device. (on a Sun, this is 'a') */
#define SERIAL_FIRST '0'
/* If your system is not POSIX compliant, comment "#define POSIX" */
/* and uncomment "STTY_COMMAND" instead. You might have to play */
/* with the parameters for the stty command. %ld will be */
/* replaced by the baud rate and %s with the device name */
/* Note that on some systems (e.g. Sun) stty works on the */
/* standard output and not on the standard input. Thus, it */
/* would be "stty sane raw pass8 %ld >%s". */
#define POSIX
/* #define STTY_COMMAND "stty sane raw pass8 %ld <%s" */
/* Set this to the desired default baud rate */
#define DEF_BAUD 38400
/* Set this to the number of seconds after which the connection */
/* is assumed to be broken */
#define TIMEOUT_NORMAL 10
/* Set this to the number of seconds after which we can assume */
/* connection did not work while trying to automagically */
/* find the correct baud rate */
#define TIMEOUT_AUTO 1
/* Define this if files copied from the LX to the Unix system */
/* should have lower case names */
#define LOWERCASE
/* This is the version number */
#define VERSION "1.1a"
|