📄 version.h
字号:
/* * Boot Loader Version * * This file is automatically generated from Makefile */#ifndef __JASPERBOOT_VERSION_H#define __JASPERBOOT_VERSION_H#define BOOTLOADER_MAJORVERSION 1#define BOOTLOADER_MINORVERSION 0#define BOOTLOADER_PATCHLEVEL 0#define MAKE_VERSION(a, b, c) (((a) << 16) | ((b) << 8) | (c))#define BOOTLOADER_VERSION MAKE_VERSION(1, 0, 0)#define BOOTLOADER_VERSIONSTR "1.0.0"#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -