nvr4101SIUSio.h
上传用户:luoyougen
上传日期:2008-05-12
资源大小:23136k
文件大小:1k
源码类别:

VxWorks

开发平台:

C/C++

  1. /* nvr4101SIUSio.h - header file for nvr4101 SIU serial driver */
  2. /* Copyright 1984-2002 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. 01b,26apr02,dat  Adding cplusplus protection, SPR 75017
  7. 01a,11jun97,sru  written.
  8. */
  9. #ifndef __INCnvr4101SIUSioh
  10. #define __INCnvr4101SIUSioh
  11. #include "sioLib.h"
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15. /* device and channel structures */
  16. typedef struct
  17.     {
  18.     /* must be first */
  19.     SIO_CHAN sio; /* standard SIO_CHAN element */
  20.     /* callbacks */
  21.     STATUS         (*getTxChar) ();
  22.     STATUS         (*putRcvChar) ();
  23.     void *         getTxArg;
  24.     void *         putRcvArg;
  25.     /* send and receive buffers */
  26.     char * pTxBuf; /* transmit buffer */
  27.     char * pRxBuf; /* receive buffer */
  28.     UINT16 * pTxWord; /* last word of tx buffer */
  29.     UINT16 * pRxWord; /* last word of rx buffer */
  30.     /* state */
  31.     int                 channelMode;    /* current mode (interrupt or poll) */
  32.     int txActive; /* transmitter active state */
  33.     int baudRate; /* for faster lookup */
  34.     } NVR4101_SIU_CHAN;
  35. /* definitions */
  36. #define DMA_PAGE_SIZE (2048)
  37. /* function prototypes */
  38. #if defined(__STDC__)
  39. extern void  nvr4101SIUDevInit (NVR4101_SIU_CHAN *pChan);
  40. extern void nvr4101SIUInt (NVR4101_SIU_CHAN *pChan);
  41. #else   /* __STDC__ */
  42. extern void  nvr4101SIUDevInit ();
  43. extern void nvr4101SIUInt ();
  44. #endif  /* __STDC__ */
  45. #ifdef __cplusplus
  46. }
  47. #endif
  48. #endif  /* __INCnvr4101SIUSioh */