📄 cpu.h
字号:
/* 联想 密级:绝密 保密期限:3年 */
/***CONFIDENTIAL *****************************************************
本文件属于公司秘密信息,请您恪守保密义务,勿向第三人透露。谢谢合作。
This file is confidential. Recipient(s) is(are) obligated to maintain secrecy
and is(are) not permitted to disclose the contents of this communication to others.
Thank you.
***********************************************************************/
/**************************************************************************
*
* 联想研究院移动通信研究室
* 软件处
*
* 联想研究院移动通信研究室 版权所有(c)
*
* 版本号 : 0.1
*
* 文件名 : cpu.h
*
* 目的 : This is header file for Athena LCD_Camera about basic function
*
* 作者 : Mark Hu
*
* 生成日期 : 2003.10.30
*
* 修改纪录 :
*-------------------------------------------------------------------------
* 姓名 日期 版本 描述
*-------------------------------------------------------------------------
* Mark hu 2003.10.30 0.1 创建
*
*
***************************************************************************/
#ifndef __CPU_H__
#define __CPU_H__
#define U8 unsigned char
#define S8 signed char
#define P8 unsigned char*
#define U16 unsigned short
#define S16 signed short
#define P16 unsigned short*
#define U32 unsigned long
#define S32 signed long
#define P32 unsigned long*
#define VT volatile
#define TRUE 1
#define FALSE 0
#define ON 1
#define OFF 0
#define HIGH 1
#define LOW 0
/*
#define ENABLE 1
#define DISABLE 0
*/ //del by jiangbo.1 2005/12/27
#define NULL 0
#define INPUT 0
#define OUTPUT 1
#define NOERROR 1
#define ERROR 0
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -