sop板
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.

33 lines
871 B

4 years ago
////////////////////////////////////////////////////////////////////////////
///@copyright Copyright (c) 2018, 传控科技 All rights reserved.
4 years ago
///-------------------------------------------------------------------------
/// @file bsp_drv.h
/// @brief bsp @ driver config
///-------------------------------------------------------------------------
/// @version 1.0
/// @author CC
/// @date 20180331
/// @note cc_AS_stc02
//////////////////////////////////////////////////////////////////////////////
#ifndef _APP_TASK_DEBUG_H
#define _APP_TASK_DEBUG_H
4 years ago
#include "../ctask/task.h"
#include "../clib/clib.h"
4 years ago
typedef struct _s_task_debug
4 years ago
{
TS_task task;
}S_TASK_DEBUG;
extern S_TASK_DEBUG _s_task_debug;
4 years ago
extern void L3_task_debug_init(void);
extern void L3_task_debug(S_TASK_DEBUG *s);
4 years ago
#endif // #ifndef _APP_TASK_ADC_H
4 years ago