##// END OF EJS Templates
The flight software is now compatible with the VHDL 0.1.32...
The flight software is now compatible with the VHDL 0.1.32 Still some bugs at startup, may be due to the VHDL

File last commit:

r167:6c1a4ac855d5 patch rev 2
r171:13f27d43af32 VHDL_0_1_28
Show More
fsw_processing_globals.c
46 lines | 938 B | text/x-c | CLexer
/ timegen-qt / src / fsw_processing_globals.c
/** Global variables used by the processing functions.
*
* @file
* @author P. LEROY
*
*/
// TOTAL = 32 coefficients * 4 = 128 octets * 3 * 12 = 4608 octets
// SX 12 coefficients
float K14_sx_re = 1;
float K14_sx_im = 1;
float K15_sx_re = 1;
float K15_sx_im = 1;
float K24_sx_re = 1;
float K24_sx_im = 1;
float K25_sx_re = 1;
float K25_sx_im = 1;
float K34_sx_re = 1;
float K34_sx_im = 1;
float K35_sx_re = 1;
float K35_sx_im = 1;
// NY 8 coefficients
float K24_ny_re = 1;
float K24_ny_im = 1;
float K25_ny_re = 1;
float K25_ny_im = 1;
float K34_ny_re = 1;
float K34_ny_im = 1;
float K35_ny_re = 1;
float K35_ny_im = 1;
// NZ 8 coefficients
float K24_nz_re = 1;
float K24_nz_im = 1;
float K25_nz_re = 1;
float K25_nz_im = 1;
float K34_nz_re = 1;
float K34_nz_im = 1;
float K35_nz_re = 1;
float K35_nz_im = 1;
// PE 4 coefficients
float K44_pe = 1;
float K55_pe = 1;
float K45_pe_re = 1;
float K45_pe_im = 1;
float Alpha_M = M_PI/4;