📄 stbc_defines.h
字号:
/* -------- DESCRIPTION :: This file consists of all the structure -------- *//* -------------------- declarations of the functional modules -------- */ #ifndef _SUI_DEFINE_H_#define _SUI_DEFINE_H_typedef struct { double real; double imag;} t_COMPLEX;typedef struct
{
int psk_1; /* MPSK signal */
int psk_2;
int gen_matrix_1[K_BIT][N_BIT];
int gen_matrix_2[K_BIT][N_BIT];
int map_matrix[N_BIT][N_SIG];
int previous_block[K_BIT];
t_COMPLEX output_signal_1[NUM_STATES_DEC][NUM_TX_PER_GROUP]; /*group 1, decided by the input*/
t_COMPLEX output_signal_2[NUM_INPUT_DEC][NUM_TX_PER_GROUP]; /*group 2, decided by the state*/
double accum_err_metric [NUM_STATES_DEC][2];
int state_history[NUM_STATES_DEC][NUM_SIGS_PER_FRAME+1];
}t_CONTEXT;
#endif /* _DEFINE_H_ *//* -------------------- END OF FILE define.h --------------------------------*/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -