📄 version.h
字号:
/****************************************************************************/
/* TEXAS INSTRUMENTS PROPRIETARY INFORMATION */
/* */
/* (c) Copyright, Texas Instruments Incorporated, 2006. */
/* All Rights Reserved. */
/* */
/* Property of Texas Instruments Incorporated. Restricted Rights - */
/* Use, duplication, or disclosure is subject to restrictions set */
/* forth in TI's program license agreement and associated documentation. */
/****************************************************************************/
/****************************************************************************/
/* version.h */
/* */
/* Version = major.minor.patch. */
/* 8-bit.8-bit.16-bit */
/****************************************************************************/
#ifndef __VERSION_H
#define __VERSION_H
#define SW_VER_MAJOR 1
#define SW_VER_MINOR 1
#define SW_VER_PATCH 0
#define SW_VER_APPLICATION (( SW_VER_MAJOR << 24 ) | ( SW_VER_MINOR << 16 ) | SW_VER_PATCH )
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -