##// END OF EJS Templates
fsw-1-0...
fsw-1-0 1.0.0.0 functions added to get the message queue identifiers get_message_queue_id_send get_message_queue_id_recv

File last commit:

r82:4237b1096e59 VHDLib206
r82:4237b1096e59 VHDLib206
Show More
fsw_init.h
40 lines | 1.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"
#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
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
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@pc-solar1.lab-lpp.local
Current version with modes NORMAL and SBM1 operational
r21
paul@pc-solar1.lab-lpp.local
Updates of the ICD taken into account...
r18 extern int rtems_cpu_usage_report( void );
paul@pc-solar1.lab-lpp.local
Current version with modes NORMAL and SBM1 operational
r21 extern int 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