📄 caltypes.h
字号:
// caltypes.h
//
// revised June 27, 2000
// Added PACCalType to differentiate between DIANA and others
// this replaces chipset_type
// N. Steffen
//
#ifndef _INC_CALTYPES_H_
#define _INC_CALTYPES_H_
#include <stdio.h>
#include <io.h>
#include <math.h>
#include <time.h>
#include "stdafx.h"
#define UInt8 unsigned char
#define Int8 char
#define UInt16 unsigned int
#define Int16 int
typedef UInt16 Parm_t[20];
typedef enum band
{
GSM,
DCS,
PCS,
GSM850
} BandIndex_t;
typedef enum port
{
COM1,
COM2,
COM3,
COM4,
COM5,
COM6,
COM7,
COM8
}ComPort_t;
typedef Int8 Cmd_t[10];
typedef struct
{
Cmd_t command;
UInt8 num_parm;
} HSMsg_t;
typedef enum tt
{
HP8922,
CM200,
AGT8960
} TesterType_t;
typedef struct
{
char ComId[8];
HANDLE Sio ;
DCB Dcb;
OVERLAPPED olWrite, olRead;
} CommDesc_t;
typedef enum pac_cal
{
CONEXANT,
INFINEON,
} PACCalType_t;
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -