19 lines
189 B
C
19 lines
189 B
C
#ifndef TOOLS_H__
|
|
#define TOOLS_H__
|
|
|
|
|
|
|
|
int tools_updata_on(void);
|
|
|
|
int tools_updata_off(void);
|
|
|
|
|
|
// 绘制调试信息到屏幕
|
|
void tools_dbg_print(int (*draw_txt)(int c,int x,int y));
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|