25 lines
595 B
C
25 lines
595 B
C
|
////////////////////////////////////////////////////////////////////////////////
|
||
|
|
||
|
/// 终端打印文件
|
||
|
///
|
||
|
///
|
||
|
/// @file bsp_ser.h
|
||
|
/// @author gkl
|
||
|
/// @date 2017-05-27
|
||
|
/// @version v0.1
|
||
|
|
||
|
////////////////////////////////////////////////////////////////////////////////
|
||
|
|
||
|
#ifndef BSP_SER_PRESENT
|
||
|
#define BSP_SER_PRESENT
|
||
|
|
||
|
// 包含的头文件
|
||
|
#include <bsp.h>
|
||
|
#include <bsp_os.h>
|
||
|
// 函数声明
|
||
|
void term_printf (CPU_CHAR *format, ...);
|
||
|
void term_uart_wrstr (CPU_CHAR *p_str);
|
||
|
void ptz_printf(unsigned char *buffer,unsigned short int buff_size);
|
||
|
void ptz_printf_init();
|
||
|
#endif
|