##// END OF EJS Templates
Removed all remaining unused macros and fixed bug...
Removed all remaining unused macros and fixed bug There was two numbers to set the FSW number of tasks NB_OF_TASKS and CONFIGURE_MAXIMUM_TASKS while CONFIGURE_MAXIMUM_TASKS = NB_OF_TASKS + 1

File last commit:

r324:dc3755493cce R3_plus
r385:bd1252670981 3.2.0.20 No PWD scrub with...
Show More
fsw_processing_globals.c
48 lines | 967 B | text/x-c | CLexer
/ src / fsw_processing_globals.c
paul
Minor changes in .h inclusion
r45 /** Global variables used by the processing functions.
*
* @file
* @author P. LEROY
*
*/
paul@pc-solar1.lab-lpp.local
Makefile added for the srec files generation
r26 // TOTAL = 32 coefficients * 4 = 128 octets * 3 * 12 = 4608 octets
paul
Minor changes in .h inclusion
r45 // 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;
paul@pc-solar1.lab-lpp.local
Makefile added for the srec files generation
r26 float K24_sx_im = 1;
paul
Minor changes in .h inclusion
r45 float K25_sx_re = 1;
paul@pc-solar1.lab-lpp.local
Makefile added for the srec files generation
r26 float K25_sx_im = 1;
paul
Minor changes in .h inclusion
r45 float K34_sx_re = 1;
paul@pc-solar1.lab-lpp.local
Makefile added for the srec files generation
r26 float K34_sx_im = 1;
paul
Minor changes in .h inclusion
r45 float K35_sx_re = 1;
paul@pc-solar1.lab-lpp.local
Makefile added for the srec files generation
r26 float K35_sx_im = 1;
paul
Minor changes in .h inclusion
r45 // NY 8 coefficients
float K24_ny_re = 1;
paul@pc-solar1.lab-lpp.local
Makefile added for the srec files generation
r26 float K24_ny_im = 1;
paul
Minor changes in .h inclusion
r45 float K25_ny_re = 1;
paul@pc-solar1.lab-lpp.local
Makefile added for the srec files generation
r26 float K25_ny_im = 1;
paul
Minor changes in .h inclusion
r45 float K34_ny_re = 1;
paul@pc-solar1.lab-lpp.local
Makefile added for the srec files generation
r26 float K34_ny_im = 1;
paul
Minor changes in .h inclusion
r45 float K35_ny_re = 1;
paul@pc-solar1.lab-lpp.local
Makefile added for the srec files generation
r26 float K35_ny_im = 1;
paul
Minor changes in .h inclusion
r45 // NZ 8 coefficients
float K24_nz_re = 1;
paul@pc-solar1.lab-lpp.local
Makefile added for the srec files generation
r26 float K24_nz_im = 1;
paul
Minor changes in .h inclusion
r45 float K25_nz_re = 1;
paul@pc-solar1.lab-lpp.local
Makefile added for the srec files generation
r26 float K25_nz_im = 1;
paul
Minor changes in .h inclusion
r45 float K34_nz_re = 1;
paul@pc-solar1.lab-lpp.local
Makefile added for the srec files generation
r26 float K34_nz_im = 1;
paul
Minor changes in .h inclusion
r45 float K35_nz_re = 1;
paul@pc-solar1.lab-lpp.local
Makefile added for the srec files generation
r26 float K35_nz_im = 1;
paul
Minor changes in .h inclusion
r45 // PE 4 coefficients
float K44_pe = 1;
float K55_pe = 1;
float K45_pe_re = 1;
paul@pc-solar1.lab-lpp.local
Makefile added for the srec files generation
r26 float K45_pe_im = 1;
paul
Minor changes in .h inclusion
r45
paul
union usage removed from the sources (#897 Don_ArtVariables)...
r324 #define ALPHA_M (M_PI / 4)
float Alpha_M = ALPHA_M;