📄 _const.h
字号:
#ifndef __CONST_H
#define __CONST_H
/* For AVR, const means program memory object. For the Standard C libray,
* const often simply means that the function will not modify the argument
* so these two uses are not compatible.
* Using this macro in the standard header file makes them compatible
* with all targets
*/
#if defined(_AVR) || defined(_M8C)
#define CONST
#else
#define CONST const
#endif
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -