home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Misc / Vector18.lha / include / hkduartstruct.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-09-17  |  1.6 KB  |  61 lines

  1. /*
  2.  * $Header: DH0:src/asm/duart/device/RCS/hkduartstruct.h,v 7.0 92/12/08 11:48:07 Barnard Rel $
  3.  *
  4.  *****************************************************************************
  5.  *
  6.  * H K D U A R T - D E V I C E
  7.  *
  8.  *****************************************************************************
  9.  *
  10.  * structures for the hkduart.device
  11.  *
  12.  *****************************************************************************
  13.  */
  14.  
  15. #ifndef DEVICES_HKDUARTSTRUCT_H
  16. #define DEVICES_HKDUARTSTRUCT_H
  17.  
  18. /*
  19.  * co_query
  20.  */
  21.  
  22. #define        QUB_DSR                3
  23. #define        QUB_CTS                4
  24. #define        QUB_CD                5
  25. #define        QUB_RTS                6
  26. #define        QUB_DTR                7
  27. #define        QUB_BRKSENT            9
  28. #define        QUB_BRKREC            10
  29. #define        QUB_TXXOFF            11
  30. #define        QUB_RXXOFF            12
  31.  
  32. #define        QUF_DSR                (1L<<QUB_DSR)
  33. #define        QUF_CTS                (1L<<QUB_CTS)
  34. #define        QUF_CD                (1L<<QUB_CD)
  35. #define        QUF_RTS                (1L<<QUB_RTS)
  36. #define        QUF_DTR                (1L<<QUB_DTR)
  37. #define        QUF_BRKSENT            (1L<<QUB_BRKSENT)
  38. #define        QUF_BRKREC            (1L<<QUB_BRKREC)
  39. #define        QUF_TXXOFF            (1L<<QUB_TXXOFF)
  40. #define        QUF_RXXOFF            (1L<<QUB_RXXOFF)
  41.  
  42. /*
  43.  * Flag-Bits
  44.  */
  45.  
  46.  
  47. #define        DUB_XDISABLED        7    /* xOn-xOff feature disabled bit */
  48. #define        DUB_SHARED            5    /* non-exclusive access bit */
  49. #define        DUB_7WIRE            2    /* RS232 7-wire protocol */
  50. #define        DUB_PARTY_ODD        1    /* parity feature enabled bit */
  51. #define        DUB_PARTY_ON        0    /* parity-enabled bit */
  52.  
  53. #define        DUF_XDISABLED    (1<<7)    /* xOn-xOff feature disabled mask */
  54. #define        DUF_SHARED        (1<<5)    /* non-exclusive access mask */
  55. #define        DUF_7WIRE        (1<<2)    /* RS232 7-wire protocol */
  56. #define        DUF_PARTY_ODD    (1<<1)    /* parity feature enabled mask */
  57. #define        DUF_PARTY_ON    (1<<0)    /* parity-enabled mask */
  58.  
  59.  
  60. #endif /* DEVICES_HKDUARTSTRUCT_H */
  61.