home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Misc / Vector18.lha / include / pio.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-08-24  |  987 b   |  41 lines

  1. /*
  2.  * $Header: DH0:src/asm/parallel/RCS/pio.h,v 1.1 92/08/24 19:44:32 Barnard Exp $
  3.  *
  4.  *****************************************************************************
  5.  *
  6.  * P I O - D E V I C E
  7.  *
  8.  *****************************************************************************
  9.  *
  10.  * defines for the pio.device
  11.  *
  12.  *****************************************************************************
  13.  */
  14.  
  15. #ifndef DEVICES_PIO_H
  16. #define DEVICES_PIO_H
  17.  
  18. /*
  19.  * Commands
  20.  */
  21.  
  22. #define        PIOCMD_QUERY             CMD_NONSTD        /* 0x09 */
  23. #define        PIOCMD_SETPARAMS        (CMD_NONSTD+1)    /* 0x0A */
  24. #define        PIOCMD_INACTIVE            (CMD_NONSTD+2)    /* 0x0B */
  25. #define        PIOCMD_ACTIVE            (CMD_NONSTD+3)    /* 0x0c */
  26.  
  27.  
  28. #define        PIOErr_DevBusy         1
  29. #define        PIOErr_BufToBig         2
  30. #define        PIOErr_InvPram         3
  31. #define        PIOErr_LineErr         4
  32. #define        PIOErr_NotOpen         5
  33. #define        PIOErr_PortReset     6
  34. #define        PIOErr_InitErr         7
  35. #define        PIOErr_Inact         8                /* PIO is in inactive-State */
  36.  
  37.  
  38. #define PIONAME     "pio.device"
  39.  
  40. #endif /* DEVICES_PIO_H */
  41.