##// END OF EJS Templates
snapshot extraction for the waveform ring is operational...
snapshot extraction for the waveform ring is operational the SWF_F1 are coarsely synchronized with SWF_F0 and SWF_F2 a dedicated task, SWBD, [S]napshot [W]aveform [B]uil[D] has been created

File last commit:

r103:b24459a013ed VHDLib206
r105:ecfd2ffe3033 VHDLib206
Show More
fsw_processing.h
55 lines | 2.1 KiB | text/x-c | CLexer
paul
Minor changes in .h inclusion
r45 #ifndef FSW_PROCESSING_H_INCLUDED
#define FSW_PROCESSING_H_INCLUDED
paul@pc-solar1.lab-lpp.local
Naming convention changed...
r5
paul
Minor changes in .h inclusion
r45 #include <rtems.h>
#include <grspw.h>
#include <math.h>
#include <stdlib.h> // abs() is in the stdlib
#include <stdio.h> // printf()
paul
sequence counters management added
r56 #include <math.h>
paul
Minor changes in .h inclusion
r45
#include "fsw_params.h"
paul
sequence counters management added
r56 #include "fsw_spacewire.h"
paul
Sync
r95 #include "basic_parameters.h"
paul
Minor changes in .h inclusion
r45
paul
the function asm_reorganize format the spectral matrix to the ICD format
r103 extern volatile int sm_f0[ ][ TIME_OFFSET + TOTAL_SIZE_SM ];
extern volatile int sm_f1[ ][ TIME_OFFSET + TOTAL_SIZE_SM ];
extern volatile int sm_f2[ ][ TIME_OFFSET + TOTAL_SIZE_SM ];
paul
sy_lfr_n_swf_p implemented...
r32
// parameters
extern struct param_local_str param_local;
// registers
paul
SID corrected in TM_LFR_TC_EXE packets...
r31 extern time_management_regs_t *time_management_regs;
extern spectral_matrix_regs_t *spectral_matrix_regs;
paul
Minor changes in .h inclusion
r45 extern rtems_name misc_name[5];
extern rtems_id Task_id[20]; /* array of task ids */
paul
Sync
r95 void init_sm_rings( void );
void reset_current_sm_ring_nodes( void );
paul
Minor changes
r93
paul@pc-solar1.lab-lpp.local
Naming convention changed...
r5 // ISR
paul
Sync
r99 void reset_nb_sm_f0( void );
paul
SID corrected in TM_LFR_TC_EXE packets...
r31 rtems_isr spectral_matrices_isr( rtems_vector_number vector );
paul
Commit before working on the ERR 4 due to message queue...
r34 rtems_isr spectral_matrices_isr_simu( rtems_vector_number vector );
paul
SID corrected in TM_LFR_TC_EXE packets...
r31
paul@pc-solar1.lab-lpp.local
Naming convention changed...
r5 // RTEMS TASKS
paul@pc-solar1.lab-lpp.local
Message queue implemented for valid TC processing...
r9 rtems_task avf0_task(rtems_task_argument argument);
paul
SID corrected in TM_LFR_TC_EXE packets...
r31 rtems_task smiq_task(rtems_task_argument argument); // added to test the spectral matrix simulator
rtems_task matr_task(rtems_task_argument argument);
paul@pc-solar1.lab-lpp.local
automatic reconnexion of the spacewire link...
r17
paul
SID corrected in TM_LFR_TC_EXE packets...
r31 void matrix_reset(volatile float *averaged_spec_mat);
paul
Sync
r95 void BP1_set_old(float * compressed_spec_mat, unsigned char nb_bins_compressed_spec_mat, unsigned char * LFR_BP1);
void BP2_set_old(float * compressed_spec_mat, unsigned char nb_bins_compressed_spec_mat);
paul
SID corrected in TM_LFR_TC_EXE packets...
r31 //
void init_header_asm( Header_TM_LFR_SCIENCE_ASM_t *header);
paul
the function asm_reorganize format the spectral matrix to the ICD format
r103 void ASM_reorganize( float *averaged_spec_mat, float *averaged_spec_mat_reorganized );
void ASM_compress( float *averaged_spec_mat, unsigned char fChannel, float *compressed_spec_mat );
void ASM_convert(volatile float *input_matrix, char *output_matrix);
void ASM_send(Header_TM_LFR_SCIENCE_ASM_t *header, char *spectral_matrix,
paul
Last commit before release 0-13...
r35 unsigned int sid, spw_ioctl_pkt_send *spw_ioctl_send, rtems_id queue_id);
paul
Header files inclusion reworked...
r40 void fill_averaged_spectral_matrix( void );
paul
SID corrected in TM_LFR_TC_EXE packets...
r31 void reset_spectral_matrix_regs();
paul@pc-solar1.lab-lpp.local
Naming convention changed...
r5
paul
Minor changes in .h inclusion
r45 #endif // FSW_PROCESSING_H_INCLUDED