⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tskdecode.h

📁 ICETEK-DM642-EDUlabv1.3.rar
💻 H
字号:

#ifndef TSKDECODE_
#define TSKDECODE__

// RF5 module includes
#include <chan.h>
#include <icell.h>

#ifdef __cplusplus
extern "C" {
#endif

#define PROCESSNUMCHANNELS 1
#define PROCESSNUMCELLS    1

/* Definition of the structure describing the state of the thread. */
typedef struct _ThrDecode
{
    CHAN_Obj         chanList[ PROCESSNUMCHANNELS ];
    ICELL_Obj        cellList[ PROCESSNUMCHANNELS * PROCESSNUMCELLS ];
} ThrDecode;

// message IDs
enum
{
    MSGQUALCHANGE  = 0
};

/* prototypes for public functions */
extern Void tskDecodeInit( Void );
extern Void tskDecodeStart();
extern Void tskDecode( Void );
#ifdef __cplusplus
}
#endif // extern "C"

#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -