##// END OF EJS Templates
.hgignore updated
.hgignore updated

File last commit:

r304:7f467c56a168 R3_plus
r327:5af3ab05fe7b R3_plus
Show More
fsw_init.h
64 lines | 2.0 KiB | text/x-c | CLexer
paul
Minor changes in .h inclusion
r45 #ifndef FSW_INIT_H_INCLUDED
#define FSW_INIT_H_INCLUDED
paul@pc-solar1.lab-lpp.local
Naming convention changed...
r5
paul
Header files inclusion reworked...
r40 #include <rtems.h>
#include <leon.h>
paul@pc-solar1.lab-lpp.local
Current version with modes NORMAL and SBM1 operational
r21
paul
packet emission task added...
r33 #include "fsw_params.h"
#include "fsw_misc.h"
#include "fsw_processing.h"
paul
avf2 prc2 tasks added...
r124
paul
packet emission task added...
r33 #include "tc_handler.h"
#include "wf_handler.h"
#include "fsw_spacewire.h"
paul@pc-solar1.lab-lpp.local
Current version with modes NORMAL and SBM1 operational
r21
paul
Sources reorganized...
r126 #include "avf0_prc0.h"
#include "avf1_prc1.h"
#include "avf2_prc2.h"
paul
AVGV task added...
r298 extern rtems_name Task_name[]; /* array of task names */
extern rtems_id Task_id[]; /* array of task ids */
paul
timecode handling modified:...
r248 extern rtems_name timecode_timer_name;
extern rtems_id timecode_timer_id;
paul
bug #456 pa_bia_status_info byte is updated upon the reception of...
r224 extern unsigned char pa_bia_status_info;
paul
ICD 4.1 taken into account
r283 extern unsigned char cp_rpw_sc_rw_f_flags;
extern float cp_rpw_sc_rw1_f1;
extern float cp_rpw_sc_rw1_f2;
extern float cp_rpw_sc_rw2_f1;
extern float cp_rpw_sc_rw2_f2;
extern float cp_rpw_sc_rw3_f1;
extern float cp_rpw_sc_rw3_f2;
extern float cp_rpw_sc_rw4_f1;
extern float cp_rpw_sc_rw4_f2;
paul
3.1.0.2...
r293 extern filterPar_t filterPar;
paul
fsw-1-0...
r82
paul@pc-solar1.lab-lpp.local
Naming convention changed...
r5 // RTEMS TASKS
paul
Header files inclusion reworked...
r40 rtems_task Init( rtems_task_argument argument);
paul
Commit before working on the ERR 4 due to message queue...
r34
// OTHER functions
paul
Ignore doc files...
r46 void create_names( void );
paul@pc-solar1.lab-lpp.local
Current version with modes NORMAL and SBM1 operational
r21 int create_all_tasks( void );
int start_all_tasks( void );
paul
sequence counters management added
r56 //
rtems_status_code create_message_queues( void );
paul
timecode handling modified:...
r248 rtems_status_code create_timecode_timer( void );
paul
fsw-1-0...
r82 rtems_status_code get_message_queue_id_send( rtems_id *queue_id );
rtems_status_code get_message_queue_id_recv( rtems_id *queue_id );
paul
Sync at CNES before going back to 117
r119 rtems_status_code get_message_queue_id_prc0( rtems_id *queue_id );
rtems_status_code get_message_queue_id_prc1( rtems_id *queue_id );
paul
avf2 prc2 tasks added...
r124 rtems_status_code get_message_queue_id_prc2( rtems_id *queue_id );
paul
fifo occupation reported in the HK packet
r197 void update_queue_max_count( rtems_id queue_id, unsigned char*fifo_size_max );
void init_ring(ring_node ring[], unsigned char nbNodes, volatile int buffer[], unsigned int bufferSize );
paul
sequence counters management added
r56 //
paul
Ignore doc files...
r46 int start_recv_send_tasks( void );
paul
Commit before working on the ERR 4 due to message queue...
r34 //
paul@pc-solar1.lab-lpp.local
Release 0.7...
r28 void init_local_mode_parameters( void );
paul
rev 1.0.0.2...
r104 void reset_local_time( void );
paul@pc-solar1.lab-lpp.local
Current version with modes NORMAL and SBM1 operational
r21
paul
Many corrections done after Logiscope analysis
r166 extern void rtems_cpu_usage_report( void );
extern void rtems_cpu_usage_reset( void );
paul
Commit before working on the ERR 4 due to message queue...
r34 extern void rtems_stack_checker_report_usage( void );
paul@pc-solar1.lab-lpp.local
Current version with modes NORMAL and SBM1 operational
r21
paul
Last commit before release 0-13...
r35 extern int sched_yield( void );
paul
Minor changes in .h inclusion
r45 #endif // FSW_INIT_H_INCLUDED