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

DSP编程

开发平台:

C/C++

  1. /*
  2.  *  Copyright 2002 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.  *  ======== thrProcess.h ========
  8.  *
  9.  *  Please refer to readme.txt in this file's directory for a
  10.  *  detailed description.
  11.  *
  12.  */
  13. #ifndef THRPROCESS_
  14. #define THRPROCESS_
  15. // RF5 module includes
  16. #include <chan.h>
  17. #include <icell.h>
  18. #ifdef __cplusplus
  19. extern "C" {
  20. #endif
  21. #define PROCESSNUMCHANNELS 1
  22. #define PROCESSNUMCELLS    1
  23. /* Definition of the structure describing the state of the thread. */
  24. typedef struct ThrProcess
  25. {
  26.     Int              frameRateControl[PROCESSNUMCHANNELS];
  27.     CHAN_Obj         chanListEncode[ PROCESSNUMCHANNELS ];
  28.     ICELL_Obj        cellListEncode[ PROCESSNUMCHANNELS * PROCESSNUMCELLS ];
  29.     CHAN_Obj         chanListDecode[ PROCESSNUMCHANNELS ];
  30.     ICELL_Obj        cellListDecode[ PROCESSNUMCHANNELS * PROCESSNUMCELLS ];
  31. } ThrProcess;
  32. // message IDs
  33. enum
  34. {
  35.     MSGFRAMECHANGE = 0,
  36.     MSGQUALCHANGE  = 1
  37. };
  38. /* prototypes for public functions */
  39. extern Void tskProcessInit( Void );
  40. extern Void tskProcess( Void );
  41. #ifdef __cplusplus
  42. }
  43. #endif // extern "C"
  44. #endif // THRPROCESS_