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

  1. /*
  2.  * $Header: DH0:SRC/asm/duart/device/RCS/hkduart.h,v 7.0 1992/12/08 11:48:04 Barnard Rel $
  3.  *
  4.  *****************************************************************************
  5.  *
  6.  * H K D U A R T - D E V I C E
  7.  *
  8.  *****************************************************************************
  9.  *
  10.  * defines for the hkduart.device
  11.  *
  12.  *****************************************************************************
  13.  */
  14.  
  15. #ifndef DEVICES_HKDUART_H
  16. #define DEVICES_HKDUART_H
  17.  
  18. /*
  19.  * Commands
  20.  */
  21.  
  22. #define        DUCMD_QUERY             CMD_NONSTD        /* 0x09 */
  23. #define        DUCMD_BREAK            (CMD_NONSTD+1)    /* 0x0A */
  24. #define        DUCMD_SETPARAMS        (CMD_NONSTD+2)    /* 0x0B */
  25. #define        DUCMD_SETCTRLLINES    (CMD_NONSTD+7)    /* 0x10 ADSG-compatible */
  26.  
  27.  
  28. #define        DUErr_DevBusy        1
  29. #define        DUErr_BaudMismatch    2 /* baud rate not supported by hardware */
  30. #define        DUErr_BufErr        4
  31. #define        DUErr_InvParam        5
  32. #define        DUErr_LineErr        6
  33. #define        DUErr_ParityErr        9
  34. #define        DUErr_TimerErr        11
  35. #define        DUErr_BufOverflow    12
  36. #define        DUErr_DetectedBreak    15
  37.  
  38. #define        DUIOCTLB_RTS  0
  39. #define        DUIOCTLB_DTR  1
  40. #define        DUIOCTLF_RTS  (1<<DUIOCTL_RTSB)
  41. #define        DUIOCTLF_DTR  (1<<DUIOCTL_DTRB)
  42.  
  43. #define HKDUARTNAME     "hkduart.device"
  44.  
  45. #endif /* DEVICES_HKDUART_H */
  46.