gio_cntl.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.  *  ======== gio_cntl.c ========
  11.  *
  12.  */
  13. #include <std.h>
  14. #include <gio.h>
  15. /*
  16.  *  ======== GIO_control ========
  17.  */
  18. Int GIO_control(GIO_Handle gioChan, Uns cmd, Ptr args)
  19. {
  20.     /* call mini-driver control fxn */
  21.     return (gioChan->fxns->mdControlChan(gioChan->mdChan, cmd, args));
  22. }