⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 _const.h

📁 AVR megal128下的ucos_ii
💻 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 + -