📄 common_var_types.h
字号:
/******************************************************************************* * Copyright Statement: * -------------------- * This software is protected by Copyright and the information contained herein * is confidential. The software may not be copied and the information * contained herein may not be used or disclosed except with the written * permission of Infomax Corp. * * MODULE NAME: * DESCRIPTION: * AUTHOR: * BEGIN DATE: * LAST MODIFICATION: *****************************************************************************/ #ifndef COMMON_VAR_TYPES_H#define COMMON_VAR_TYPES_H/* Header files *//* Constant/Marco */#define INT8 signed char#define INT16 signed short#define INT32 signed int#define UINT8 unsigned char#define UINT16 unsigned short#define UINT32 unsigned int#define int8T signed char#define int16T signed short#define int32T signed int#define uint8T unsigned char#define uint16T unsigned short#define uint32T unsigned int#define VOID_FUNC void#define boolean char#define HW_WRITE(ptr, val) (*(ptr)=val)#define HW_READ(ptr) *(ptr)#define TRUE 1#define FALSE 0#define NULL 0/* Structure/Union/Enum/Typedef *//* Function Prototypes */#endif /* #ifndef */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -