##// END OF EJS Templates
The flight software is now compatible with the VHDL 0.1.32...
The flight software is now compatible with the VHDL 0.1.32 Still some bugs at startup, may be due to the VHDL

File last commit:

r166:b9d810e81e1d patch rev 2
r171:13f27d43af32 VHDL_0_1_28
Show More
fsw_init.h
48 lines | 1.3 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
fsw-1-0...
r82 extern rtems_name Task_name[20]; /* array of task names */
extern rtems_id Task_id[20]; /* array of task ids */
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
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
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