forked from ccsens_hardware/ttss_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.
36 lines
948 B
36 lines
948 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 _bsp_debug_H
|
|
#define _bsp_debug_H
|
|
|
|
#include "../bsp/bsp_config.h"
|
|
|
|
#include "../tpc/tpc_uart.h"
|
|
|
|
#include "../msp/uart0.h"
|
|
|
|
#define TS_debug_MAX 6
|
|
typedef struct
|
|
{
|
|
vU8 add;
|
|
void (*p2fun)(U8 *pPara);
|
|
}TS_debug_;
|
|
|
|
extern void L3_debug_exp_protocol(TS_Handle_PH1 *p);
|
|
//extern void L3_UARTcom0_exp_protocol(void);
|
|
extern TS_debug_ volatile ts_debug[TS_debug_MAX];
|
|
|
|
|
|
#endif // #ifndef _bsp_drv_H
|
|
|
|
|