src_ctrl.h
来自「液晶显示器程序代码」· C头文件 代码 · 共 29 行
H
29 行
#ifdef __SOURCECTRL__
#if(SOURCE_AUTO_SCAN)
bit bSourceScanEnable = 0; // 1 : Start the source auto scan function
// 0 : Disable the source auto scan function
unsigned char idata ucNext_Source = MASTER_SOURCE;
unsigned char idata ucSource_Times = 0;
#endif
#else
#if(SOURCE_AUTO_SCAN)
extern bit bSourceScanEnable; // 1 : Start the source auto scan function
// 0 : Disable the source auto scan function
#endif
extern bit Source_Control(void);
extern void Change_Source(unsigned char source);
#if(SOURCE_AUTO_SCAN)
extern void Source_Auto_Scan();
#endif
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?