📄 sch.h
字号:
#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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -