##// 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
avf0_prc0.h
38 lines | 948 B | text/x-c | CLexer
#ifndef AVF0_PRC0_H_INCLUDED
#define AVF0_PRC0_H_INCLUDED
#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;
unsigned int burst_sbm_bp1;
unsigned int burst_sbm_bp2;
unsigned int burst_bp1;
unsigned int burst_bp2;
unsigned int sbm1_bp1;
unsigned int sbm1_bp2;
unsigned int sbm2_bp1;
unsigned int sbm2_bp2;
} nb_sm_before_bp_asm_f0;
//************
// RTEMS TASKS
rtems_task avf0_task( rtems_task_argument lfrRequestedMode );
rtems_task prc0_task( rtems_task_argument lfrRequestedMode );
//**********
// FUNCTIONS
void reset_nb_sm_f0( unsigned char lfrMode );
void init_k_coefficients_prc0( void );
void test_TCH( void );
//*******
// EXTERN
extern rtems_status_code get_message_queue_id_prc0( rtems_id *queue_id );
#endif // AVF0_PRC0_H_INCLUDED