version.h
来自「ks8695 loader > > > > > &」· C头文件 代码 · 共 19 行
H
19 行
/* * 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 + =
减小字号Ctrl + -
显示快捷键?