forked from ccsens_hardware/stc_touch_pen
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.
34 lines
1007 B
34 lines
1007 B
4 years ago
|
////////////////////////////////////////////////////////////////////////////
|
||
|
///@copyright Copyright (c) 2018, 传控科技 All rights reserved.
|
||
|
///-------------------------------------------------------------------------
|
||
3 years ago
|
/// @file bsp_gc6133.c.h
|
||
4 years ago
|
/// @brief bsp @ driver config
|
||
|
///-------------------------------------------------------------------------
|
||
|
/// @version 1.0
|
||
|
/// @author CC
|
||
|
/// @date 20180331
|
||
|
/// @note cc_AS_stc02
|
||
3 years ago
|
|
||
4 years ago
|
//////////////////////////////////////////////////////////////////////////////
|
||
|
|
||
3 years ago
|
#ifndef _app_task_report_H
|
||
|
#define _app_task_report_H
|
||
|
|
||
|
#include "../ctask/task.h"
|
||
|
#include "../bsp/bsp_config.h"
|
||
4 years ago
|
|
||
3 years ago
|
////---------------------Task ---------------------------------
|
||
|
struct _s_task_report_
|
||
4 years ago
|
{
|
||
|
TS_task task;
|
||
3 years ago
|
TS_PH3_ccmodbus_ack *p_pkg_report;
|
||
|
U8 pkg_data_len;
|
||
4 years ago
|
};
|
||
3 years ago
|
|
||
|
extern struct _s_task_report_ s_task_report;
|
||
|
extern void L3_task_report_init(void);
|
||
|
extern void L3_task_report_handle(struct _s_task_report_ *s);
|
||
|
|
||
|
#endif // #ifndef _bsp_gc6133_H
|
||
4 years ago
|
|