##// END OF EJS Templates
the interrupt sub routine related to the waveform picker is now lighter...
the interrupt sub routine related to the waveform picker is now lighter no more picks are observed on the waveforms

File last commit:

r110:321cef60967c VHDLib206
r112:5b5da8d2c053 VHDLib206
Show More
fsw_misc.h
39 lines | 1.4 KiB | text/x-c | CLexer
paul@pc-solar1.lab-lpp.local
Naming convention changed...
r5 #ifndef FSW_MISC_H_INCLUDED
#define FSW_MISC_H_INCLUDED
paul
Minor changes in .h inclusion
r45 #include <rtems.h>
#include <stdio.h>
#include <grspw.h>
#include "fsw_params.h"
#include "fsw_spacewire.h"
paul@pc-solar1.lab-lpp.local
Naming convention changed...
r5
paul
Ignore doc files...
r46 rtems_name name_hk_rate_monotonic; // name of the HK rate monotonic
paul@pc-solar1.lab-lpp.local
Updates of the ICD taken into account...
r18 rtems_id HK_id; // id of the HK rate monotonic period
paul
Minor changes in .h inclusion
r45
paul
Minor modifications to meet Logiscope requirements
r77 //extern rtems_name misc_name[5];
//time_management_regs_t *time_management_regs;
//extern Packet_TM_LFR_HK_t housekeeping_packet;
paul@pc-solar1.lab-lpp.local
automatic reconnexion of the spacewire link...
r17
paul
Minor modifications to meet Logiscope requirements
r77 void configure_timer(gptimer_regs_t *gptimer_regs, unsigned char timer, unsigned int clock_divider,
paul@pc-solar1.lab-lpp.local
Naming convention changed...
r5 unsigned char interrupt_level, rtems_isr (*timer_isr)() );
paul
Minor modifications to meet Logiscope requirements
r77 void timer_start( gptimer_regs_t *gptimer_regs, unsigned char timer );
void timer_stop( gptimer_regs_t *gptimer_regs, unsigned char timer );
void timer_set_clock_divider(gptimer_regs_t *gptimer_regs, unsigned char timer, unsigned int clock_divider);
paul@pc-solar1.lab-lpp.local
automatic reconnexion of the spacewire link...
r17
// SERIAL LINK
paul@pc-solar1.lab-lpp.local
commit before release
r25 int send_console_outputs_on_apbuart_port( void );
paul
Minor changes
r94 int enable_apbuart_transmitter( void );
paul
Header files inclusion reworked...
r40 void set_apbuart_scaler_reload_register(unsigned int regs, unsigned int value);
paul@pc-solar1.lab-lpp.local
automatic reconnexion of the spacewire link...
r17
// RTEMS TASKS
paul
Minor changes in .h inclusion
r45 rtems_task stat_task( rtems_task_argument argument );
rtems_task hous_task( rtems_task_argument argument );
rtems_task dumb_task( rtems_task_argument unused );
paul
Last commit before release 0-13...
r35
paul
Ignore doc files...
r46 void init_housekeeping_parameters( void );
paul
sequence counters management added
r56 void increment_seq_counter( unsigned char *packet_sequence_control);
paul
fsw-0-23...
r75 void getTime( unsigned char *time);
paul
rev 1.0.0.4
r110 void send_dumb_hk( void );
paul
fsw-0-23...
r75
paul@pc-solar1.lab-lpp.local
Naming convention changed...
r5 #endif // FSW_MISC_H_INCLUDED