appmsg.h
来自「还是arm7操作源码」· C头文件 代码 · 共 52 行
H
52 行
/******************************************************************************
Copyright (c) 2006 by RockOS.
All rights reserved.
This software is supported by the Rock Software Workroom only.
Any bugs please contact the author with e-mail or QQ:
E-mail : baobaoba520@yahoo.com.cn
QQ : 59681888
*******************************************************************************
File name : appmsg.h
Description : the msg format and name for applications based on RockOS.
:
:
Auther : sunxinqiu
History :
2006-3-15 first release.
******************************************************************************/
#ifndef __APPMSG_H__
#define __APPMSG_H__
#ifdef __cplusplus
extern "C" {
#endif
/* common msg format for task communication. */
typedef struct
{
HTASK src;
HTASK dest;
U16 msg;
U16 length;
U8 data[1];
}APP_MSG;
/* All app msg should be defined here. */
enum
{
MSG_TICK_INT = 1,
MSG_PER_SECOND = 2,
MSG_KEY_ARRIVE = 3
};
#ifdef __cplusplus
}
#endif
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?