⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 common.h

📁 模擬無線通訊論文的模擬程式, 可用此程式驗證論文方法是否正確
💻 H
字号:
#ifndef __COMMON_H__
#define __COMMON_H__

/* include */
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <time.h>
#include <math.h>

/* some define type */
typedef unsigned char  u8;
typedef unsigned short u16;
typedef unsigned int   u32;

/* state type of server */
#define SERVER_IDLE 0
#define SERVER_BUSY 1

/* output type */
#define Pf_type 254
#define Pb_type 255

/* max base stations */
#define MAX_BS 16

#endif /* __COMMON_H__ */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -