gio_cfg.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_cfg.c ========
  11.  *  General Input/Output Module's public header file.
  12.  *
  13.  */
  14. #include <std.h>
  15. #include <gio.h>
  16. #include <sem.h>
  17. /*
  18.  *  A pointer named 'GIO' and a global GIO_CONFIG structure will be initialized
  19.  *  by the configuration tool to point to an GIO_Config structure.  This 
  20.  *  structure will be referenced at run-time so that IOM will not have any
  21.  *  hard-coded reference to SEM_pend, SEM_post, etc. This will allow IOM to
  22.  *  be used in TSK and non-TSK based applications.
  23.  */
  24. GIO_Config GIO_CONFIG = {
  25.     (GIO_TsemCreate)SEM_create,
  26.     (GIO_TsemDelete)SEM_delete,
  27.     (GIO_TsemPend)SEM_pend,
  28.     (GIO_TsemPost)SEM_post
  29. };
  30. GIO_Config *GIO = &GIO_CONFIG;