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
945 B
34 lines
945 B
////////////////////////////////////////////////////////////////////////////
|
|
///@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 _TASK_SMARTC_H
|
|
#define _TASK_SMARTC_H
|
|
|
|
#include "../ctask/task.h"
|
|
#include "../app/app_config.h"
|
|
#include "../clib/type.h"
|
|
|
|
|
|
|
|
typedef struct _s_task_smartc
|
|
{
|
|
TS_task task;
|
|
APP_STATUS status;
|
|
}S_TASK_SMART_CONFIG;
|
|
|
|
extern S_TASK_SMART_CONFIG task_smartconfig;
|
|
|
|
extern void L3_task_SmartConfig_init(void);
|
|
extern void L3_task_SmartConfig_handler(S_TASK_SMART_CONFIG *s);
|
|
|
|
#endif // #ifndef
|
|
|