//////////////////////////////////////////////////////////////////////////// ///@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