##// END OF EJS Templates
rtems_message_queue_urgent is replaced by rtems_message_queue_send...
rtems_message_queue_urgent is replaced by rtems_message_queue_send "urgent" modifies the order of the packets and lfrsgse is not able to rebuild the waveforms

File last commit:

r36:303e7beebcc8 default
r36:303e7beebcc8 default
Show More
tc_handler.c
1410 lines | 46.4 KiB | text/x-c | CLexer
paul@pc-solar1.lab-lpp.local
Naming convention changed...
r5 #include <tc_handler.h>
#include <fsw_params.h>
paul
SOLVED: compatibility of fsw-gsa with the WF simulator interruption
r30 char *DumbMessages[6] = {"in DUMB *** default", // RTEMS_EVENT_0
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 "in DUMB *** timecode_irq_handler", // RTEMS_EVENT_1
"in DUMB *** waveforms_isr", // RTEMS_EVENT_2
"in DUMB *** in SMIQ *** Error sending event to AVF0", // RTEMS_EVENT_3
paul
SOLVED: compatibility of fsw-gsa with the WF simulator interruption
r30 "in DUMB *** spectral_matrices_isr *** Error sending event to SMIQ", // RTEMS_EVENT_4
"in DUMB *** waveforms_simulator_isr" // RTEMS_EVENT_5
paul@pc-solar1.lab-lpp.local
Updates of the ICD taken into account...
r18 };
unsigned char currentTC_LEN_RCV[2]; // SHALL be equal to the current TC packet estimated packet length field
unsigned char currentTC_COMPUTED_CRC[2];
unsigned int currentTC_LEN_RCV_AsUnsignedInt;
unsigned int currentTM_length;
unsigned char currentTC_processedFlag;
unsigned int lookUpTableForCRC[256];
paul@pc-solar1.lab-lpp.local
Naming convention changed...
r5
paul@pc-solar1.lab-lpp.local
Minor updates
r7 //**********************
// GENERAL USE FUNCTIONS
paul@pc-solar1.lab-lpp.local
Naming convention changed...
r5 unsigned int Crc_opt( unsigned char D, unsigned int Chk)
{
return(((Chk << 8) & 0xff00)^lookUpTableForCRC [(((Chk >> 8)^D) & 0x00ff)]);
}
paul@pc-solar1.lab-lpp.local
Updates of the ICD taken into account...
r18 void initLookUpTableForCRC( void )
paul@pc-solar1.lab-lpp.local
Naming convention changed...
r5 {
paul@pc-solar1.lab-lpp.local
Updates of the ICD taken into account...
r18 unsigned int i;
unsigned int tmp;
paul@pc-solar1.lab-lpp.local
Naming convention changed...
r5 for (i=0; i<256; i++)
{
tmp = 0;
paul@pc-solar1.lab-lpp.local
Updates of the ICD taken into account...
r18 if((i & 1) != 0) {
tmp = tmp ^ 0x1021;
}
if((i & 2) != 0) {
tmp = tmp ^ 0x2042;
}
if((i & 4) != 0) {
tmp = tmp ^ 0x4084;
}
if((i & 8) != 0) {
tmp = tmp ^ 0x8108;
}
if((i & 16) != 0) {
tmp = tmp ^ 0x1231;
}
if((i & 32) != 0) {
tmp = tmp ^ 0x2462;
}
if((i & 64) != 0) {
tmp = tmp ^ 0x48c4;
}
if((i & 128) != 0) {
tmp = tmp ^ 0x9188;
}
paul@pc-solar1.lab-lpp.local
Naming convention changed...
r5 lookUpTableForCRC[i] = tmp;
}
}
void GetCRCAsTwoBytes(unsigned char* data, unsigned char* crcAsTwoBytes, unsigned int sizeOfData)
{
unsigned int Chk;
int j;
Chk = 0xffff; // reset the syndrom to all ones
for (j=0; j<sizeOfData; j++) {
Chk = Crc_opt(data[j], Chk);
}
crcAsTwoBytes[0] = (unsigned char) (Chk >> 8);
crcAsTwoBytes[1] = (unsigned char) (Chk & 0x00ff);
}
paul
packet emission task added...
r33 void updateLFRCurrentMode()
{
lfrCurrentMode = (housekeeping_packet.lfr_status_word[0] & 0xf0) >> 4;
}
paul@pc-solar1.lab-lpp.local
Minor updates
r7 //*********************
// ACCEPTANCE FUNCTIONS
paul
Last commit before release 0-13...
r35 int TC_acceptance(ccsdsTelecommandPacket_t *TC, unsigned int tc_len_recv, rtems_id queue_id)
paul@pc-solar1.lab-lpp.local
Naming convention changed...
r5 {
paul@pc-solar1.lab-lpp.local
Updates of the ICD taken into account...
r18 int ret = 0;
paul@pc-solar1.lab-lpp.local
Message queue implemented for valid TC processing...
r9 rtems_status_code status;
paul
packet emission task added...
r33 Packet_TM_LFR_TC_EXE_CORRUPTED_t packet;
unsigned int parserCode = 0;
paul@pc-solar1.lab-lpp.local
Naming convention changed...
r5 unsigned char computed_CRC[2];
paul
packet emission task added...
r33 unsigned int packetLength;
paul@pc-solar1.lab-lpp.local
Naming convention changed...
r5
paul@pc-solar1.lab-lpp.local
Message queue implemented for valid TC processing...
r9 GetCRCAsTwoBytes( (unsigned char*) TC->packetID, computed_CRC, tc_len_recv + 5 );
paul
packet emission task added...
r33 parserCode = TC_parser( TC, tc_len_recv ) ;
if ( (parserCode == ILLEGAL_APID) | (parserCode == WRONG_LEN_PACKET) | (parserCode == INCOR_CHECKSUM)
| (parserCode == ILL_TYPE) | (parserCode == ILL_SUBTYPE) | (parserCode == WRONG_APP_DATA) )
paul@pc-solar1.lab-lpp.local
Naming convention changed...
r5 { // generate TM_LFR_TC_EXE_CORRUPTED
paul
packet emission task added...
r33 packetLength = (TC->packetLength[0] * 256) + TC->packetLength[1];
packet.targetLogicalAddress = CCSDS_DESTINATION_ID;
packet.protocolIdentifier = CCSDS_PROTOCOLE_ID;
packet.reserved = DEFAULT_RESERVED;
packet.userApplication = CCSDS_USER_APP;
// PACKET HEADER
packet.packetID[0] = (unsigned char) (TM_PACKET_ID_TC_EXE >> 8);
packet.packetID[1] = (unsigned char) (TM_PACKET_ID_TC_EXE );
packet.packetSequenceControl[0] = TM_PACKET_SEQ_CTRL_STANDALONE;
packet.packetSequenceControl[1] = TM_PACKET_SEQ_CNT_DEFAULT;
packet.packetLength[0] = (unsigned char) (PACKET_LENGTH_TC_EXE_CORRUPTED >> 8);
packet.packetLength[1] = (unsigned char) (PACKET_LENGTH_TC_EXE_CORRUPTED );
// DATA FIELD HEADER
packet.spare1_pusVersion_spare2 = DEFAULT_SPARE1_PUSVERSION_SPARE2;
packet.serviceType = TM_TYPE_TC_EXE;
packet.serviceSubType = TM_SUBTYPE_EXE_NOK;
packet.destinationID = TM_DESTINATION_ID_GROUND;
packet.time[0] = (time_management_regs->coarse_time>>24 );
packet.time[1] = (time_management_regs->coarse_time>>16 );
packet.time[2] = (time_management_regs->coarse_time>>8 );
packet.time[3] = (time_management_regs->coarse_time );
packet.time[4] = (time_management_regs->fine_time>>8 );
packet.time[5] = (time_management_regs->fine_time );
//
packet.tc_failure_code[0] = (unsigned char) (FAILURE_CODE_CORRUPTED >> 8);
packet.tc_failure_code[1] = (unsigned char) (FAILURE_CODE_CORRUPTED );
packet.telecommand_pkt_id[0] = TC->packetID[0];
packet.telecommand_pkt_id[1] = TC->packetID[1];
packet.pkt_seq_control[0] = TC->packetSequenceControl[0];
packet.pkt_seq_control[0] = TC->packetSequenceControl[1];
packet.tc_service = TC->serviceType;
packet.tc_subtype = TC->serviceSubType;
packet.pkt_len_rcv_value[0] = TC->packetLength[0];
packet.pkt_len_rcv_value[1] = TC->packetLength[1];
packet.pkt_datafieldsize_cnt[0] = currentTC_LEN_RCV[0];
packet.pkt_datafieldsize_cnt[1] = currentTC_LEN_RCV[1];
packet.rcv_crc[0] = TC->dataAndCRC[packetLength];
packet.rcv_crc[1] = TC->dataAndCRC[packetLength];
packet.computed_crc[0] = computed_CRC[0];
packet.computed_crc[1] = computed_CRC[1];
paul@pc-solar1.lab-lpp.local
Message queue implemented for valid TC processing...
r9 // SEND PACKET
paul
packet emission task added...
r33 status = write( fdSPW, (char *) &packet, PACKET_LENGTH_TC_EXE_CORRUPTED + CCSDS_TC_TM_PACKET_OFFSET + 4);
paul@pc-solar1.lab-lpp.local
Naming convention changed...
r5 }
admin@pc-p-leroy3.LAB-LPP.LOCAL
Draft implementation of the TC_LFR_LOAD_NORMAL_PAR
r10 else { // send valid TC to the action launcher
paul
Last commit before release 0-13...
r35 status = rtems_message_queue_send( queue_id, TC, tc_len_recv + CCSDS_TC_TM_PACKET_OFFSET + 3);
paul@pc-solar1.lab-lpp.local
Updates of the ICD taken into account...
r18 ret = -1;
paul@pc-solar1.lab-lpp.local
Naming convention changed...
r5 }
paul@pc-solar1.lab-lpp.local
Updates of the ICD taken into account...
r18 return ret;
paul@pc-solar1.lab-lpp.local
Naming convention changed...
r5 }
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 unsigned char TC_parser(ccsdsTelecommandPacket_t * TMPacket, unsigned int TC_LEN_RCV)
paul@pc-solar1.lab-lpp.local
Updates of the ICD taken into account...
r18 {
unsigned char ret = 0;
unsigned char pid = 0;
unsigned char category = 0;
paul@pc-solar1.lab-lpp.local
Naming convention changed...
r5 unsigned int length = 0;
unsigned char packetType = 0;
unsigned char packetSubtype = 0;
paul@pc-solar1.lab-lpp.local
Updates of the ICD taken into account...
r18 unsigned char * CCSDSContent = NULL;
paul@pc-solar1.lab-lpp.local
Naming convention changed...
r5
paul@pc-solar1.lab-lpp.local
Updates of the ICD taken into account...
r18 // APID check *** APID on 2 bytes
pid = ((TMPacket->packetID[0] & 0x07)<<4) + ( (TMPacket->packetID[1]>>4) & 0x0f ); // PID = 11 *** 7 bits xxxxx210 7654xxxx
category = (TMPacket->packetID[1] & 0x0f); // PACKET_CATEGORY = 12 *** 4 bits xxxxxxxx xxxx3210
length = (TMPacket->packetLength[0] * 256) + TMPacket->packetLength[1];
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 packetType = TMPacket->serviceType;
packetSubtype = TMPacket->serviceSubType;
paul@pc-solar1.lab-lpp.local
Updates of the ICD taken into account...
r18
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 if ( pid != CCSDS_PROCESS_ID ) {
paul@pc-solar1.lab-lpp.local
Updates of the ICD taken into account...
r18 ret = ILLEGAL_APID;
}
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 else if ( category != CCSDS_PACKET_CATEGORY ) {
paul@pc-solar1.lab-lpp.local
Updates of the ICD taken into account...
r18 ret = ILLEGAL_APID;
}
else if (length != TC_LEN_RCV ) { // packet length check
ret = WRONG_LEN_PACKET; // LEN RCV != SIZE FIELD
}
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 else if ( length >= CCSDS_TC_PKT_MAX_SIZE ) {
paul@pc-solar1.lab-lpp.local
Updates of the ICD taken into account...
r18 ret = WRONG_LEN_PACKET; // check that the packet does not exceed the MAX size
paul@pc-solar1.lab-lpp.local
Naming convention changed...
r5 }
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 else if ( packetType == TC_TYPE_GEN ){ // service type, subtype and packet length check
paul@pc-solar1.lab-lpp.local
Updates of the ICD taken into account...
r18 switch(packetSubtype){ //subtype, autorized values are 3, 20, 21, 24, 27, 28, 30, 40, 50, 60, 61
case TC_SUBTYPE_RESET:
if (length!=(TC_LEN_RESET-CCSDS_TC_TM_PACKET_OFFSET)) {
ret = WRONG_LEN_PACKET;
}
else {
ret = CCSDS_TM_VALID;
}
break;
case TC_SUBTYPE_LOAD_COMM:
if (length!=(TC_LEN_LOAD_COMM-CCSDS_TC_TM_PACKET_OFFSET)) {
ret = WRONG_LEN_PACKET;
}
else {
ret = CCSDS_TM_VALID;
}
break;
case TC_SUBTYPE_LOAD_NORM:
if (length!=(TC_LEN_LOAD_NORM-CCSDS_TC_TM_PACKET_OFFSET)) {
ret = WRONG_LEN_PACKET;
}
else {
ret = CCSDS_TM_VALID;
}
break;
case TC_SUBTYPE_LOAD_BURST:
if (length!=(TC_LEN_LOAD_BURST-CCSDS_TC_TM_PACKET_OFFSET)) {
ret = WRONG_LEN_PACKET;
}
else {
ret = CCSDS_TM_VALID;
}
break;
case TC_SUBTYPE_LOAD_SBM1:
if (length!=(TC_LEN_LOAD_SBM1-CCSDS_TC_TM_PACKET_OFFSET)) {
ret = WRONG_LEN_PACKET;
}
else {
ret = CCSDS_TM_VALID;
}
break;
case TC_SUBTYPE_LOAD_SBM2:
if (length!=(TC_LEN_LOAD_SBM2-CCSDS_TC_TM_PACKET_OFFSET)) {
ret = WRONG_LEN_PACKET;
}
else {
ret = CCSDS_TM_VALID;
}
break;
case TC_SUBTYPE_DUMP:
if (length!=(TC_LEN_DUMP-CCSDS_TC_TM_PACKET_OFFSET)) {
ret = WRONG_LEN_PACKET;
}
else {
ret = CCSDS_TM_VALID;
}
break;
case TC_SUBTYPE_ENTER:
if (length!=(TC_LEN_ENTER-CCSDS_TC_TM_PACKET_OFFSET)) {
ret = WRONG_LEN_PACKET;
}
else {
ret = CCSDS_TM_VALID;
}
break;
case TC_SUBTYPE_UPDT_INFO:
if (length!=(TC_LEN_UPDT_INFO-CCSDS_TC_TM_PACKET_OFFSET)) {
ret = WRONG_LEN_PACKET;
}
else {
ret = CCSDS_TM_VALID;
}
break;
case TC_SUBTYPE_EN_CAL:
if (length!=(TC_LEN_EN_CAL-CCSDS_TC_TM_PACKET_OFFSET)) {
ret = WRONG_LEN_PACKET;
}
else {
ret = CCSDS_TM_VALID;
}
break;
case TC_SUBTYPE_DIS_CAL:
if (length!=(TC_LEN_DIS_CAL-CCSDS_TC_TM_PACKET_OFFSET)) {
ret = WRONG_LEN_PACKET;
}
else {
ret = CCSDS_TM_VALID;
}
break;
default:
ret = ILL_SUBTYPE;
break;
}
paul@pc-solar1.lab-lpp.local
Naming convention changed...
r5 }
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 else if ( packetType == TC_TYPE_TIME ){
paul@pc-solar1.lab-lpp.local
Updates of the ICD taken into account...
r18 if (packetSubtype!=TC_SUBTYPE_UPDT_TIME) {
ret = ILL_SUBTYPE;
}
else if (length!=(TC_LEN_UPDT_TIME-CCSDS_TC_TM_PACKET_OFFSET)) {
ret = WRONG_LEN_PACKET;
}
else {
ret = CCSDS_TM_VALID;
}
}
else {
ret = ILL_TYPE;
}
// source ID check // Source ID not documented in the ICD
paul@pc-solar1.lab-lpp.local
Naming convention changed...
r5 // packet error control, CRC check
paul@pc-solar1.lab-lpp.local
Slight changes on the flight software
r20 if ( ret == CCSDS_TM_VALID ) {
CCSDSContent = (unsigned char*) TMPacket->packetID;
GetCRCAsTwoBytes(CCSDSContent, currentTC_COMPUTED_CRC, length + CCSDS_TC_TM_PACKET_OFFSET - 2); // 2 CRC bytes removed from the calculation of the CRC
if (currentTC_COMPUTED_CRC[0] != CCSDSContent[length + CCSDS_TC_TM_PACKET_OFFSET -2]) {
ret = INCOR_CHECKSUM;
}
else if (currentTC_COMPUTED_CRC[1] != CCSDSContent[length + CCSDS_TC_TM_PACKET_OFFSET -1]) {
ret = INCOR_CHECKSUM;
}
else {
ret = CCSDS_TM_VALID;
}
paul@pc-solar1.lab-lpp.local
Updates of the ICD taken into account...
r18 }
return ret;
paul@pc-solar1.lab-lpp.local
Naming convention changed...
r5 }
admin@pc-p-leroy3.LAB-LPP.LOCAL
Draft implementation of the TC_LFR_LOAD_NORMAL_PAR
r10 unsigned char TM_build_header( enum TM_TYPE tm_type, unsigned int packetLength,
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 TMHeader_t *TMHeader, unsigned char tc_sid)
paul@pc-solar1.lab-lpp.local
Naming convention changed...
r5 {
paul@pc-solar1.lab-lpp.local
Updates of the ICD taken into account...
r18 TMHeader->targetLogicalAddress = CCSDS_DESTINATION_ID;
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 TMHeader->protocolIdentifier = CCSDS_PROTOCOLE_ID;
paul@pc-solar1.lab-lpp.local
Updates of the ICD taken into account...
r18 TMHeader->reserved = 0x00;
paul@pc-solar1.lab-lpp.local
Naming convention changed...
r5 TMHeader->userApplication = 0x00;
TMHeader->packetID[0] = 0x0c;
TMHeader->packetSequenceControl[0] = 0xc0;
TMHeader->packetSequenceControl[1] = 0x00;
TMHeader->packetLength[0] = (unsigned char) (packetLength>>8);
TMHeader->packetLength[1] = (unsigned char) packetLength;
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 TMHeader->spare1_pusVersion_spare2 = 0x10;
paul
SID corrected in TM_LFR_TC_EXE packets...
r31 TMHeader->destinationID = TM_DESTINATION_ID_GROUND; // default destination id
paul@pc-solar1.lab-lpp.local
Naming convention changed...
r5 switch (tm_type){
case(TM_LFR_TC_EXE_OK):
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 TMHeader->packetID[1] = (unsigned char) TM_PACKET_ID_TC_EXE;
TMHeader->serviceType = TM_TYPE_TC_EXE; // type
TMHeader->serviceSubType = TM_SUBTYPE_EXE_OK; // subtype
TMHeader->destinationID = tc_sid; // destination id
paul@pc-solar1.lab-lpp.local
Naming convention changed...
r5 break;
case(TM_LFR_TC_EXE_ERR):
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 TMHeader->packetID[1] = (unsigned char) TM_PACKET_ID_TC_EXE;
TMHeader->serviceType = TM_TYPE_TC_EXE; // type
TMHeader->serviceSubType = TM_SUBTYPE_EXE_NOK; // subtype
paul
SID corrected in TM_LFR_TC_EXE packets...
r31 TMHeader->destinationID = tc_sid;
paul@pc-solar1.lab-lpp.local
Naming convention changed...
r5 break;
case(TM_LFR_HK):
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 TMHeader->packetID[1] = (unsigned char) TM_PACKET_ID_HK;
TMHeader->serviceType = TM_TYPE_HK; // type
TMHeader->serviceSubType = TM_SUBTYPE_HK; // subtype
paul@pc-solar1.lab-lpp.local
Naming convention changed...
r5 break;
case(TM_LFR_SCI):
paul
Commit before working on the ERR 4 due to message queue...
r34 TMHeader->packetID[1] = (unsigned char) TM_PACKET_ID_SCIENCE_NORMAL_BURST;
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 TMHeader->serviceType = TM_TYPE_LFR_SCIENCE; // type
TMHeader->serviceSubType = TM_SUBTYPE_SCIENCE; // subtype
paul@pc-solar1.lab-lpp.local
Naming convention changed...
r5 break;
case(TM_LFR_SCI_SBM):
paul
Commit before working on the ERR 4 due to message queue...
r34 TMHeader->packetID[1] = (unsigned char) TM_PACKET_ID_SCIENCE_SBM1_SBM2;
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 TMHeader->serviceType = TM_TYPE_LFR_SCIENCE; // type
TMHeader->serviceSubType = TM_SUBTYPE_SCIENCE; // subtype
paul@pc-solar1.lab-lpp.local
Naming convention changed...
r5 break;
case(TM_LFR_PAR_DUMP):
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 TMHeader->packetID[1] = (unsigned char) TM_PACKET_ID_PARAMETER_DUMP;
TMHeader->serviceType = TM_TYPE_HK; // type
TMHeader->serviceSubType = TM_SUBTYPE_HK; // subtype
paul@pc-solar1.lab-lpp.local
Naming convention changed...
r5 break;
default:
return 0;
}
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 TMHeader->time[0] = (unsigned char) (time_management_regs->coarse_time>>24);
TMHeader->time[1] = (unsigned char) (time_management_regs->coarse_time>>16);
TMHeader->time[2] = (unsigned char) (time_management_regs->coarse_time>>8);
TMHeader->time[3] = (unsigned char) (time_management_regs->coarse_time);
TMHeader->time[4] = (unsigned char) (time_management_regs->fine_time>>8);
TMHeader->time[5] = (unsigned char) (time_management_regs->fine_time);
paul@pc-solar1.lab-lpp.local
automatic reconnexion of the spacewire link...
r17
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 return LFR_SUCCESSFUL;
paul@pc-solar1.lab-lpp.local
automatic reconnexion of the spacewire link...
r17 }
paul@pc-solar1.lab-lpp.local
Minor updates
r7 //***********
// RTEMS TASK
paul@pc-solar1.lab-lpp.local
Message queue implemented for valid TC processing...
r9 rtems_task recv_task( rtems_task_argument unused )
paul@pc-solar1.lab-lpp.local
Updates of the ICD taken into account...
r18 {
paul@pc-solar1.lab-lpp.local
Naming convention changed...
r5 int len = 0;
unsigned int i = 0;
unsigned int data_length = 0;
ccsdsTelecommandPacket_t currentTC;
char data[100];
paul
Last commit before release 0-13...
r35 rtems_status_code status;
rtems_id queue_id;
paul@pc-solar1.lab-lpp.local
Naming convention changed...
r5
paul@pc-solar1.lab-lpp.local
Updates of the ICD taken into account...
r18 for(i=0; i<100; i++) data[i] = 0;
paul
Last commit before release 0-13...
r35 status = rtems_message_queue_ident( misc_name[QUEUE_QUEU], 0, &queue_id );
if (status != RTEMS_SUCCESSFUL)
{
PRINTF1("in RECV *** ERR getting queue id, %d\n", status)
}
BOOT_PRINTF("in RECV *** \n")
paul@pc-solar1.lab-lpp.local
Updates of the ICD taken into account...
r18
paul@pc-solar1.lab-lpp.local
Message queue implemented for valid TC processing...
r9 while(1)
paul@pc-solar1.lab-lpp.local
Updates of the ICD taken into account...
r18 {
len = read(fdSPW, (char*) &currentTC, CCSDS_TC_PKT_MAX_SIZE); // the call to read is blocking
if (len == -1){ // error during the read call
PRINTF("In RECV *** last read call returned -1\n")
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 //if (rtems_event_send( Task_id[TASKID_SPIQ], SPW_LINKERR_EVENT ) != RTEMS_SUCCESSFUL) {
// PRINTF("IN RECV *** Error: rtems_event_send SPW_LINKERR_EVENT\n")
//}
//if (rtems_task_suspend(RTEMS_SELF) != RTEMS_SUCCESSFUL) {
// PRINTF("In RECV *** Error: rtems_task_suspend(RTEMS_SELF)\n")
//}
paul@pc-solar1.lab-lpp.local
Naming convention changed...
r5 }
paul@pc-solar1.lab-lpp.local
Updates of the ICD taken into account...
r18 else {
paul@pc-solar1.lab-lpp.local
Slight changes on the flight software
r20 if ( (len+1) < CCSDS_TC_PKT_MIN_SIZE ) {
PRINTF("In RECV *** packet lenght too short\n")
}
else {
currentTC_LEN_RCV[0] = 0x00;
currentTC_LEN_RCV[1] = (unsigned char) (len - CCSDS_TC_TM_PACKET_OFFSET - 3); // build the corresponding packet size field
currentTC_LEN_RCV_AsUnsignedInt = (unsigned int) (len - CCSDS_TC_TM_PACKET_OFFSET - 3); // => -3 is for Prot ID, Reserved and User App bytes
// CHECK THE TC AND BUILD THE APPROPRIATE TM
paul
Last commit before release 0-13...
r35 data_length = TC_acceptance(&currentTC, currentTC_LEN_RCV_AsUnsignedInt, queue_id);
paul@pc-solar1.lab-lpp.local
Slight changes on the flight software
r20 if (data_length!=-1)
{
}
paul@pc-solar1.lab-lpp.local
Updates of the ICD taken into account...
r18 }
}
}
paul@pc-solar1.lab-lpp.local
Naming convention changed...
r5 }
paul@pc-solar1.lab-lpp.local
Message queue implemented for valid TC processing...
r9 rtems_task actn_task( rtems_task_argument unused )
{
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 int result;
rtems_status_code status; // RTEMS status code
ccsdsTelecommandPacket_t TC; // TC sent to the ACTN task
size_t size; // size of the incoming TC packet
unsigned char subtype; // subtype of the current TC packet
paul
Last commit before release 0-13...
r35 rtems_id queue_rcv_id;
rtems_id queue_snd_id;
status = rtems_message_queue_ident( misc_name[QUEUE_QUEU], 0, &queue_rcv_id );
if (status != RTEMS_SUCCESSFUL)
{
PRINTF1("in ACTN *** ERR getting queue_rcv_id %d\n", status)
}
status = rtems_message_queue_ident( misc_name[QUEUE_PKTS], 0, &queue_snd_id );
if (status != RTEMS_SUCCESSFUL)
{
PRINTF1("in ACTN *** ERR getting queue_snd_id %d\n", status)
}
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23
result = LFR_SUCCESSFUL;
subtype = 0; // subtype of the current TC packet
paul@pc-solar1.lab-lpp.local
Naming convention changed...
r5
paul
Last commit before release 0-13...
r35 BOOT_PRINTF("in ACTN *** \n")
paul@pc-solar1.lab-lpp.local
Several TC actions added...
r11
paul@pc-solar1.lab-lpp.local
Message queue implemented for valid TC processing...
r9 while(1)
{
paul
Last commit before release 0-13...
r35 status = rtems_message_queue_receive( queue_rcv_id, (char*) &TC, &size,
paul@pc-solar1.lab-lpp.local
Message queue implemented for valid TC processing...
r9 RTEMS_WAIT, RTEMS_NO_TIMEOUT);
paul@pc-solar1.lab-lpp.local
All modes partially implemented...
r22 if (status!=RTEMS_SUCCESSFUL) PRINTF1("ERR *** in task ACTN *** error receiving a message, code %d \n", status)
paul@pc-solar1.lab-lpp.local
Message queue implemented for valid TC processing...
r9 else
{
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 subtype = TC.serviceSubType;
paul@pc-solar1.lab-lpp.local
Message queue implemented for valid TC processing...
r9 switch(subtype)
{
case TC_SUBTYPE_RESET:
paul
Last commit before release 0-13...
r35 result = action_reset( &TC, queue_snd_id );
close_action( &TC, result, queue_snd_id );
paul@pc-solar1.lab-lpp.local
Message queue implemented for valid TC processing...
r9 break;
paul@pc-solar1.lab-lpp.local
Several TC actions added...
r11 //
case TC_SUBTYPE_LOAD_COMM:
paul
packet emission task added...
r33 result = action_load_common_par( &TC );
paul
Last commit before release 0-13...
r35 close_action( &TC, result, queue_snd_id );
paul@pc-solar1.lab-lpp.local
Several TC actions added...
r11 break;
//
paul@pc-solar1.lab-lpp.local
Message queue implemented for valid TC processing...
r9 case TC_SUBTYPE_LOAD_NORM:
paul
Last commit before release 0-13...
r35 result = action_load_normal_par( &TC, queue_snd_id );
close_action( &TC, result, queue_snd_id );
paul@pc-solar1.lab-lpp.local
Message queue implemented for valid TC processing...
r9 break;
paul@pc-solar1.lab-lpp.local
Several TC actions added...
r11 //
paul@pc-solar1.lab-lpp.local
Message queue implemented for valid TC processing...
r9 case TC_SUBTYPE_LOAD_BURST:
paul
Last commit before release 0-13...
r35 result = action_load_burst_par( &TC, queue_snd_id );
close_action( &TC, result, queue_snd_id );
paul@pc-solar1.lab-lpp.local
Message queue implemented for valid TC processing...
r9 break;
paul@pc-solar1.lab-lpp.local
Several TC actions added...
r11 //
paul@pc-solar1.lab-lpp.local
Message queue implemented for valid TC processing...
r9 case TC_SUBTYPE_LOAD_SBM1:
paul
Last commit before release 0-13...
r35 result = action_load_sbm1_par( &TC, queue_snd_id );
close_action( &TC, result, queue_snd_id );
paul@pc-solar1.lab-lpp.local
Message queue implemented for valid TC processing...
r9 break;
paul@pc-solar1.lab-lpp.local
Several TC actions added...
r11 //
paul@pc-solar1.lab-lpp.local
Message queue implemented for valid TC processing...
r9 case TC_SUBTYPE_LOAD_SBM2:
paul
Last commit before release 0-13...
r35 result = action_load_sbm2_par( &TC, queue_snd_id );
close_action( &TC, result, queue_snd_id );
paul@pc-solar1.lab-lpp.local
Message queue implemented for valid TC processing...
r9 break;
paul@pc-solar1.lab-lpp.local
Several TC actions added...
r11 //
paul@pc-solar1.lab-lpp.local
Message queue implemented for valid TC processing...
r9 case TC_SUBTYPE_DUMP:
paul
packet emission task added...
r33 result = action_dump_par( &TC );
paul
Last commit before release 0-13...
r35 close_action( &TC, result, queue_snd_id );
paul@pc-solar1.lab-lpp.local
Message queue implemented for valid TC processing...
r9 break;
paul@pc-solar1.lab-lpp.local
Several TC actions added...
r11 //
paul@pc-solar1.lab-lpp.local
Message queue implemented for valid TC processing...
r9 case TC_SUBTYPE_ENTER:
paul
Last commit before release 0-13...
r35 result = action_enter_mode( &TC, queue_snd_id );
close_action( &TC, result, queue_snd_id );
paul@pc-solar1.lab-lpp.local
Message queue implemented for valid TC processing...
r9 break;
paul@pc-solar1.lab-lpp.local
Several TC actions added...
r11 //
paul@pc-solar1.lab-lpp.local
Message queue implemented for valid TC processing...
r9 case TC_SUBTYPE_UPDT_INFO:
paul
Last commit before release 0-13...
r35 result = action_update_info( &TC, queue_snd_id );
close_action( &TC, result, queue_snd_id );
paul@pc-solar1.lab-lpp.local
Message queue implemented for valid TC processing...
r9 break;
paul@pc-solar1.lab-lpp.local
Several TC actions added...
r11 //
paul@pc-solar1.lab-lpp.local
Message queue implemented for valid TC processing...
r9 case TC_SUBTYPE_EN_CAL:
paul
Last commit before release 0-13...
r35 result = action_enable_calibration( &TC, queue_snd_id );
close_action( &TC, result, queue_snd_id );
paul@pc-solar1.lab-lpp.local
Message queue implemented for valid TC processing...
r9 break;
paul@pc-solar1.lab-lpp.local
Several TC actions added...
r11 //
paul@pc-solar1.lab-lpp.local
Message queue implemented for valid TC processing...
r9 case TC_SUBTYPE_DIS_CAL:
paul
Last commit before release 0-13...
r35 result = action_disable_calibration( &TC, queue_snd_id );
close_action( &TC, result, queue_snd_id );
paul@pc-solar1.lab-lpp.local
Message queue implemented for valid TC processing...
r9 break;
paul@pc-solar1.lab-lpp.local
Several TC actions added...
r11 //
paul@pc-solar1.lab-lpp.local
Message queue implemented for valid TC processing...
r9 case TC_SUBTYPE_UPDT_TIME:
paul
packet emission task added...
r33 result = action_update_time( &TC );
paul
Last commit before release 0-13...
r35 close_action( &TC, result, queue_snd_id );
paul@pc-solar1.lab-lpp.local
Message queue implemented for valid TC processing...
r9 break;
paul@pc-solar1.lab-lpp.local
Several TC actions added...
r11 //
paul@pc-solar1.lab-lpp.local
Message queue implemented for valid TC processing...
r9 default:
break;
}
}
}
}
paul@pc-solar1.lab-lpp.local
automatic reconnexion of the spacewire link...
r17 rtems_task dumb_task( rtems_task_argument unused )
paul@pc-solar1.lab-lpp.local
Message queue implemented for valid TC processing...
r9 {
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 unsigned int i;
unsigned int intEventOut;
paul@pc-solar1.lab-lpp.local
Updates of the ICD taken into account...
r18 unsigned int coarse_time = 0;
unsigned int fine_time = 0;
paul@pc-solar1.lab-lpp.local
automatic reconnexion of the spacewire link...
r17 rtems_event_set event_out;
paul
Last commit before release 0-13...
r35 BOOT_PRINTF("in DUMB *** \n")
paul@pc-solar1.lab-lpp.local
Message queue implemented for valid TC processing...
r9
paul@pc-solar1.lab-lpp.local
automatic reconnexion of the spacewire link...
r17 while(1){
paul
SOLVED: compatibility of fsw-gsa with the WF simulator interruption
r30 rtems_event_receive(RTEMS_EVENT_0 | RTEMS_EVENT_1 | RTEMS_EVENT_2 | RTEMS_EVENT_3 | RTEMS_EVENT_4 | RTEMS_EVENT_5,
paul@pc-solar1.lab-lpp.local
Current version with modes NORMAL and SBM1 operational
r21 RTEMS_WAIT | RTEMS_EVENT_ANY, RTEMS_NO_TIMEOUT, &event_out); // wait for an RTEMS_EVENT
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 intEventOut = (unsigned int) event_out;
for ( i=0; i<32; i++)
paul@pc-solar1.lab-lpp.local
Updates of the ICD taken into account...
r18 {
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 if ( ((intEventOut >> i) & 0x0001) != 0)
{
coarse_time = time_management_regs->coarse_time;
fine_time = time_management_regs->fine_time;
printf("in DUMB *** time = coarse: %x, fine: %x, %s\n", coarse_time, fine_time, DumbMessages[i]);
}
paul@pc-solar1.lab-lpp.local
Updates of the ICD taken into account...
r18 }
paul@pc-solar1.lab-lpp.local
automatic reconnexion of the spacewire link...
r17 }
paul@pc-solar1.lab-lpp.local
Message queue implemented for valid TC processing...
r9 }
//***********
// TC ACTIONS
paul@pc-solar1.lab-lpp.local
FSW modified to have correct answers to TC_LFR_DUMP_PAR
r15
paul
Last commit before release 0-13...
r35 int action_reset(ccsdsTelecommandPacket_t *TC, rtems_id queue_id)
paul@pc-solar1.lab-lpp.local
Message queue implemented for valid TC processing...
r9 {
paul
Last commit before release 0-13...
r35 send_tm_lfr_tc_exe_not_implemented( TC, queue_id );
paul@pc-solar1.lab-lpp.local
Current version with modes NORMAL and SBM1 operational
r21 return LFR_DEFAULT;
paul@pc-solar1.lab-lpp.local
Message queue implemented for valid TC processing...
r9 }
paul
packet emission task added...
r33 int action_load_common_par(ccsdsTelecommandPacket_t *TC)
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 {
paul@pc-solar1.lab-lpp.local
Release 0.7...
r28 parameter_dump_packet.unused0 = TC->dataAndCRC[0];
parameter_dump_packet.bw_sp0_sp1_r0_r1 = TC->dataAndCRC[1];
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23
paul@pc-solar1.lab-lpp.local
Release 0.7...
r28 set_wfp_data_shaping(parameter_dump_packet.bw_sp0_sp1_r0_r1);
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23
return LFR_SUCCESSFUL;
}
paul
Last commit before release 0-13...
r35 int action_load_normal_par(ccsdsTelecommandPacket_t *TC, rtems_id queue_id)
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 {
int result;
paul
Commit before working on the ERR 4 due to message queue...
r34 unsigned int tmp;
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23
paul
Commit before working on the ERR 4 due to message queue...
r34 result = LFR_SUCCESSFUL;
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23
paul
Commit before working on the ERR 4 due to message queue...
r34 if ( lfrCurrentMode == LFR_MODE_NORMAL ) {
paul
Last commit before release 0-13...
r35 send_tm_lfr_tc_exe_not_executable( TC, queue_id );
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 result = LFR_DEFAULT;
}
else {
paul
Commit before working on the ERR 4 due to message queue...
r34 // sy_lfr_n_swf_l
paul@pc-solar1.lab-lpp.local
Release 0.7...
r28 parameter_dump_packet.sy_lfr_n_swf_l[0] = TC->dataAndCRC[0];
parameter_dump_packet.sy_lfr_n_swf_l[1] = TC->dataAndCRC[1];
paul
Commit before working on the ERR 4 due to message queue...
r34 // sy_lfr_n_swf_p
tmp = (unsigned int ) floor(
(TC->dataAndCRC[2] * 256
+ TC->dataAndCRC[3])/8
) * 8;
if ( (tmp < 16) || (tmp>65528) )
{
result = LFR_DEFAULT;
}
else
{
parameter_dump_packet.sy_lfr_n_swf_p[0] = (unsigned char) (tmp >> 8);
parameter_dump_packet.sy_lfr_n_swf_p[1] = (unsigned char) (tmp );
}
paul@pc-solar1.lab-lpp.local
Release 0.7...
r28
paul
Commit before working on the ERR 4 due to message queue...
r34 // sy_lfr_n_asm_p
paul@pc-solar1.lab-lpp.local
Release 0.7...
r28 parameter_dump_packet.sy_lfr_n_asm_p[0] = TC->dataAndCRC[4];
parameter_dump_packet.sy_lfr_n_asm_p[1] = TC->dataAndCRC[5];
paul
Commit before working on the ERR 4 due to message queue...
r34 // sy_lfr_n_bp_p0
paul@pc-solar1.lab-lpp.local
Release 0.7...
r28 parameter_dump_packet.sy_lfr_n_bp_p0 = TC->dataAndCRC[6];
paul
Commit before working on the ERR 4 due to message queue...
r34
// sy_lfr_n_bp_p1
paul@pc-solar1.lab-lpp.local
Release 0.7...
r28 parameter_dump_packet.sy_lfr_n_bp_p1 = TC->dataAndCRC[7];
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 }
return result;
}
paul
Last commit before release 0-13...
r35 int action_load_burst_par(ccsdsTelecommandPacket_t *TC, rtems_id queue_id)
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 {
int result;
unsigned char lfrMode;
result = LFR_DEFAULT;
lfrMode = (housekeeping_packet.lfr_status_word[0] & 0xf0) >> 4;
paul@pc-solar1.lab-lpp.local
waveform initialization modified due to a problem of compatibility...
r19
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 if ( lfrMode == LFR_MODE_BURST ) {
paul
Last commit before release 0-13...
r35 send_tm_lfr_tc_exe_not_executable( TC, queue_id );
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 result = LFR_DEFAULT;
}
else {
paul
sy_lfr_n_swf_p implemented...
r32 parameter_dump_packet.sy_lfr_b_bp_p0 = TC->dataAndCRC[0];
parameter_dump_packet.sy_lfr_b_bp_p1 = TC->dataAndCRC[1];
result = LFR_SUCCESSFUL;
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 }
return result;
}
paul
Last commit before release 0-13...
r35 int action_load_sbm1_par(ccsdsTelecommandPacket_t *TC, rtems_id queue_id)
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 {
int result;
unsigned char lfrMode;
result = LFR_DEFAULT;
lfrMode = (housekeeping_packet.lfr_status_word[0] & 0xf0) >> 4;
paul
sy_lfr_n_swf_p implemented...
r32 if ( lfrMode == LFR_MODE_SBM1 ) {
paul
Last commit before release 0-13...
r35 send_tm_lfr_tc_exe_not_executable( TC, queue_id );
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 result = LFR_DEFAULT;
}
else {
paul
sy_lfr_n_swf_p implemented...
r32 parameter_dump_packet.sy_lfr_s1_bp_p0 = TC->dataAndCRC[0];
parameter_dump_packet.sy_lfr_s1_bp_p1 = TC->dataAndCRC[1];
result = LFR_SUCCESSFUL;
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 }
return result;
}
paul
Last commit before release 0-13...
r35 int action_load_sbm2_par(ccsdsTelecommandPacket_t *TC, rtems_id queue_id)
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 {
int result;
unsigned char lfrMode;
result = LFR_DEFAULT;
lfrMode = (housekeeping_packet.lfr_status_word[0] & 0xf0) >> 4;
paul
sy_lfr_n_swf_p implemented...
r32 if ( lfrMode == LFR_MODE_SBM2 ) {
paul
Last commit before release 0-13...
r35 send_tm_lfr_tc_exe_not_executable( TC, queue_id );
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 result = LFR_DEFAULT;
}
else {
paul
sy_lfr_n_swf_p implemented...
r32 parameter_dump_packet.sy_lfr_s2_bp_p0 = TC->dataAndCRC[0];
parameter_dump_packet.sy_lfr_s2_bp_p1 = TC->dataAndCRC[1];
result = LFR_SUCCESSFUL;
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 }
return result;
}
paul
packet emission task added...
r33 int action_dump_par(ccsdsTelecommandPacket_t *TC)
paul@pc-solar1.lab-lpp.local
Release 0.7...
r28 {
int status;
// send parameter dump packet
status = write(fdSPW, (char *) &parameter_dump_packet,
PACKET_LENGTH_PARAMETER_DUMP + CCSDS_TC_TM_PACKET_OFFSET + 4);
if (status == -1)
{
PRINTF1("in action_dump *** ERR sending packet, code %d", status)
status = RTEMS_UNSATISFIED;
}
else
{
status = RTEMS_SUCCESSFUL;
}
return status;
}
paul
Last commit before release 0-13...
r35 int action_enter_mode(ccsdsTelecommandPacket_t *TC, rtems_id queue_id)
paul
packet emission task added...
r33 {
rtems_status_code status;
unsigned char requestedMode;
requestedMode = TC->dataAndCRC[1];
printf("try to enter mode %d\n", requestedMode);
#ifdef PRINT_TASK_STATISTICS
if (requestedMode != LFR_MODE_STANDBY)
{
rtems_cpu_usage_reset();
paul
Commit before working on the ERR 4 due to message queue...
r34 maxCount = 0;
paul
packet emission task added...
r33 }
#endif
status = transition_validation(requestedMode);
if ( status == LFR_SUCCESSFUL ) {
if ( lfrCurrentMode != LFR_MODE_STANDBY)
{
status = stop_current_mode();
}
if (status != RTEMS_SUCCESSFUL)
{
PRINTF("ERR *** in action_enter *** stop_current_mode\n")
}
status = enter_mode(requestedMode, TC);
}
else
{
PRINTF("ERR *** in action_enter *** transition rejected\n")
paul
Last commit before release 0-13...
r35 send_tm_lfr_tc_exe_not_executable( TC, queue_id );
paul
packet emission task added...
r33 }
return status;
}
paul
Last commit before release 0-13...
r35 int action_update_info(ccsdsTelecommandPacket_t *TC, rtems_id queue_id) {
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 unsigned int val;
int result;
unsigned char lfrMode;
result = LFR_DEFAULT;
lfrMode = (housekeeping_packet.lfr_status_word[0] & 0xf0) >> 4;
paul@pc-solar1.lab-lpp.local
Updates of the ICD taken into account...
r18
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 if ( (lfrMode == LFR_MODE_STANDBY) ) {
paul
Last commit before release 0-13...
r35 send_tm_lfr_tc_exe_not_implemented( TC, queue_id );
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 result = LFR_DEFAULT;
}
else {
val = housekeeping_packet.hk_lfr_update_info_tc_cnt[0] * 256
+ housekeeping_packet.hk_lfr_update_info_tc_cnt[1];
val++;
housekeeping_packet.hk_lfr_update_info_tc_cnt[0] = (unsigned char) (val >> 8);
housekeeping_packet.hk_lfr_update_info_tc_cnt[1] = (unsigned char) (val);
result = LFR_SUCCESSFUL;
}
return result;
}
paul
Last commit before release 0-13...
r35 int action_enable_calibration(ccsdsTelecommandPacket_t *TC, rtems_id queue_id)
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 {
int result;
unsigned char lfrMode;
result = LFR_DEFAULT;
lfrMode = (housekeeping_packet.lfr_status_word[0] & 0xf0) >> 4;
if ( (lfrMode == LFR_MODE_STANDBY) | (lfrMode == LFR_MODE_BURST) | (lfrMode == LFR_MODE_SBM2) ) {
paul
Last commit before release 0-13...
r35 send_tm_lfr_tc_exe_not_executable( TC, queue_id );
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 result = LFR_DEFAULT;
}
else {
paul
Last commit before release 0-13...
r35 send_tm_lfr_tc_exe_not_implemented( TC, queue_id );
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 result = LFR_DEFAULT;
}
return result;
}
paul
Last commit before release 0-13...
r35 int action_disable_calibration(ccsdsTelecommandPacket_t *TC, rtems_id queue_id)
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 {
int result;
unsigned char lfrMode;
result = LFR_DEFAULT;
lfrMode = (housekeeping_packet.lfr_status_word[0] & 0xf0) >> 4;
if ( (lfrMode == LFR_MODE_STANDBY) | (lfrMode == LFR_MODE_BURST) | (lfrMode == LFR_MODE_SBM2) ) {
paul
Last commit before release 0-13...
r35 send_tm_lfr_tc_exe_not_executable( TC, queue_id );
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 result = LFR_DEFAULT;
}
else {
paul
Last commit before release 0-13...
r35 send_tm_lfr_tc_exe_not_implemented( TC, queue_id );
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 result = LFR_DEFAULT;
}
return result;
}
paul
packet emission task added...
r33 int action_update_time(ccsdsTelecommandPacket_t *TC)
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 {
unsigned int val;
paul@pc-solar1.lab-lpp.local
waveform initialization modified due to a problem of compatibility...
r19
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 time_management_regs->coarse_time_load = (TC->dataAndCRC[0] << 24)
+ (TC->dataAndCRC[1] << 16)
+ (TC->dataAndCRC[2] << 8)
+ TC->dataAndCRC[3];
val = housekeeping_packet.hk_lfr_update_time_tc_cnt[0] * 256
+ housekeeping_packet.hk_lfr_update_time_tc_cnt[1];
val++;
housekeeping_packet.hk_lfr_update_time_tc_cnt[0] = (unsigned char) (val >> 8);
housekeeping_packet.hk_lfr_update_time_tc_cnt[1] = (unsigned char) (val);
paul
packet emission task added...
r33 time_management_regs->ctrl = time_management_regs->ctrl | 1;
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23
return LFR_SUCCESSFUL;
}
//*******************
// ENTERING THE MODES
int transition_validation(unsigned char requestedMode)
{
int status;
paul@pc-solar1.lab-lpp.local
waveform initialization modified due to a problem of compatibility...
r19
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 switch (requestedMode)
{
case LFR_MODE_STANDBY:
paul
packet emission task added...
r33 if ( lfrCurrentMode == LFR_MODE_STANDBY ) {
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 status = LFR_DEFAULT;
}
else
{
status = LFR_SUCCESSFUL;
}
break;
case LFR_MODE_NORMAL:
paul
packet emission task added...
r33 if ( lfrCurrentMode == LFR_MODE_NORMAL ) {
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 status = LFR_DEFAULT;
}
else {
status = LFR_SUCCESSFUL;
}
break;
case LFR_MODE_BURST:
paul
packet emission task added...
r33 if ( lfrCurrentMode == LFR_MODE_BURST ) {
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 status = LFR_DEFAULT;
}
else {
status = LFR_SUCCESSFUL;
}
break;
case LFR_MODE_SBM1:
paul
packet emission task added...
r33 if ( lfrCurrentMode == LFR_MODE_SBM1 ) {
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 status = LFR_DEFAULT;
}
else {
status = LFR_SUCCESSFUL;
}
break;
case LFR_MODE_SBM2:
paul
packet emission task added...
r33 if ( lfrCurrentMode == LFR_MODE_SBM2 ) {
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 status = LFR_DEFAULT;
}
else {
status = LFR_SUCCESSFUL;
}
break;
default:
status = LFR_DEFAULT;
break;
}
paul@pc-solar1.lab-lpp.local
waveform initialization modified due to a problem of compatibility...
r19
paul@pc-solar1.lab-lpp.local
Current version with modes NORMAL and SBM1 operational
r21 return status;
admin@pc-p-leroy3.LAB-LPP.LOCAL
Draft implementation of the TC_LFR_LOAD_NORMAL_PAR
r10 }
paul@pc-solar1.lab-lpp.local
Slight changes on the flight software
r20 int stop_current_mode()
{
paul@pc-solar1.lab-lpp.local
Current version with modes NORMAL and SBM1 operational
r21 rtems_status_code status;
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23
status = RTEMS_SUCCESSFUL;
paul@pc-solar1.lab-lpp.local
All modes partially implemented...
r22
paul@pc-solar1.lab-lpp.local
Slight changes on the flight software
r20 // mask all IRQ lines related to signal processing
LEON_Mask_interrupt( IRQ_SM ); // mask spectral matrices interrupt (coming from the timer VHDL IP)
paul
Last commit before release 0-13...
r35 LEON_Clear_interrupt( IRQ_SM ); // clear spectral matrices interrupt (coming from the timer VHDL IP)
paul@pc-solar1.lab-lpp.local
Slight changes on the flight software
r20
paul
SID corrected in TM_LFR_TC_EXE packets...
r31 #ifdef GSA
LEON_Mask_interrupt( IRQ_WF ); // mask waveform interrupt (coming from the timer VHDL IP)
paul@pc-solar1.lab-lpp.local
Slight changes on the flight software
r20 LEON_Clear_interrupt( IRQ_WF ); // clear waveform interrupt (coming from the timer VHDL IP)
paul
SID corrected in TM_LFR_TC_EXE packets...
r31 timer_stop( (gptimer_regs_t*) REGS_ADDR_GPTIMER, TIMER_WF_SIMULATOR );
#else
LEON_Mask_interrupt( IRQ_WAVEFORM_PICKER ); // mask waveform picker interrupt
paul
Last commit before release 0-13...
r35 LEON_Clear_interrupt( IRQ_WAVEFORM_PICKER ); // clear waveform picker interrupt
paul
packet emission task added...
r33 LEON_Mask_interrupt( IRQ_SPECTRAL_MATRIX ); // mask spectral matrix interrupt
paul
Last commit before release 0-13...
r35 LEON_Clear_interrupt( IRQ_SPECTRAL_MATRIX ); // clear spectral matrix interrupt
LEON_Mask_interrupt( IRQ_SM ); // for SM simulation
LEON_Clear_interrupt( IRQ_SM ); // for SM simulation
paul
SID corrected in TM_LFR_TC_EXE packets...
r31 #endif
paul
packet emission task added...
r33 //**********************
paul@pc-solar1.lab-lpp.local
Slight changes on the flight software
r20 // suspend several tasks
paul
Last commit before release 0-13...
r35 if (lfrCurrentMode != LFR_MODE_STANDBY) {
paul
sy_lfr_n_swf_p implemented...
r32 suspend_science_tasks();
paul@pc-solar1.lab-lpp.local
Current version with modes NORMAL and SBM1 operational
r21 }
paul@pc-solar1.lab-lpp.local
Slight changes on the flight software
r20
paul@pc-solar1.lab-lpp.local
All modes partially implemented...
r22 if (status != RTEMS_SUCCESSFUL)
{
PRINTF("ERR *** in stop_current_mode *** suspending tasks\n")
}
paul
packet emission task added...
r33 //*************************
paul@pc-solar1.lab-lpp.local
Slight changes on the flight software
r20 // initialize the registers
paul
SID corrected in TM_LFR_TC_EXE packets...
r31 #ifdef GSA
#else
paul
packet emission task added...
r33 reset_wfp_burst_enable(); // reset burst and enable bits
reset_wfp_status(); // reset all the status bits
paul
SID corrected in TM_LFR_TC_EXE packets...
r31 #endif
paul@pc-solar1.lab-lpp.local
Slight changes on the flight software
r20
paul@pc-solar1.lab-lpp.local
Current version with modes NORMAL and SBM1 operational
r21 return status;
paul@pc-solar1.lab-lpp.local
Slight changes on the flight software
r20 }
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 int enter_mode(unsigned char mode, ccsdsTelecommandPacket_t *TC )
paul@pc-solar1.lab-lpp.local
Slight changes on the flight software
r20 {
paul@pc-solar1.lab-lpp.local
Current version with modes NORMAL and SBM1 operational
r21 rtems_status_code status;
paul@pc-solar1.lab-lpp.local
Slight changes on the flight software
r20
paul
packet emission task added...
r33 status = RTEMS_UNSATISFIED;
housekeeping_packet.lfr_status_word[0] = (unsigned char) ((mode << 4) + 0x0d);
lfrCurrentMode = mode;
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 switch(mode){
case LFR_MODE_STANDBY:
status = enter_standby_mode( TC );
break;
case LFR_MODE_NORMAL:
status = enter_normal_mode( TC );
break;
case LFR_MODE_BURST:
status = enter_burst_mode( TC );
break;
case LFR_MODE_SBM1:
status = enter_sbm1_mode( TC );
break;
case LFR_MODE_SBM2:
status = enter_sbm2_mode( TC );
break;
default:
status = RTEMS_UNSATISFIED;
paul@pc-solar1.lab-lpp.local
Current version with modes NORMAL and SBM1 operational
r21 }
paul@pc-solar1.lab-lpp.local
Slight changes on the flight software
r20
paul
packet emission task added...
r33 if (status != RTEMS_SUCCESSFUL)
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 {
paul
packet emission task added...
r33 PRINTF("in enter_mode *** ERR\n")
status = RTEMS_UNSATISFIED;
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 }
paul@pc-solar1.lab-lpp.local
Current version with modes NORMAL and SBM1 operational
r21
return status;
paul@pc-solar1.lab-lpp.local
Slight changes on the flight software
r20 }
paul
packet emission task added...
r33 int enter_standby_mode()
paul@pc-solar1.lab-lpp.local
Slight changes on the flight software
r20 {
paul
packet emission task added...
r33 reset_waveform_picker_regs();
paul
Commit before working on the ERR 4 due to message queue...
r34
PRINTF1("maxCount = %d\n", maxCount)
paul
packet emission task added...
r33 #ifdef PRINT_TASK_STATISTICS
rtems_cpu_usage_report();
#endif
paul
Commit before working on the ERR 4 due to message queue...
r34
#ifdef PRINT_STACK_REPORT
rtems_stack_checker_report_usage();
#endif
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 return LFR_SUCCESSFUL;
paul@pc-solar1.lab-lpp.local
All modes partially implemented...
r22 }
paul
packet emission task added...
r33 int enter_normal_mode()
paul@pc-solar1.lab-lpp.local
All modes partially implemented...
r22 {
rtems_status_code status;
paul
sy_lfr_n_swf_p implemented...
r32 status = restart_science_tasks();
paul@pc-solar1.lab-lpp.local
All modes partially implemented...
r22
#ifdef GSA
paul
SID corrected in TM_LFR_TC_EXE packets...
r31 timer_start( (gptimer_regs_t*) REGS_ADDR_GPTIMER, TIMER_WF_SIMULATOR );
timer_start( (gptimer_regs_t*) REGS_ADDR_GPTIMER, TIMER_SM_SIMULATOR );
paul
SOLVED: compatibility of fsw-gsa with the WF simulator interruption
r30 LEON_Clear_interrupt( IRQ_WF );
LEON_Unmask_interrupt( IRQ_WF );
paul
sy_lfr_n_swf_p implemented...
r32 //
set_local_nb_interrupt_f0_MAX();
paul
SID corrected in TM_LFR_TC_EXE packets...
r31 LEON_Clear_interrupt( IRQ_SM ); // the IRQ_SM seems to be incompatible with the IRQ_WF on the xilinx board
LEON_Unmask_interrupt( IRQ_SM );
paul@pc-solar1.lab-lpp.local
All modes partially implemented...
r22 #else
paul
packet emission task added...
r33 //****************
paul
sy_lfr_n_swf_p implemented...
r32 // waveform picker
paul
SOLVED: compatibility of fsw-gsa with the WF simulator interruption
r30 LEON_Clear_interrupt( IRQ_WAVEFORM_PICKER );
LEON_Unmask_interrupt( IRQ_WAVEFORM_PICKER );
paul
sy_lfr_n_swf_p implemented...
r32 reset_waveform_picker_regs();
set_wfp_burst_enable_register(LFR_MODE_NORMAL);
paul
packet emission task added...
r33 //****************
paul
sy_lfr_n_swf_p implemented...
r32 // spectral matrix
paul
Last commit before release 0-13...
r35 // set_local_nb_interrupt_f0_MAX();
// LEON_Clear_interrupt( IRQ_SPECTRAL_MATRIX ); // the IRQ_SM seems to be incompatible with the IRQ_WF on the xilinx board
// LEON_Unmask_interrupt( IRQ_SPECTRAL_MATRIX );
// spectral_matrix_regs->config = 0x01;
// spectral_matrix_regs->status = 0x00;
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 #endif
return status;
}
paul
packet emission task added...
r33 int enter_burst_mode()
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 {
rtems_status_code status;
paul
sy_lfr_n_swf_p implemented...
r32 status = restart_science_tasks();
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23
#ifdef GSA
paul
packet emission task added...
r33 LEON_Unmask_interrupt( IRQ_SM );
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 #else
paul
packet emission task added...
r33 LEON_Clear_interrupt( IRQ_WAVEFORM_PICKER );
LEON_Unmask_interrupt( IRQ_WAVEFORM_PICKER );
reset_waveform_picker_regs();
set_wfp_burst_enable_register(LFR_MODE_BURST);
paul@pc-solar1.lab-lpp.local
Slight changes on the flight software
r20 #endif
paul@pc-solar1.lab-lpp.local
All modes partially implemented...
r22
return status;
}
paul
packet emission task added...
r33 int enter_sbm1_mode()
paul@pc-solar1.lab-lpp.local
All modes partially implemented...
r22 {
rtems_status_code status;
paul
sy_lfr_n_swf_p implemented...
r32 status = restart_science_tasks();
paul@pc-solar1.lab-lpp.local
All modes partially implemented...
r22
paul
sy_lfr_n_swf_p implemented...
r32 set_local_sbm1_nb_cwf_max();
reset_local_sbm1_nb_cwf_sent();
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23
#ifdef GSA
paul
packet emission task added...
r33 LEON_Unmask_interrupt( IRQ_SM );
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 #else
LEON_Clear_interrupt( IRQ_WAVEFORM_PICKER );
LEON_Unmask_interrupt( IRQ_WAVEFORM_PICKER );
paul
sy_lfr_n_swf_p implemented...
r32 reset_waveform_picker_regs();
set_wfp_burst_enable_register(LFR_MODE_SBM1);
paul
Commit before working on the ERR 4 due to message queue...
r34 // SM simulation
paul
Last commit before release 0-13...
r35 // timer_start( (gptimer_regs_t*) REGS_ADDR_GPTIMER, TIMER_SM_SIMULATOR );
// LEON_Clear_interrupt( IRQ_SM ); // the IRQ_SM seems to be incompatible with the IRQ_WF on the xilinx board
// LEON_Unmask_interrupt( IRQ_SM );
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 #endif
return status;
}
paul
packet emission task added...
r33 int enter_sbm2_mode()
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 {
rtems_status_code status;
paul
sy_lfr_n_swf_p implemented...
r32 status = restart_science_tasks();
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23
paul
sy_lfr_n_swf_p implemented...
r32 set_local_sbm2_nb_cwf_max();
reset_local_sbm2_nb_cwf_sent();
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23
paul@pc-solar1.lab-lpp.local
All modes partially implemented...
r22 #ifdef GSA
paul
packet emission task added...
r33 LEON_Unmask_interrupt( IRQ_SM );
paul@pc-solar1.lab-lpp.local
All modes partially implemented...
r22 #else
LEON_Clear_interrupt( IRQ_WAVEFORM_PICKER );
LEON_Unmask_interrupt( IRQ_WAVEFORM_PICKER );
paul
sy_lfr_n_swf_p implemented...
r32 reset_waveform_picker_regs();
set_wfp_burst_enable_register(LFR_MODE_SBM2);
paul@pc-solar1.lab-lpp.local
All modes partially implemented...
r22 #endif
paul@pc-solar1.lab-lpp.local
Current version with modes NORMAL and SBM1 operational
r21 return status;
paul@pc-solar1.lab-lpp.local
Slight changes on the flight software
r20 }
paul
sy_lfr_n_swf_p implemented...
r32 int restart_science_tasks()
{
paul
packet emission task added...
r33 rtems_status_code status[6];
rtems_status_code ret;
paul
sy_lfr_n_swf_p implemented...
r32
paul
packet emission task added...
r33 ret = RTEMS_SUCCESSFUL;
paul
sy_lfr_n_swf_p implemented...
r32
paul
packet emission task added...
r33 status[0] = rtems_task_restart( Task_id[TASKID_AVF0], 1 );
paul
Last commit before release 0-13...
r35 if (status[0] != RTEMS_SUCCESSFUL)
{
PRINTF1("in restart_science_task *** 0 ERR %d\n", status[0])
}
paul
packet emission task added...
r33 status[1] = rtems_task_restart( Task_id[TASKID_BPF0],1 );
paul
Last commit before release 0-13...
r35 if (status[1] != RTEMS_SUCCESSFUL)
{
PRINTF1("in restart_science_task *** 1 ERR %d\n", status[1])
}
paul
packet emission task added...
r33 status[2] = rtems_task_restart( Task_id[TASKID_WFRM],1 );
paul
Last commit before release 0-13...
r35 if (status[2] != RTEMS_SUCCESSFUL)
{
PRINTF1("in restart_science_task *** 2 ERR %d\n", status[2])
}
paul
packet emission task added...
r33 status[3] = rtems_task_restart( Task_id[TASKID_CWF3],1 );
paul
Last commit before release 0-13...
r35 if (status[3] != RTEMS_SUCCESSFUL)
{
PRINTF1("in restart_science_task *** 3 ERR %d\n", status[3])
}
paul
packet emission task added...
r33 status[4] = rtems_task_restart( Task_id[TASKID_CWF2],1 );
paul
Last commit before release 0-13...
r35 if (status[4] != RTEMS_SUCCESSFUL)
{
PRINTF1("in restart_science_task *** 4 ERR %d\n", status[4])
}
paul
packet emission task added...
r33 status[5] = rtems_task_restart( Task_id[TASKID_CWF1],1 );
paul
Last commit before release 0-13...
r35 if (status[5] != RTEMS_SUCCESSFUL)
{
PRINTF1("in restart_science_task *** 5 ERR %d\n", status[5])
}
paul
packet emission task added...
r33
if ( (status[0] != RTEMS_SUCCESSFUL) || (status[1] != RTEMS_SUCCESSFUL) || (status[2] != RTEMS_SUCCESSFUL) ||
(status[3] != RTEMS_SUCCESSFUL) || (status[4] != RTEMS_SUCCESSFUL) || (status[5] != RTEMS_SUCCESSFUL) )
{
ret = RTEMS_UNSATISFIED;
paul
sy_lfr_n_swf_p implemented...
r32 }
paul
packet emission task added...
r33 return ret;
paul
sy_lfr_n_swf_p implemented...
r32 }
int suspend_science_tasks()
{
paul
packet emission task added...
r33 rtems_status_code status[6];
rtems_status_code ret;
ret = RTEMS_SUCCESSFUL;
paul
sy_lfr_n_swf_p implemented...
r32
paul
packet emission task added...
r33 status[0] = rtems_task_suspend( Task_id[TASKID_AVF0] );
paul
Last commit before release 0-13...
r35 if (status[0] != RTEMS_SUCCESSFUL)
{
PRINTF1("in suspend_science_task *** 0 ERR %d\n", status[0])
}
paul
packet emission task added...
r33 status[1] = rtems_task_suspend( Task_id[TASKID_BPF0] );
paul
Last commit before release 0-13...
r35 if (status[1] != RTEMS_SUCCESSFUL)
{
PRINTF1("in suspend_science_task *** 1 ERR %d\n", status[1])
}
paul
packet emission task added...
r33 status[2] = rtems_task_suspend( Task_id[TASKID_WFRM] );
paul
Last commit before release 0-13...
r35 if (status[2] != RTEMS_SUCCESSFUL)
{
PRINTF1("in suspend_science_task *** 2 ERR %d\n", status[2])
}
paul
packet emission task added...
r33 status[3] = rtems_task_suspend( Task_id[TASKID_CWF3] );
paul
Last commit before release 0-13...
r35 if (status[3] != RTEMS_SUCCESSFUL)
{
PRINTF1("in suspend_science_task *** 3 ERR %d\n", status[3])
}
paul
packet emission task added...
r33 status[4] = rtems_task_suspend( Task_id[TASKID_CWF2] );
paul
Last commit before release 0-13...
r35 if (status[4] != RTEMS_SUCCESSFUL)
{
PRINTF1("in suspend_science_task *** 4 ERR %d\n", status[4])
}
paul
packet emission task added...
r33 status[5] = rtems_task_suspend( Task_id[TASKID_CWF1] );
paul
Last commit before release 0-13...
r35 if (status[5] != RTEMS_SUCCESSFUL)
{
PRINTF1("in suspend_science_task *** 5 ERR %d\n", status[5])
}
paul
packet emission task added...
r33
if ( (status[0] != RTEMS_SUCCESSFUL) || (status[1] != RTEMS_SUCCESSFUL) || (status[2] != RTEMS_SUCCESSFUL) ||
(status[3] != RTEMS_SUCCESSFUL) || (status[4] != RTEMS_SUCCESSFUL) || (status[5] != RTEMS_SUCCESSFUL) )
{
ret = RTEMS_UNSATISFIED;
paul
sy_lfr_n_swf_p implemented...
r32 }
paul
packet emission task added...
r33 return ret;
paul
sy_lfr_n_swf_p implemented...
r32 }
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 //****************
// CLOSING ACTIONS
paul@pc-solar1.lab-lpp.local
Several TC actions added...
r11
paul
Last commit before release 0-13...
r35 int send_tm_lfr_tc_exe_success(ccsdsTelecommandPacket_t *TC, rtems_id queue_id)
paul@pc-solar1.lab-lpp.local
Several TC actions added...
r11 {
paul
packet emission task added...
r33 int ret;
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 rtems_status_code status;
paul@pc-solar1.lab-lpp.local
Several TC actions added...
r11 TMHeader_t TM_header;
char data[4];
spw_ioctl_pkt_send spw_ioctl_send;
paul
Commit before working on the ERR 4 due to message queue...
r34 ret = LFR_SUCCESSFUL;
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 TM_build_header( TM_LFR_TC_EXE_OK, PACKET_LENGTH_TC_EXE_SUCCESS,
&TM_header,
TC->sourceID); // TC source ID
paul@pc-solar1.lab-lpp.local
Several TC actions added...
r11
data[0] = TC->packetID[0];
data[1] = TC->packetID[1];
data[2] = TC->packetSequenceControl[0];
data[3] = TC->packetSequenceControl[1];
// filling the structure for the spacewire transmission
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 spw_ioctl_send.hlen = TM_HEADER_LEN + 4; // + 4 is for the protocole extra header
paul@pc-solar1.lab-lpp.local
Several TC actions added...
r11 spw_ioctl_send.hdr = (char*) &TM_header;
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 spw_ioctl_send.dlen = 4;
paul@pc-solar1.lab-lpp.local
Several TC actions added...
r11 spw_ioctl_send.data = data;
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 spw_ioctl_send.options = 0;
paul@pc-solar1.lab-lpp.local
Several TC actions added...
r11
// SEND DATA
paul
Last commit before release 0-13...
r35 status = rtems_message_queue_urgent( queue_id, &spw_ioctl_send, sizeof(spw_ioctl_send));
paul
packet emission task added...
r33 if (status != RTEMS_SUCCESSFUL) {
PRINTF("in send_tm_lfr_tc_exe_success *** ERR\n")
ret = LFR_DEFAULT;
}
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23
paul
packet emission task added...
r33 return ret;
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 }
paul
Last commit before release 0-13...
r35 int send_tm_lfr_tc_exe_not_executable(ccsdsTelecommandPacket_t *TC, rtems_id queue_id)
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 {
paul
Commit before working on the ERR 4 due to message queue...
r34 int ret;
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 rtems_status_code status;
TMHeader_t TM_header;
char data[10];
spw_ioctl_pkt_send spw_ioctl_send;
paul
Commit before working on the ERR 4 due to message queue...
r34 ret = LFR_SUCCESSFUL;
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 TM_build_header( TM_LFR_TC_EXE_ERR, PACKET_LENGTH_TC_EXE_NOT_EXECUTABLE,
&TM_header,
TC->sourceID); // TC source ID
data[0] = (char) (FAILURE_CODE_NOT_EXECUTABLE >> 8);
data[1] = (char) FAILURE_CODE_NOT_EXECUTABLE;
data[2] = TC->packetID[0];
data[3] = TC->packetID[1];
data[4] = TC->packetSequenceControl[0];
data[5] = TC->packetSequenceControl[1];
data[6] = TC->serviceType; // type of the rejected TC
data[7] = TC->serviceSubType; // subtype of the rejected TC
data[8] = housekeeping_packet.lfr_status_word[0];
data[6] = housekeeping_packet.lfr_status_word[1];
// filling the structure for the spacewire transmission
spw_ioctl_send.hlen = TM_HEADER_LEN + 4; // + 4 is for the protocole extra header
spw_ioctl_send.hdr = (char*) &TM_header;
spw_ioctl_send.dlen = 10;
spw_ioctl_send.data = data;
spw_ioctl_send.options = 0;
paul@pc-solar1.lab-lpp.local
Several TC actions added...
r11
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 // SEND DATA
paul
Last commit before release 0-13...
r35 status = rtems_message_queue_urgent( queue_id, &spw_ioctl_send, sizeof(spw_ioctl_send));
paul
Commit before working on the ERR 4 due to message queue...
r34 if (status != RTEMS_SUCCESSFUL) {
PRINTF("in send_tm_lfr_tc_exe_success *** ERR\n")
ret = LFR_DEFAULT;
}
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23
return LFR_SUCCESSFUL;
}
paul
Last commit before release 0-13...
r35 int send_tm_lfr_tc_exe_not_implemented(ccsdsTelecommandPacket_t *TC, rtems_id queue_id)
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 {
paul
Commit before working on the ERR 4 due to message queue...
r34 int ret;
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 rtems_status_code status;
TMHeader_t TM_header;
char data[8];
spw_ioctl_pkt_send spw_ioctl_send;
paul
Commit before working on the ERR 4 due to message queue...
r34 ret = LFR_SUCCESSFUL;
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 TM_build_header( TM_LFR_TC_EXE_ERR, PACKET_LENGTH_TC_EXE_NOT_IMPLEMENTED,
&TM_header,
TC->sourceID); // TC source ID
data[0] = (char) (FAILURE_CODE_NOT_IMPLEMENTED >> 8);
data[1] = (char) FAILURE_CODE_NOT_IMPLEMENTED;
data[2] = TC->packetID[0];
data[3] = TC->packetID[1];
data[4] = TC->packetSequenceControl[0];
data[5] = TC->packetSequenceControl[1];
data[6] = TC->serviceType; // type of the rejected TC
data[7] = TC->serviceSubType; // subtype of the rejected TC
// filling the structure for the spacewire transmission
spw_ioctl_send.hlen = TM_HEADER_LEN + 4; // + 4 is for the protocole extra header
spw_ioctl_send.hdr = (char*) &TM_header;
spw_ioctl_send.dlen = 8;
spw_ioctl_send.data = data;
spw_ioctl_send.options = 0;
// SEND DATA
paul
Last commit before release 0-13...
r35 status = rtems_message_queue_urgent( queue_id, &spw_ioctl_send, sizeof(spw_ioctl_send));
paul
Commit before working on the ERR 4 due to message queue...
r34 if (status != RTEMS_SUCCESSFUL) {
PRINTF("in send_tm_lfr_tc_exe_not_implemented *** ERR\n")
ret = LFR_DEFAULT;
}
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23
return LFR_SUCCESSFUL;
admin@pc-p-leroy3.LAB-LPP.LOCAL
Draft implementation of the TC_LFR_LOAD_NORMAL_PAR
r10 }
paul@pc-solar1.lab-lpp.local
Message queue implemented for valid TC processing...
r9
paul
Last commit before release 0-13...
r35 int send_tm_lfr_tc_exe_error(ccsdsTelecommandPacket_t *TC, rtems_id queue_id)
paul@pc-solar1.lab-lpp.local
Release 0.7...
r28 {
paul
Commit before working on the ERR 4 due to message queue...
r34 int ret;
paul@pc-solar1.lab-lpp.local
Release 0.7...
r28 rtems_status_code status;
TMHeader_t TM_header;
char data[8];
spw_ioctl_pkt_send spw_ioctl_send;
TM_build_header( TM_LFR_TC_EXE_ERR, PACKET_LENGTH_TC_EXE_ERROR,
&TM_header,
TC->sourceID); // TC source ID
data[0] = (char) (FAILURE_CODE_ERROR >> 8);
data[1] = (char) FAILURE_CODE_ERROR;
data[2] = TC->packetID[0];
data[3] = TC->packetID[1];
data[4] = TC->packetSequenceControl[0];
data[5] = TC->packetSequenceControl[1];
data[6] = TC->serviceType; // type of the rejected TC
data[7] = TC->serviceSubType; // subtype of the rejected TC
// filling the structure for the spacewire transmission
spw_ioctl_send.hlen = TM_HEADER_LEN + 4; // + 4 is for the protocole extra header
spw_ioctl_send.hdr = (char*) &TM_header;
spw_ioctl_send.dlen = 8;
spw_ioctl_send.data = data;
spw_ioctl_send.options = 0;
// SEND DATA
paul
Last commit before release 0-13...
r35 status = rtems_message_queue_urgent( queue_id, &spw_ioctl_send, sizeof(spw_ioctl_send));
paul
Commit before working on the ERR 4 due to message queue...
r34 if (status != RTEMS_SUCCESSFUL) {
PRINTF("in send_tm_lfr_tc_exe_error *** ERR\n")
ret = LFR_DEFAULT;
}
paul@pc-solar1.lab-lpp.local
Release 0.7...
r28
return LFR_SUCCESSFUL;
}
paul@pc-solar1.lab-lpp.local
Current version with modes NORMAL and SBM1 operational
r21 void update_last_TC_exe(ccsdsTelecommandPacket_t *TC)
{
housekeeping_packet.hk_lfr_last_exe_tc_id[0] = TC->packetID[0];
housekeeping_packet.hk_lfr_last_exe_tc_id[1] = TC->packetID[1];
housekeeping_packet.hk_lfr_last_exe_tc_type[0] = 0x00;
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 housekeeping_packet.hk_lfr_last_exe_tc_type[1] = TC->serviceType;
paul@pc-solar1.lab-lpp.local
Current version with modes NORMAL and SBM1 operational
r21 housekeeping_packet.hk_lfr_last_exe_tc_subtype[0] = 0x00;
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 housekeeping_packet.hk_lfr_last_exe_tc_subtype[1] = TC->serviceSubType;
paul@pc-solar1.lab-lpp.local
Current version with modes NORMAL and SBM1 operational
r21 housekeeping_packet.hk_lfr_last_exe_tc_time[0] = (unsigned char) (time_management_regs->coarse_time>>24);
housekeeping_packet.hk_lfr_last_exe_tc_time[1] = (unsigned char) (time_management_regs->coarse_time>>16);
housekeeping_packet.hk_lfr_last_exe_tc_time[2] = (unsigned char) (time_management_regs->coarse_time>>8);
housekeeping_packet.hk_lfr_last_exe_tc_time[3] = (unsigned char) (time_management_regs->coarse_time);
housekeeping_packet.hk_lfr_last_exe_tc_time[4] = (unsigned char) (time_management_regs->fine_time>>8);
housekeeping_packet.hk_lfr_last_exe_tc_time[5] = (unsigned char) (time_management_regs->fine_time);
}
void update_last_TC_rej(ccsdsTelecommandPacket_t *TC)
{
housekeeping_packet.hk_lfr_last_rej_tc_id[0] = TC->packetID[0];
housekeeping_packet.hk_lfr_last_rej_tc_id[1] = TC->packetID[1];
housekeeping_packet.hk_lfr_last_rej_tc_type[0] = 0x00;
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 housekeeping_packet.hk_lfr_last_rej_tc_type[1] = TC->serviceType;
paul@pc-solar1.lab-lpp.local
Current version with modes NORMAL and SBM1 operational
r21 housekeeping_packet.hk_lfr_last_rej_tc_subtype[0] = 0x00;
paul@pc-solar1.lab-lpp.local
All modes implemented for the waveforms...
r23 housekeeping_packet.hk_lfr_last_rej_tc_subtype[1] = TC->serviceSubType;
paul@pc-solar1.lab-lpp.local
Current version with modes NORMAL and SBM1 operational
r21 housekeeping_packet.hk_lfr_last_rej_tc_time[0] = (unsigned char) (time_management_regs->coarse_time>>24);
housekeeping_packet.hk_lfr_last_rej_tc_time[1] = (unsigned char) (time_management_regs->coarse_time>>16);
housekeeping_packet.hk_lfr_last_rej_tc_time[2] = (unsigned char) (time_management_regs->coarse_time>>8);
housekeeping_packet.hk_lfr_last_rej_tc_time[3] = (unsigned char) (time_management_regs->coarse_time);
housekeeping_packet.hk_lfr_last_rej_tc_time[4] = (unsigned char) (time_management_regs->fine_time>>8);
housekeeping_packet.hk_lfr_last_rej_tc_time[5] = (unsigned char) (time_management_regs->fine_time);
}
paul
Last commit before release 0-13...
r35 void close_action(ccsdsTelecommandPacket_t *TC, int result, rtems_id queue_id)
paul@pc-solar1.lab-lpp.local
Current version with modes NORMAL and SBM1 operational
r21 {
unsigned int val = 0;
if (result == LFR_SUCCESSFUL)
{
paul
packet emission task added...
r33 if ( !( (TC->serviceType==TC_TYPE_TIME) && (TC->serviceSubType==TC_SUBTYPE_UPDT_TIME) ) )
{
paul
Last commit before release 0-13...
r35 send_tm_lfr_tc_exe_success( TC, queue_id );
paul
packet emission task added...
r33 }
paul@pc-solar1.lab-lpp.local
Current version with modes NORMAL and SBM1 operational
r21 update_last_TC_exe( TC );
val = housekeeping_packet.hk_dpu_exe_tc_lfr_cnt[0] * 256 + housekeeping_packet.hk_dpu_exe_tc_lfr_cnt[1];
val++;
housekeeping_packet.hk_dpu_exe_tc_lfr_cnt[0] = (unsigned char) (val >> 8);
housekeeping_packet.hk_dpu_exe_tc_lfr_cnt[1] = (unsigned char) (val);
}
else
{
update_last_TC_rej( TC );
val = housekeeping_packet.hk_dpu_rej_tc_lfr_cnt[0] * 256 + housekeeping_packet.hk_dpu_rej_tc_lfr_cnt[1];
val++;
housekeeping_packet.hk_dpu_rej_tc_lfr_cnt[0] = (unsigned char) (val >> 8);
housekeeping_packet.hk_dpu_rej_tc_lfr_cnt[1] = (unsigned char) (val);
}
}
paul@pc-solar1.lab-lpp.local
Minor updates to use the time management VHDL module
r12 //***************************
// Interrupt Service Routines
rtems_isr commutation_isr1( rtems_vector_number vector )
{
paul@pc-solar1.lab-lpp.local
Updates of the ICD taken into account...
r18 if (rtems_event_send( Task_id[TASKID_DUMB], RTEMS_EVENT_0 ) != RTEMS_SUCCESSFUL) {
paul@pc-solar1.lab-lpp.local
FSW modified to have correct answers to TC_LFR_DUMP_PAR
r15 printf("In commutation_isr1 *** Error sending event to DUMB\n");
paul@pc-solar1.lab-lpp.local
Updates of the ICD taken into account...
r18 }
paul@pc-solar1.lab-lpp.local
Minor updates to use the time management VHDL module
r12 }
paul@pc-solar1.lab-lpp.local
Message queue implemented for valid TC processing...
r9
paul@pc-solar1.lab-lpp.local
Minor updates to use the time management VHDL module
r12 rtems_isr commutation_isr2( rtems_vector_number vector )
{
paul@pc-solar1.lab-lpp.local
Updates of the ICD taken into account...
r18 if (rtems_event_send( Task_id[TASKID_DUMB], RTEMS_EVENT_0 ) != RTEMS_SUCCESSFUL) {
paul@pc-solar1.lab-lpp.local
FSW modified to have correct answers to TC_LFR_DUMP_PAR
r15 printf("In commutation_isr2 *** Error sending event to DUMB\n");
paul@pc-solar1.lab-lpp.local
Updates of the ICD taken into account...
r18 }
paul@pc-solar1.lab-lpp.local
Minor updates to use the time management VHDL module
r12 }