sch.h

来自「软件无线电的平台」· C头文件 代码 · 共 24 行

H
24
字号
#ifndef SCH_H__#define SCH_H__#define MAX_CLIENTS 2struct sch_client_t {  // An ID to identify the mobile  int id;  // Bit-field that describes the uplinks  int uplinks;  // Bit-field that describes the downlinks  int downlinks;  // For gain-control  double gain;};struct sch_data_t {  int crc;  struct sch_client_t client[ MAX_CLIENTS ];  int len_usr;};#endif

⌨️ 快捷键说明

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