📄 zprint.h
字号:
#ifndef ZPRINT_HEAD
#define ZPRINT_HEAD
unsigned int StrLen( register const char *s );
void Printu( const char *format, ... );
void Printu_Net(const char *format, ...);
void PrintString(INT8U Type,INT8U *Str, INT16U Len);
#ifndef NDEBUG
#define ASSERT( _expr ) \
if(!_expr) \
{ \
Printu("Assertion failed: file %s, line %d\r\n",__FILE__, __LINE__ );\
ResetCPU(); \
}
#else
#define ASSERT(_expr)
#endif
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -