##// END OF EJS Templates
Switched to O3 with no inlining optim level for debug builds...
Switched to O3 with no inlining optim level for debug builds Debug builds are mostly used for gcov while it seems a bad idea(-O3), with O0 the FSW uses more than 100% CPU in normal mode so the treadoff is to switch to O3 without inlining, this preserves the 1 to 1 relation between code and gcov counters.

File last commit:

r214:a9666078ac0b R3
r397:0c445dc7a949 R3++
Show More
avf2_prc2.h
30 lines | 738 B | text/x-c | CLexer
#ifndef AVF2_PRC2_H
#define AVF2_PRC2_H
#include "fsw_processing.h"
#include "basic_parameters.h"
#include "fsw_init.h"
typedef struct {
unsigned int norm_bp1;
unsigned int norm_bp2;
unsigned int norm_asm;
} nb_sm_before_bp_asm_f2;
//************
// RTEMS TASKS
rtems_task avf2_task( rtems_task_argument lfrRequestedMode );
rtems_task prc2_task( rtems_task_argument lfrRequestedMode );
//**********
// FUNCTIONS
void reset_nb_sm_f2( void );
void SM_average_f2(float *averaged_spec_mat_f2, ring_node *ring_node, unsigned int nbAverageNormF2 , asm_msg *msgForMATR);
void init_k_coefficients_prc2( void );
//*******
// EXTERN
extern rtems_status_code get_message_queue_id_prc2( rtems_id *queue_id );
#endif // AVF2_PRC2_H