📄 codeid.c
字号:
/**************************************************
*
* codeid.c
*
* CVS ID: $Id: codeid.c,v 1.8 2007/08/07 15:18:33 belardi Exp $
* Author: Maurizio Marcucci [MM] - STM
* Date: $Date: 2007/08/07 15:18:33 $
* Revision: $Revision: 1.8 $
*
* Description:
*
* Timer interrupt handler. Processes all the software
* timers used by the application
*
***************************************************
*
* COPYRIGHT (C) ST Microelectronics 2005
* All Rights Reserved
*
***************************************************
*
* STM CVS Log:
*
* $Log: codeid.c,v $ * Revision 1.8 2007/08/07 15:18:33 belardi * Changed codeid for release 3.3 *
* Revision 1.7 2007/03/27 12:20:26 belardi
* changed code id for post-B_3_2_PRE11
*
* Revision 1.6 2007/03/19 18:40:31 belardi
* Modified ID for 3.2.0 (prev. commit was wrong)
*
* Revision 1.5 2007/03/19 18:39:17 belardi
* Modified ID for 3.2.0
*
* Revision 1.4 2006/12/21 10:33:15 marcucci
* New Mask ROM CODE
*
* Revision 1.3 2006/09/18 09:55:23 belardi
* Corrected CVS keyword usage
*
* Revision 1.2 2006/09/18 09:24:43 belardi
* Added Log CVS keyword into file header
*
*
***************************************************/
#include "configuration.h"
// Code Identification
#if (HAVE_CODE_IDENTIFICATION == 1)
#define CODE_ID 0x00000205
#define WORD1 0x5A5A5A5A
#define WORD2 0xA5A5A5A5
typedef struct
{
unsigned int word0;
unsigned int word1;
unsigned int word2;
} CODE_INDENTIFICATION_t;
const CODE_INDENTIFICATION_t code_identification =
{
CODE_ID,
WORD1,
WORD2
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -