CDMS code for testing sbc

Dependencies:   FreescaleIAP SimpleDMA mbed-rtos mbed

Fork of CDMS_CODE by shubham c

Committer:
aniruddhv
Date:
Thu Jul 14 17:57:05 2016 +0000
Revision:
262:752c8689944a
Parent:
261:1e54415b34d3
Child:
263:3b872778b8c7
Merged Aniruddh's code, changed power_on and power_off BAE, added PAHOT and PAOC measurements, added sys_reset_cdms timer

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ee12b079 173:f81ded27423d 1 //Science Thread
ee12b079 173:f81ded27423d 2 //SPI ISR
ee12b079 173:f81ded27423d 3 void payload_isr_fun(){
ee12b079 173:f81ded27423d 4 gSCIENCE_THREAD->signal_set(SCIENCE_SIGNAL);
ee12b079 173:f81ded27423d 5 }
ee12b079 173:f81ded27423d 6
ee12b079 189:0636c8391407 7 void payload_isr_fun_dma(void const *args ){
ee12b079 189:0636c8391407 8 gSCIENCE_THREAD->signal_set(SCIENCE_SIGNAL);
ee12b079 189:0636c8391407 9 }
ee12b079 190:f0d5fde60221 10
ee12b079 173:f81ded27423d 11 void SCIENCE_FUN(void const *args){
ee12b079 245:da9d1bd999da 12 gPAY_SPI = new dmaSPISlave(PAY_SPI_MOSI, PAY_SPI_MISO, PAY_SPI_CLK, PAY_SPI_CS);
ee12b079 245:da9d1bd999da 13 gPAY_SPI->frequency(1000000);
ee12b079 245:da9d1bd999da 14 gPAY_SPI->format(8,0);
ee12b079 245:da9d1bd999da 15 gPAY_SPI->bulkRead_init(gPAYLOAD_BUFFER, PAYLOAD_BUFFER_LENGTH, &payload_isr_fun);
ee12b079 245:da9d1bd999da 16 gPAY_SPI->bulkRead_start();
ee12b079 173:f81ded27423d 17 while(true){
ee12b079 173:f81ded27423d 18 gPC.puts("entering sci\r\n");
ee12b079 173:f81ded27423d 19 gSCIENCE_THREAD->signal_wait(SCIENCE_SIGNAL);
chaithanyarss 251:c766afa330a3 20 gMutex.lock();
ee12b079 173:f81ded27423d 21 gPC.puts("sig_set\r\n");
chaithanyarss 251:c766afa330a3 22 srp(gPAYLOAD_BUFFER);//skip one apcket when cdms resets
ee12b079 173:f81ded27423d 23 gPC.puts("exit_srp\r\n");
ee12b079 245:da9d1bd999da 24 wait(2);/*timeout to be decided*/
ee12b079 252:9c631b2f5da8 25 if(dma)
ee12b079 245:da9d1bd999da 26 gPAY_SPI->bulkRead_start();
chaithanyarss 251:c766afa330a3 27 gMutex.unlock();
ee12b079 173:f81ded27423d 28 }
ee12b079 173:f81ded27423d 29 }
ee12b079 173:f81ded27423d 30
ee12b079 245:da9d1bd999da 31 //HK Thread(Contains HK_main() and PL_main())
ee12b079 245:da9d1bd999da 32 //RTOS timer calllback func
ee12b079 245:da9d1bd999da 33 void hk_isr(void const *args){
ee12b079 246:565458eefd94 34 gHK_THREAD->signal_set(HK_SIGNAL);
ee12b079 245:da9d1bd999da 35 }
ee12b079 245:da9d1bd999da 36
ee12b079 245:da9d1bd999da 37
ee12b079 173:f81ded27423d 38 //COM THREAD
shreeshas95 0:f016e9e8d48b 39 // UART ISR
shreeshas95 0:f016e9e8d48b 40 void rx_read(){
shreeshas95 2:2caf2a9a13aa 41 gRX_CURRENT_DATA_NODE->values[gRX_COUNT] = RX1M.getc();
shreeshas95 2:2caf2a9a13aa 42 gFLAGS = gFLAGS | UART_INT_FLAG;
shreeshas95 0:f016e9e8d48b 43 gCOM_MNG_TMTC_THREAD->signal_set(COM_MNG_TMTC_SIGNAL_UART_INT);
shreeshas95 0:f016e9e8d48b 44 }
shreeshas95 0:f016e9e8d48b 45
aniruddhv 262:752c8689944a 46 // COM_RX_DISABLE ISR
aniruddhv 262:752c8689944a 47 void after_com_disable(){
aniruddhv 262:752c8689944a 48 gCOM_RX_DISABLE.detach();
aniruddhv 262:752c8689944a 49 RX1M.attach(&rx_read, Serial::RxIrq);
aniruddhv 262:752c8689944a 50 }
aniruddhv 262:752c8689944a 51
shreeshas95 0:f016e9e8d48b 52 // RX_TIMEOUT ISR
shreeshas95 0:f016e9e8d48b 53 void after_receive(){
shreeshas95 0:f016e9e8d48b 54 gRX_TIMEOUT.detach();
shreeshas95 2:2caf2a9a13aa 55 gFLAGS = gFLAGS | NEW_TC_RECEIVED;
shreeshas95 0:f016e9e8d48b 56 gCOM_MNG_TMTC_THREAD->signal_set(COM_MNG_TMTC_SIGNAL_UART_INT);
shreeshas95 0:f016e9e8d48b 57 }
shreeshas95 0:f016e9e8d48b 58
shreeshas95 0:f016e9e8d48b 59 // SESSION_TIMOUT ISR
shreeshas95 0:f016e9e8d48b 60 void after_session(){
shreeshas95 0:f016e9e8d48b 61 gSESSION_TIMEOUT.detach();
shreeshas95 6:79d422d1ed42 62 gFLAGS = gFLAGS | COM_SESSION_TIMEOUT_FLAG;
shreeshas95 6:79d422d1ed42 63 if( gMASTER_STATE != TCL_STATE_EXECUTING ){
shreeshas95 6:79d422d1ed42 64 gCOM_MNG_TMTC_THREAD->signal_set(COM_MNG_TMTC_SIGNAL_UART_INT);
shreeshas95 6:79d422d1ed42 65 }
shreeshas95 0:f016e9e8d48b 66 }
shreeshas95 0:f016e9e8d48b 67
shreeshas95 0:f016e9e8d48b 68 #define reset_all {\
shreeshas95 0:f016e9e8d48b 69 Base_tc *tcp = gHEAD_NODE_TCL;\
aniruddhv 12:ffdb29353058 70 /*gPC.puts("inside reset\r\n");*/\
shreeshas95 5:ab276a17ca07 71 gFLAGS = 0x0000;\
shreeshas95 0:f016e9e8d48b 72 while(tcp != NULL){\
shreeshas95 0:f016e9e8d48b 73 Base_tc *temp = tcp->next_TC;\
shreeshas95 0:f016e9e8d48b 74 delete tcp;\
shreeshas95 0:f016e9e8d48b 75 tcp = temp;\
shreeshas95 0:f016e9e8d48b 76 }\
shreeshas95 5:ab276a17ca07 77 gHEAD_NODE_TCL = NULL;\
shreeshas95 5:ab276a17ca07 78 gLAST_NODE_TCL = NULL;\
aniruddhv 262:752c8689944a 79 gMASTER_STATE = TCL_STATE_COMPLETED;\
shreeshas95 0:f016e9e8d48b 80 gTOTAL_INCORRECT_SIZE_TC = 0;\
shreeshas95 0:f016e9e8d48b 81 gTOTAL_CRC_FAIL_TC = 0;\
shreeshas95 2:2caf2a9a13aa 82 gTOTAL_REPEATED_TC = 0;\
shreeshas95 5:ab276a17ca07 83 gTOTAL_VALID_TC = 0;\
shreeshas95 5:ab276a17ca07 84 for(int i = 0 ; i < TM_LONG_SIZE ; ++i){\
aniruddhv 262:752c8689944a 85 /*gLAST_TM[i] = 0x00;*/\
shreeshas95 5:ab276a17ca07 86 }\
aniruddhv 262:752c8689944a 87 /*gLAST_TM_SHORT_OR_LONG = SHORT_TM_CODE;*/\
shreeshas95 0:f016e9e8d48b 88 COM_RX_DATA_NODE *dataptr = gRX_HEAD_DATA_NODE;\
shreeshas95 0:f016e9e8d48b 89 while( dataptr != NULL ){\
shreeshas95 0:f016e9e8d48b 90 COM_RX_DATA_NODE *temp = dataptr->next_node;\
shreeshas95 0:f016e9e8d48b 91 delete dataptr;\
shreeshas95 0:f016e9e8d48b 92 dataptr = temp;\
shreeshas95 0:f016e9e8d48b 93 }\
shreeshas95 0:f016e9e8d48b 94 gRX_HEAD_DATA_NODE = new COM_RX_DATA_NODE;\
shreeshas95 0:f016e9e8d48b 95 gRX_HEAD_DATA_NODE->next_node = NULL;\
shreeshas95 0:f016e9e8d48b 96 gRX_CURRENT_DATA_NODE = gRX_HEAD_DATA_NODE;\
shreeshas95 0:f016e9e8d48b 97 gRX_COUNT = 0;\
aniruddhv 262:752c8689944a 98 gTOTAL_RAW_BYTES = 0;\
shreeshas95 2:2caf2a9a13aa 99 /*PENDING : ALL GLOBAL VAARIABLES AND FLAGS*/\
aniruddhv 12:ffdb29353058 100 /*gPC.puts("finished reset all\r\n");*/\
shreeshas95 2:2caf2a9a13aa 101 }
shreeshas95 2:2caf2a9a13aa 102
shreeshas95 2:2caf2a9a13aa 103 #define PUT_RAW_BYTE {\
shreeshas95 2:2caf2a9a13aa 104 if( gRX_COUNT < (RX_BUFFER_LENGTH-1) ){\
shreeshas95 2:2caf2a9a13aa 105 ++gRX_COUNT;\
shreeshas95 2:2caf2a9a13aa 106 }\
shreeshas95 2:2caf2a9a13aa 107 else{\
shreeshas95 2:2caf2a9a13aa 108 gRX_COUNT = 0;\
shreeshas95 2:2caf2a9a13aa 109 gRX_CURRENT_DATA_NODE->next_node = new COM_RX_DATA_NODE;\
shreeshas95 2:2caf2a9a13aa 110 gRX_CURRENT_DATA_NODE = gRX_CURRENT_DATA_NODE->next_node;\
shreeshas95 2:2caf2a9a13aa 111 gRX_CURRENT_DATA_NODE->next_node = NULL;\
shreeshas95 2:2caf2a9a13aa 112 }\
aniruddhv 262:752c8689944a 113 ++gTOTAL_RAW_BYTES;\
shreeshas95 2:2caf2a9a13aa 114 gRX_TIMEOUT.attach(&after_receive, RX_TIMEOUT_LIMIT);\
shreeshas95 0:f016e9e8d48b 115 }
shreeshas95 0:f016e9e8d48b 116
shreeshas95 0:f016e9e8d48b 117 void COM_MNG_TMTC_FUN(void const *args){
shreeshas95 4:104dd82c99b8 118 if( !(gFLAGS & COM_SESSION_FLAG) ){
ee12b079 96:4ca92f9775e0 119 //gLEDR = 1;
ee12b079 96:4ca92f9775e0 120 //gLEDG = 1;
shreeshas95 4:104dd82c99b8 121 }
shreeshas95 0:f016e9e8d48b 122 while(true){
shreeshas95 0:f016e9e8d48b 123 Thread::signal_wait( COM_MNG_TMTC_SIGNAL_UART_INT );
shreeshas95 0:f016e9e8d48b 124 if( gFLAGS & UART_INT_FLAG ){
shreeshas95 0:f016e9e8d48b 125 gFLAGS = gFLAGS & (~UART_INT_FLAG);
shreeshas95 2:2caf2a9a13aa 126 if( !(gFLAGS & COM_SESSION_FLAG) ){
shreeshas95 2:2caf2a9a13aa 127 // PENDING : DISABLE THREADS
ee12b079 254:22d97475ca79 128 HK_counter->stop();
ee12b079 245:da9d1bd999da 129 gPAY_SPI->bulkRead_pause();
shreeshas95 2:2caf2a9a13aa 130 gFLAGS = gFLAGS | COM_SESSION_FLAG;
shreeshas95 2:2caf2a9a13aa 131 gSESSION_TIMEOUT.attach(&after_session, SESSION_TIME_LIMIT);
shreeshas95 2:2caf2a9a13aa 132 gFLAGS = gFLAGS | COM_RX_FLAG;
aniruddhv 262:752c8689944a 133 gTOTAL_RAW_BYTES = 0;
shreeshas95 2:2caf2a9a13aa 134 PUT_RAW_BYTE;
shreeshas95 2:2caf2a9a13aa 135 // PENDING : MEASURE RSSI
shreeshas95 4:104dd82c99b8 136 if( gFLAGS & COM_SESSION_FLAG ){
ee12b079 96:4ca92f9775e0 137 //gLEDR = 0;
ee12b079 96:4ca92f9775e0 138 //gLEDG = 0;
shreeshas95 4:104dd82c99b8 139 }
shreeshas95 2:2caf2a9a13aa 140 }
shreeshas95 2:2caf2a9a13aa 141 else if( gFLAGS & COM_RX_FLAG ){
ee12b079 96:4ca92f9775e0 142 //gLEDR = 0;
ee12b079 96:4ca92f9775e0 143 //gLEDG = 1;
shreeshas95 2:2caf2a9a13aa 144 PUT_RAW_BYTE;
shreeshas95 0:f016e9e8d48b 145 }
shreeshas95 0:f016e9e8d48b 146 else{
ee12b079 96:4ca92f9775e0 147 //gLEDR = 1;
ee12b079 96:4ca92f9775e0 148 //gLEDG = 0;
shreeshas95 2:2caf2a9a13aa 149 gFLAGS = gFLAGS | COM_RX_FLAG;
shreeshas95 2:2caf2a9a13aa 150 PUT_RAW_BYTE;
shreeshas95 0:f016e9e8d48b 151 }
aniruddhv 262:752c8689944a 152 if(gTOTAL_RAW_BYTES > BYTE_OVERFLOW_CONSTANT){
aniruddhv 262:752c8689944a 153 RX1M.attach(NULL);
aniruddhv 262:752c8689944a 154 gCOM_RX_DISABLE.attach(&after_com_disable, COM_RX_DISABLE_TIMEOUT);
aniruddhv 262:752c8689944a 155 after_receive();
aniruddhv 262:752c8689944a 156 }
shreeshas95 0:f016e9e8d48b 157 }
shreeshas95 4:104dd82c99b8 158 else if( gFLAGS & NEW_TC_RECEIVED ){
ee12b079 98:fd99ddc0e0a1 159 gPC.puts("NEW TC RECEIVED\r\n");
chaithanyarss 261:1e54415b34d3 160 //Thread::wait(10000);
shreeshas95 0:f016e9e8d48b 161 gFLAGS = gFLAGS & (~NEW_TC_RECEIVED);
shreeshas95 4:104dd82c99b8 162 gFLAGS = gFLAGS | COM_MNG_TMTC_RUNNING_FLAG;
shreeshas95 2:2caf2a9a13aa 163
shreeshas95 0:f016e9e8d48b 164 // DISABLE THE RX1M INTERRUPT
shreeshas95 0:f016e9e8d48b 165 RX1M.attach(NULL);
shreeshas95 0:f016e9e8d48b 166
shreeshas95 4:104dd82c99b8 167 // VERIFY CRC, REPEATED PSC AND UPDATE TOTAL_VALID_TC, INCORRECT SIZE TC, CRC FAIL TC
shreeshas95 2:2caf2a9a13aa 168 while(gRX_COUNT < (RX_BUFFER_LENGTH)){
shreeshas95 2:2caf2a9a13aa 169 gRX_CURRENT_DATA_NODE->values[gRX_COUNT] = 0x00;
shreeshas95 0:f016e9e8d48b 170 ++gRX_COUNT;
shreeshas95 0:f016e9e8d48b 171 }
shreeshas95 0:f016e9e8d48b 172 gRX_COUNT = 0;
shreeshas95 4:104dd82c99b8 173 raw_data_to_tc();
shreeshas95 6:79d422d1ed42 174 gFLAGS = gFLAGS & (~COM_RX_FLAG);
aniruddhv 51:da85d84768e2 175
chaithanyarss 251:c766afa330a3 176 //Mutex
ee12b079 254:22d97475ca79 177 gMutex.lock();
chaithanyarss 251:c766afa330a3 178
shreeshas95 2:2caf2a9a13aa 179 if( gTOTAL_VALID_TC > 0 ){
aniruddhv 12:ffdb29353058 180 /*gPC.printf("valid TC rx: %u\r\n", gTOTAL_VALID_TC);*/
shreeshas95 4:104dd82c99b8 181 if( gTOTAL_VALID_TC < COM_MAX_TC_LIMIT ){
shreeshas95 4:104dd82c99b8 182 // CHECK WEATHER TC LIST HAS MISSING TC OR WEATHER LAST FRAME BIT IS HIGH IN THE LAST PSC-TC
aniruddhv 12:ffdb29353058 183 /*gPC.puts("checking for tc list complete\r\n");*/
shreeshas95 4:104dd82c99b8 184 uint8_t tempContinue = 0xFF;
shreeshas95 4:104dd82c99b8 185 continueToExecute(tempContinue);
shreeshas95 4:104dd82c99b8 186 if(tempContinue == 0x00){
aniruddhv 12:ffdb29353058 187 /*gPC.puts("tc list is complete\r\n");*/
shreeshas95 4:104dd82c99b8 188 // CHECK WEATHER GS VERIFICATION CODE MATCHES
shreeshas95 4:104dd82c99b8 189 uint8_t tempGSver = 0x00;
shreeshas95 4:104dd82c99b8 190 GScodeVerification(tempGSver);
shreeshas95 5:ab276a17ca07 191 /*PENDING: INCLUDE GS VERIFICATION CODE*/
aniruddhv 37:c9a739750806 192 if( tempGSver == 0xFF ){
aniruddhv 37:c9a739750806 193 /*gPC.puts("GS code match !!\r\n");*/
shreeshas95 4:104dd82c99b8 194 gFLAGS = gFLAGS | COM_SESSION_VALIDITY;
aniruddhv 262:752c8689944a 195 sys_reset_cdms_timer->start(cdms_reset_timeout);
shreeshas95 4:104dd82c99b8 196 COM_POWER_ON_TX;
aniruddhv 262:752c8689944a 197 P_COM_HK;
aniruddhv 262:752c8689944a 198 if( (gFLAGS & COM_PA_HOT_FLAG) || ( gFLAGS & COM_PA_OC_FLAG ) ){
aniruddhv 262:752c8689944a 199 COM_TX_CNTRL = 0;
aniruddhv 262:752c8689944a 200 gCOM_PA_COOLING_TIMEOUT.attach(&after_cooling_pa, COM_PA_COOLING_TIME_LIMIT);
aniruddhv 262:752c8689944a 201 gFLAGS = gFLAGS & (~COM_MNG_TMTC_RUNNING_FLAG);
aniruddhv 262:752c8689944a 202 RX1M.attach(&rx_read, Serial::RxIrq);
aniruddhv 262:752c8689944a 203 }
aniruddhv 262:752c8689944a 204 else{
shreeshas95 6:79d422d1ed42 205 gCOM_PA_COOLING_TIMEOUT.detach();
ee12b079 98:fd99ddc0e0a1 206 gPC.puts("EXECUTING TELECOMMANDS\r\n");
shreeshas95 4:104dd82c99b8 207 EXECUTE_OBOSC_ONLY;
shreeshas95 4:104dd82c99b8 208 EXECUTE_TC;
ee12b079 164:be3b4b760d0c 209 gPC.puts("COMPLETED EXECUTION\r\n");
shreeshas95 4:104dd82c99b8 210 }
shreeshas95 4:104dd82c99b8 211 }
shreeshas95 4:104dd82c99b8 212 else{
aniruddhv 12:ffdb29353058 213 /*gPC.puts("GS code mismatch !!\r\n");*/
shreeshas95 6:79d422d1ed42 214 RX1M.attach(&rx_read, Serial::RxIrq);
shreeshas95 4:104dd82c99b8 215 reset_all;
shreeshas95 4:104dd82c99b8 216 gFLAGS = gFLAGS & (~COM_SESSION_VALIDITY);
shreeshas95 4:104dd82c99b8 217 // PENDING : ENABLE THREADS
ee12b079 253:fd6696d91e74 218 HK_counter->start(10000);
ee12b079 245:da9d1bd999da 219 gPAY_SPI->bulkRead_resume(&payload_isr_fun);
shreeshas95 4:104dd82c99b8 220 gSESSION_TIMEOUT.detach();
shreeshas95 4:104dd82c99b8 221 gFLAGS = gFLAGS & (~COM_SESSION_FLAG);
shreeshas95 4:104dd82c99b8 222 // WARNING: clear COM_MNG_TMTC ?
aniruddhv 262:752c8689944a 223 gFLAGS = gFLAGS & (~COM_MNG_TMTC_RUNNING_FLAG);
shreeshas95 4:104dd82c99b8 224 }
shreeshas95 0:f016e9e8d48b 225 }
shreeshas95 2:2caf2a9a13aa 226 else{
ee12b079 164:be3b4b760d0c 227 gPC.puts("tc list is not complete\r\n");
shreeshas95 5:ab276a17ca07 228 if(tempContinue & 0x01){
aniruddhv 69:20f09a0c3fd2 229 //gPC.puts("last packet bit not found\r\n");
shreeshas95 5:ab276a17ca07 230 }
shreeshas95 5:ab276a17ca07 231 if( tempContinue & 0x02 ){
aniruddhv 69:20f09a0c3fd2 232 //gPC.puts("missing psc found\r\n");
shreeshas95 5:ab276a17ca07 233 }
aniruddhv 69:20f09a0c3fd2 234 //gPC.printf("crc fail tc = %u\r\n", gTOTAL_CRC_FAIL_TC);
aniruddhv 69:20f09a0c3fd2 235 //gPC.printf("incorrect size tc = %u\r\n", gTOTAL_INCORRECT_SIZE_TC);
aniruddhv 69:20f09a0c3fd2 236 //gPC.printf("repeated psc = %u\r\n", gTOTAL_REPEATED_TC);
shreeshas95 5:ab276a17ca07 237 Base_tc *test_tc = gHEAD_NODE_TCL;
shreeshas95 5:ab276a17ca07 238 while( test_tc != NULL ){
shreeshas95 5:ab276a17ca07 239 int length = 0;
shreeshas95 5:ab276a17ca07 240 if( GETshort_or_long_tc(test_tc) == SHORT_TC_CODE ){
shreeshas95 5:ab276a17ca07 241 length = TC_SHORT_SIZE;
shreeshas95 5:ab276a17ca07 242 }
shreeshas95 5:ab276a17ca07 243 else{
shreeshas95 5:ab276a17ca07 244 length = TC_LONG_SIZE;
shreeshas95 5:ab276a17ca07 245 }
rohit3342 16:538de1b20b3a 246 for(int i = 0 ; i < length ; ++i ){
aniruddhv 69:20f09a0c3fd2 247 //gPC.printf("%x ", test_tc->TC_string[i]);
shreeshas95 5:ab276a17ca07 248 }
aniruddhv 69:20f09a0c3fd2 249 //gPC.puts("\r\n");
shreeshas95 5:ab276a17ca07 250 test_tc = test_tc->next_TC;
shreeshas95 5:ab276a17ca07 251 }
aniruddhv 69:20f09a0c3fd2 252 //gPC.puts("\r\n");
shreeshas95 4:104dd82c99b8 253 COM_POWER_ON_TX;
shreeshas95 4:104dd82c99b8 254 // PENDING : POWER OFF TX
aniruddhv 262:752c8689944a 255 COM_TX_CNTRL = 0;
shreeshas95 4:104dd82c99b8 256 RX1M.attach(&rx_read, Serial::RxIrq);
shreeshas95 4:104dd82c99b8 257 gFLAGS = gFLAGS & (~COM_MNG_TMTC_RUNNING_FLAG);
shreeshas95 2:2caf2a9a13aa 258 }
shreeshas95 0:f016e9e8d48b 259 }
shreeshas95 0:f016e9e8d48b 260 else{
shreeshas95 4:104dd82c99b8 261 COM_POWER_ON_TX;
shreeshas95 6:79d422d1ed42 262 // POWER OFF TX transmitter only
shreeshas95 4:104dd82c99b8 263 // WARNING: reset_all ? clear com_session ?
aniruddhv 262:752c8689944a 264 COM_TX_CNTRL = 0;
aniruddhv 262:752c8689944a 265 reset_all;
aniruddhv 262:752c8689944a 266 gFLAGS = gFLAGS & (~COM_SESSION_FLAG);
shreeshas95 2:2caf2a9a13aa 267 RX1M.attach(&rx_read, Serial::RxIrq);
shreeshas95 4:104dd82c99b8 268 gFLAGS = gFLAGS & (~COM_MNG_TMTC_RUNNING_FLAG);
shreeshas95 0:f016e9e8d48b 269 }
shreeshas95 2:2caf2a9a13aa 270 }
shreeshas95 4:104dd82c99b8 271 else{
ee12b079 164:be3b4b760d0c 272 gPC.puts("No valid TC received\r\n");
shreeshas95 2:2caf2a9a13aa 273 RX1M.attach(&rx_read, Serial::RxIrq);
shreeshas95 4:104dd82c99b8 274 gFLAGS = gFLAGS & (~COM_MNG_TMTC_RUNNING_FLAG);
shreeshas95 6:79d422d1ed42 275 reset_all;
shreeshas95 6:79d422d1ed42 276 // PENDING : ENABLE THREADS
ee12b079 246:565458eefd94 277 HK_counter->start(10000);
ee12b079 245:da9d1bd999da 278 gPAY_SPI->bulkRead_resume(&payload_isr_fun);
shreeshas95 6:79d422d1ed42 279 gSESSION_TIMEOUT.detach();
shreeshas95 6:79d422d1ed42 280 gFLAGS = gFLAGS & (~COM_SESSION_FLAG);
shreeshas95 2:2caf2a9a13aa 281 }
shreeshas95 2:2caf2a9a13aa 282 }
shreeshas95 2:2caf2a9a13aa 283 else if( gFLAGS & COM_PA_HOT_FLAG ){
aniruddhv 12:ffdb29353058 284 /*gPC.puts("checking for PA hot in main\r\n");*/
aniruddhv 262:752c8689944a 285 P_COM_HK;
aniruddhv 262:752c8689944a 286 if((gFLAGS & COM_PA_HOT_FLAG) || (gFLAGS & COM_PA_OC_FLAG)){
aniruddhv 262:752c8689944a 287 COM_TX_CNTRL = 0;
aniruddhv 262:752c8689944a 288 gCOM_PA_COOLING_TIMEOUT.attach(&after_cooling_pa, COM_PA_COOLING_TIME_LIMIT);
shreeshas95 0:f016e9e8d48b 289 }
shreeshas95 0:f016e9e8d48b 290 else{
aniruddhv 262:752c8689944a 291 gCOM_PA_COOLING_TIMEOUT.detach();
aniruddhv 262:752c8689944a 292 if( !(gFLAGS & COM_RX_FLAG) ){
aniruddhv 12:ffdb29353058 293 /*gPC.puts("PA IS COOLED DOWN\r\n");*/
shreeshas95 6:79d422d1ed42 294 gFLAGS = gFLAGS | COM_MNG_TMTC_RUNNING_FLAG;
shreeshas95 6:79d422d1ed42 295 RX1M.attach(NULL);
shreeshas95 6:79d422d1ed42 296 COM_POWER_ON_TX;
shreeshas95 6:79d422d1ed42 297 EXECUTE_OBOSC_ONLY;
shreeshas95 6:79d422d1ed42 298 EXECUTE_TC;
shreeshas95 6:79d422d1ed42 299 }
shreeshas95 0:f016e9e8d48b 300 }
shreeshas95 2:2caf2a9a13aa 301 }
shreeshas95 6:79d422d1ed42 302 else if( gFLAGS & COM_SESSION_TIMEOUT_FLAG ){
aniruddhv 12:ffdb29353058 303 /*gPC.puts("session timeout: resetting in main\r\n");*/
shreeshas95 6:79d422d1ed42 304 COM_POWER_OFF_TX;
shreeshas95 6:79d422d1ed42 305 /*PENDING : ENABLE THREADS*/
ee12b079 246:565458eefd94 306 HK_counter->start(10000);
ee12b079 245:da9d1bd999da 307 gPAY_SPI->bulkRead_resume(&payload_isr_fun);
shreeshas95 6:79d422d1ed42 308 gSESSION_TIMEOUT.detach();
shreeshas95 6:79d422d1ed42 309 gFLAGS = gFLAGS & (~COM_MNG_TMTC_RUNNING_FLAG);
shreeshas95 6:79d422d1ed42 310 gFLAGS = gFLAGS & (~COM_SESSION_FLAG);
shreeshas95 6:79d422d1ed42 311 reset_all;
shreeshas95 6:79d422d1ed42 312 }
shreeshas95 2:2caf2a9a13aa 313 else{
aniruddhv 12:ffdb29353058 314 /*gPC.puts("INVALID SIGNAL RECEIVED IN MAIN\r\n");*/
shreeshas95 2:2caf2a9a13aa 315 // SOME INVALID SIGNAL RECEIVED
shreeshas95 4:104dd82c99b8 316 COM_POWER_OFF_TX;
shreeshas95 2:2caf2a9a13aa 317 reset_all;
shreeshas95 2:2caf2a9a13aa 318 // PENDING : ENABLE THREADS
ee12b079 246:565458eefd94 319 HK_counter->start(10000);
ee12b079 245:da9d1bd999da 320 gPAY_SPI->bulkRead_resume(&payload_isr_fun);
shreeshas95 2:2caf2a9a13aa 321 gSESSION_TIMEOUT.detach();
shreeshas95 2:2caf2a9a13aa 322 gFLAGS = gFLAGS & (~COM_SESSION_FLAG);
shreeshas95 0:f016e9e8d48b 323 }
ee12b079 254:22d97475ca79 324 gMutex.unlock();
shreeshas95 0:f016e9e8d48b 325 }
shreeshas95 101:bece931236a2 326 }