dio.c
上传用户:dahaojd
上传日期:2008-01-29
资源大小:14357k
文件大小:1k
源码类别:

DSP编程

开发平台:

C/C++

  1. /*
  2.  *  Copyright 2003 by Texas Instruments Incorporated.
  3.  *  All rights reserved. Property of Texas Instruments Incorporated.
  4.  *  Restricted rights to use, duplicate or disclose this code are
  5.  *  granted through contract.
  6.  *  
  7.  */
  8. /* "@(#) DDK 1.11.00.00 11-04-03 (ddk-b13)" */
  9. /*
  10.  *  ======== dio.c ========
  11.  *
  12.  *  DSP/BIOS SIO device driver (DEV) which interfaces to IOM mini-
  13.  *  drivers. See the DSP/BIOS Users Guide for more information on SIO
  14.  *
  15.  */
  16. #include <std.h>
  17. #include <dev.h>
  18. #include <sys.h>
  19. #include <dio.h>
  20. Int     DIO_ctrl(DEV_Handle device, Uns cmd, Arg arg);
  21. Int     DIO_issue(DEV_Handle device);
  22. /*
  23.  *  ======== DIO_ctrl ========
  24.  *  Simply call down to the mini-driver.
  25.  */
  26. Int DIO_ctrl(DEV_Handle device, Uns cmd, Arg arg)
  27. {
  28.     Int status;
  29.     DIO_Handle dio = (DIO_Handle)device->object;
  30.     status = dio->fxns->mdControlChan(dio->chanp, cmd, (Ptr)arg);
  31.     if (status < 0 ) {
  32.         return (SYS_EBADIO);
  33.     }
  34.     else {
  35.         return (SYS_OK);
  36.     }
  37. }
  38. /*  ======== DIO_init ========
  39.  *
  40.  */
  41. Void DIO_init(Void)
  42. {
  43.     /*
  44.      *  Module initialization
  45.      */
  46. }