You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.0 KiB
42 lines
1.0 KiB
4 months ago
|
////////////////////////////////////////////////////////////////////////////
|
||
|
///@copyright Copyright (c) 2018, 传控科技 All rights reserved.
|
||
|
///-------------------------------------------------------------------------
|
||
|
/// @file bsp_drv.h
|
||
|
/// @brief bsp @ driver config
|
||
|
///-------------------------------------------------------------------------
|
||
|
/// @version 1.0
|
||
|
/// @author CC
|
||
|
/// @date 20180331
|
||
|
/// @note cc_AS_stc02
|
||
|
|
||
|
//////////////////////////////////////////////////////////////////////////////
|
||
|
|
||
|
#ifndef _APP_TASK_GAME_H
|
||
|
#define _APP_TASK_GAME_H
|
||
|
|
||
|
#include "../ctask/task.h"
|
||
|
#include "../clib/clib.h"
|
||
|
|
||
|
typedef struct _s_task_game
|
||
|
{
|
||
|
TS_task task;
|
||
|
}S_TASK_GAME;
|
||
|
|
||
|
// typedef struct _tpc_nfc_
|
||
|
// {
|
||
|
// U8 head;
|
||
|
// U8 slaveId;
|
||
|
// U8 num[2];
|
||
|
// U8 cmd;
|
||
|
// U8 buf[TPC_NFC_DAT_MAX];
|
||
|
// U8 ocr;
|
||
|
// }TPC_GAME;
|
||
|
|
||
|
extern S_TASK_GAME _s_task_game;
|
||
|
extern void L3_task_game_init(void);
|
||
|
extern void L3_task_game_handler(S_TASK_GAME *s);
|
||
|
// extern void parse_game_pkg();
|
||
|
// extern void print_game_pkg(TPC_NFC *p);
|
||
|
|
||
|
#endif // #ifndef
|