defs.h
来自「linux下的串口通讯程序.用于开发串口程序很方便」· C头文件 代码 · 共 18 行
H
18 行
/**
* @file defs.h
* @brief Global definitions.
* @see defs
*/
#ifndef DEFS_H_
#define DEFS_H_
#ifndef QT_NO_DEBUG
#define APP_TITLE "QextSerialPort Test Application Debug" ///< Application title.
#else
#define APP_TITLE "QextSerialPort Test Application" ///< Application title.
#endif /*QT_NO_DEBUG*/
#endif /*DEFS_H_*/
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?