Repository for CDMS code

Dependencies:   SimpleDMA mbed-rtos mbed eeprom

Fork of COM_MNG_TMTC_SIMPLE by Shreesha S

Files at this revision

API Documentation at this revision

Comitter:
rohit3342
Date:
Thu Dec 31 18:35:59 2015 +0000
Parent:
15:1c1ca992b43b
Child:
17:6eb9387f1fb8
Child:
19:27e5f2edaf26
Child:
21:d7f6c28707d8
Child:
24:55cd06f4a534
Commit message:
Changes made during GS integration

Changed in this revision

COM_MNG_TMTC.h Show annotated file Show diff for this revision Revisions of this file
ThreadsAndFunctions.h Show annotated file Show diff for this revision Revisions of this file
--- a/COM_MNG_TMTC.h	Thu Dec 31 13:14:59 2015 +0000
+++ b/COM_MNG_TMTC.h	Thu Dec 31 18:35:59 2015 +0000
@@ -157,7 +157,7 @@
     tempReturn = tempReturn + 0x01;\
     Base_tc *tcp = gHEAD_NODE_TCL;\
     while(tcp != NULL){\
-        if(GETpacket_seq_count(tcp) == (gTOTAL_VALID_TC + PSC_START_VALUE - 1)){\
+        if(GETpacket_seq_count(tcp) == (gTOTAL_VALID_TC - 1)){\
             if( ( (tcp->TC_string[1]) & 0x20 ) == 0x20 ){\
                 tempReturn = tempReturn - 0x01;\
             }\
@@ -633,7 +633,8 @@
 
 #define EXECUTE_TC {\
     gMASTER_STATE = TCL_STATE_EXECUTING;\
-    for(uint8_t execute_psc = PSC_START_VALUE ; execute_psc < PSC_START_VALUE ; ++execute_psc ){\
+    for(uint8_t execute_psc = PSC_START_VALUE ; execute_psc < gTOTAL_VALID_TC ; ++execute_psc ){\
+        gPC.printf("executing normal %u\r\n", execute_psc);\
         /*gLEDG = !gLEDG;*/\
         /*gLEDR = !gLEDR;*/\
         Base_tc* current_TC = gHEAD_NODE_TCL;\
--- a/ThreadsAndFunctions.h	Thu Dec 31 13:14:59 2015 +0000
+++ b/ThreadsAndFunctions.h	Thu Dec 31 18:35:59 2015 +0000
@@ -166,16 +166,16 @@
                         }
                     }
                     else{
-                        /*gPC.puts("tc list is not complete\r\n");*/
+                        gPC.puts("tc list is not complete\r\n");
                         if(tempContinue & 0x01){
-                            /*gPC.puts("last packet bit not found\r\n");*/
+                            gPC.puts("last packet bit not found\r\n");
                         }
                         if( tempContinue & 0x02 ){
-                            /*gPC.puts("missing psc found\r\n");*/
+                            gPC.puts("missing psc found\r\n");
                         }
-                        /*gPC.printf("crc fail tc = %u\r\n", gTOTAL_CRC_FAIL_TC);*/
-                        /*gPC.printf("incorrect size tc = %u\r\n", gTOTAL_INCORRECT_SIZE_TC);*/
-                        /*gPC.printf("repeated psc = %u\r\n", gTOTAL_REPEATED_TC);*/
+                        gPC.printf("crc fail tc = %u\r\n", gTOTAL_CRC_FAIL_TC);
+                        gPC.printf("incorrect size tc = %u\r\n", gTOTAL_INCORRECT_SIZE_TC);
+                        gPC.printf("repeated psc = %u\r\n", gTOTAL_REPEATED_TC);
                         Base_tc *test_tc = gHEAD_NODE_TCL;
                         while( test_tc != NULL ){
                             int length = 0;
@@ -185,13 +185,13 @@
                             else{
                                 length = TC_LONG_SIZE;
                             }
-                            /*for(int i = 0 ; i < length ; ++i ){
+                            for(int i = 0 ; i < length ; ++i ){
                                 gPC.printf("%x ", test_tc->TC_string[i]);
                             }
-                            gPC.puts("\r\n");*/
+                            gPC.puts("\r\n");
                             test_tc = test_tc->next_TC;
                         }
-                        /*gPC.puts("\r\n");*/
+                        gPC.puts("\r\n");
                         COM_POWER_ON_TX;
                         // PENDING : POWER OFF TX
                         RX1M.attach(&rx_read, Serial::RxIrq);