publishing to check changes in cdms code
Dependencies: FreescaleIAP SimpleDMA mbed-rtos mbed
Fork of CDMS_CODE_samp_23SEP_DMA_flag by
CDMS_HK.h@292:61aa2169ea1c, 2016-08-26 (annotated)
- Committer:
- ee12b079
- Date:
- Fri Aug 26 14:40:29 2016 +0000
- Revision:
- 292:61aa2169ea1c
- Parent:
- 290:3159ff1081a2
- Child:
- 296:ec1317ab9c50
- Child:
- 301:701ac67649b7
Testing , mutex issue solved
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
shreeshas95 | 103:b55559925dc1 | 1 | void FCTN_CDMS_HK_MAIN(); |
shreeshas95 | 103:b55559925dc1 | 2 | void FCTN_CDMS_HK(); |
ee12b079 | 210:f4acf895b598 | 3 | void VERIFY_COMRX(); |
ee12b079 | 210:f4acf895b598 | 4 | void VERIFY_RTC(); |
ee12b079 | 210:f4acf895b598 | 5 | void CDMS_HK_SD(); |
ee12b079 | 210:f4acf895b598 | 6 | void HANDLE_HW_FAULTS(); |
ee12b079 | 210:f4acf895b598 | 7 | void HANDLE_HW_FAULT_SD(); |
ee12b079 | 210:f4acf895b598 | 8 | void HANDLE_HW_FAULT_BAE(); |
ee12b079 | 210:f4acf895b598 | 9 | void HANDLE_HW_FAULT_PL(); |
ee12b079 | 210:f4acf895b598 | 10 | void FUNC_CDMS_GPIO_STATUS(); |
ee12b079 | 210:f4acf895b598 | 11 | void minMaxHkData(); |
ee12b079 | 210:f4acf895b598 | 12 | void COLLECT_CDMS_RAM(); |
shreeshas95 | 103:b55559925dc1 | 13 | |
ee12b079 | 289:9bd62b69874c | 14 | extern uint8_t beacon_array[134]; |
ee12b079 | 289:9bd62b69874c | 15 | |
ee12b079 | 210:f4acf895b598 | 16 | AnalogIn TempInput(PIN27); // Input from Current Multiplexer |
shreeshas95 | 103:b55559925dc1 | 17 | AnalogIn CDMS_temp_sensor(PIN53); |
ee12b079 | 210:f4acf895b598 | 18 | AnalogIn COMRX_RSSI_volatge(PIN70); |
ee12b079 | 210:f4acf895b598 | 19 | |
shreeshas95 | 103:b55559925dc1 | 20 | |
shreeshas95 | 103:b55559925dc1 | 21 | DigitalOut SelectLinec3 (PIN79); // MSB of Select Lines |
shreeshas95 | 103:b55559925dc1 | 22 | DigitalOut SelectLinec2 (PIN78); |
shreeshas95 | 103:b55559925dc1 | 23 | DigitalOut SelectLinec1 (PIN77); |
shreeshas95 | 103:b55559925dc1 | 24 | DigitalOut SelectLinec0 (PIN76); // LSB of Select Lines |
shreeshas95 | 103:b55559925dc1 | 25 | |
chaithanyarss | 251:c766afa330a3 | 26 | Convolution CDMS_HEALTH; |
chaithanyarss | 251:c766afa330a3 | 27 | Convolution BAE_HEALTH; |
chaithanyarss | 251:c766afa330a3 | 28 | unsigned char CDMS_HK_FRAME[134] = {0}; |
chaithanyarss | 251:c766afa330a3 | 29 | char BAE_HK[134] = {0}; |
chaithanyarss | 251:c766afa330a3 | 30 | uint8_t convoluted_CDMS_HK[270]; |
chaithanyarss | 251:c766afa330a3 | 31 | uint8_t interleave_CDMS_HK[288]; |
chaithanyarss | 251:c766afa330a3 | 32 | uint8_t CDMS_HEALTH_FINAL[512] = {0}; |
chaithanyarss | 251:c766afa330a3 | 33 | uint8_t convoluted_BAE_HK[270]; |
chaithanyarss | 251:c766afa330a3 | 34 | uint8_t interleave_BAE_HK[288]; |
chaithanyarss | 251:c766afa330a3 | 35 | uint8_t BAE_HEALTH_FINAL[512] = {0}; |
chaithanyarss | 251:c766afa330a3 | 36 | unsigned char BAE_HK_FRAME[134] = {0}; |
chaithanyarss | 251:c766afa330a3 | 37 | |
chaithanyarss | 251:c766afa330a3 | 38 | |
chaithanyarss | 251:c766afa330a3 | 39 | |
shreeshas95 | 104:a50ae79ca36e | 40 | void FCTN_CDMS_HK_MAIN(void const *args) |
shreeshas95 | 103:b55559925dc1 | 41 | { |
ee12b079 | 268:ded5306a1fd1 | 42 | uint8_t sd_stat = 0; |
ee12b079 | 289:9bd62b69874c | 43 | uint8_t hk_count=0; |
ee12b079 | 245:da9d1bd999da | 44 | while(1) |
ee12b079 | 245:da9d1bd999da | 45 | { |
chaithanyarss | 257:7d404e9dc9e2 | 46 | gHK_THREAD->signal_wait(HK_SIGNAL); |
ee12b079 | 289:9bd62b69874c | 47 | gMutex.lock(); |
ee12b079 | 289:9bd62b69874c | 48 | if(hk_count == 1 || hk_count == 2) |
ee12b079 | 289:9bd62b69874c | 49 | { |
ee12b079 | 289:9bd62b69874c | 50 | FCTN_CDMS_PL_MAIN((void const *)NULL); |
ee12b079 | 289:9bd62b69874c | 51 | hk_count--; |
ee12b079 | 292:61aa2169ea1c | 52 | gMutex.unlock(); |
ee12b079 | 289:9bd62b69874c | 53 | continue; |
ee12b079 | 289:9bd62b69874c | 54 | } |
ee12b079 | 289:9bd62b69874c | 55 | else if(hk_count == 0) |
ee12b079 | 289:9bd62b69874c | 56 | { |
ee12b079 | 289:9bd62b69874c | 57 | FCTN_CDMS_PL_MAIN((void const *)NULL); |
ee12b079 | 289:9bd62b69874c | 58 | hk_count = 2; |
ee12b079 | 289:9bd62b69874c | 59 | } |
chaithanyarss | 261:1e54415b34d3 | 60 | gPC.printf("\n\nEntering HK thread\n"); |
chaithanyarss | 257:7d404e9dc9e2 | 61 | |
ee12b079 | 289:9bd62b69874c | 62 | if(EN_CDMS_HK == 0x00) |
ee12b079 | 289:9bd62b69874c | 63 | continue; |
chaithanyarss | 224:3ac1f91e0ebc | 64 | CDMS_HK_MAIN_STATUS = 0x01; |
chaithanyarss | 224:3ac1f91e0ebc | 65 | CDMS_HK_MAIN_COUNTER++; |
ee12b079 | 210:f4acf895b598 | 66 | |
ee12b079 | 289:9bd62b69874c | 67 | FCTN_CDMS_HK();//collects temperatures |
ee12b079 | 289:9bd62b69874c | 68 | RSSI_volatge = COMRX_RSSI_volatge.read() * 3.3;//to be checked |
chaithanyarss | 224:3ac1f91e0ebc | 69 | VERIFY_COMRX(); |
chaithanyarss | 224:3ac1f91e0ebc | 70 | VERIFY_RTC(); |
chaithanyarss | 224:3ac1f91e0ebc | 71 | HANDLE_HW_FAULTS(); |
ee12b079 | 289:9bd62b69874c | 72 | FUNC_CDMS_GPIO_STATUS(); |
chaithanyarss | 257:7d404e9dc9e2 | 73 | |
chaithanyarss | 257:7d404e9dc9e2 | 74 | uint8_t CDMS_quant[20]; |
chaithanyarss | 257:7d404e9dc9e2 | 75 | CDMS_quant[1]= (uint8_t)quant_data.CDMS_temp_quant; |
chaithanyarss | 257:7d404e9dc9e2 | 76 | CDMS_quant[2]= (uint8_t)RSSI_volatge; |
chaithanyarss | 224:3ac1f91e0ebc | 77 | for(int i=0; i<16; i++) { |
chaithanyarss | 257:7d404e9dc9e2 | 78 | CDMS_quant[i+4]= (uint8_t)quant_data.temp_quant[i]; |
chaithanyarss | 224:3ac1f91e0ebc | 79 | } |
chaithanyarss | 224:3ac1f91e0ebc | 80 | minMaxHkData(); |
chaithanyarss | 224:3ac1f91e0ebc | 81 | |
chaithanyarss | 257:7d404e9dc9e2 | 82 | CDMS_HEALTH_DATA[1] = GPIO_STATUS; //Reading GPIO Pins |
chaithanyarss | 257:7d404e9dc9e2 | 83 | CDMS_HEALTH_DATA[0] = GPIO_STATUS >> 8; |
chaithanyarss | 257:7d404e9dc9e2 | 84 | COLLECT_CDMS_RAM(); |
chaithanyarss | 257:7d404e9dc9e2 | 85 | for(int i = 0;i<84;i++) |
chaithanyarss | 257:7d404e9dc9e2 | 86 | CDMS_HEALTH_DATA[2+i] = CDMS_RAM[i]; //Reading RAM parameters |
chaithanyarss | 257:7d404e9dc9e2 | 87 | for(int i = 0;i<20;i++) //Collecting Data from Temp sensors |
chaithanyarss | 257:7d404e9dc9e2 | 88 | CDMS_HEALTH_DATA[86+i] = CDMS_quant[i]; |
chaithanyarss | 224:3ac1f91e0ebc | 89 | |
ee12b079 | 289:9bd62b69874c | 90 | // Here: Have to FIT flash data. |
ee12b079 | 289:9bd62b69874c | 91 | CDMS_HEALTH_DATA[106] = (EPS_V_A_EN_STATUS<<7) | ((BAE_STATUS<<5)&0x60) | ((SD_STATUS<<3)&0x18) | ((PL_STATUS<<1)&0x06) | (PL_EPS_LATCH_SW_EN & 0x01); |
ee12b079 | 289:9bd62b69874c | 92 | CDMS_HEALTH_DATA[107] = (RTC_INIT_STATUS<<6) | ((CDMS_RTC_DISABLE<<5)&0x20); |
ee12b079 | 289:9bd62b69874c | 93 | CDMS_HEALTH_DATA[108] = CDMS_RESET_COUNTER >>8; |
ee12b079 | 289:9bd62b69874c | 94 | CDMS_HEALTH_DATA[109] = CDMS_RESET_COUNTER; |
ee12b079 | 289:9bd62b69874c | 95 | CDMS_HEALTH_DATA[110] = TIME_LATEST_CDSMS_RESET >>24; |
ee12b079 | 289:9bd62b69874c | 96 | CDMS_HEALTH_DATA[111] = TIME_LATEST_CDSMS_RESET >>16; |
ee12b079 | 289:9bd62b69874c | 97 | CDMS_HEALTH_DATA[112] = TIME_LATEST_CDSMS_RESET >>8; |
ee12b079 | 289:9bd62b69874c | 98 | CDMS_HEALTH_DATA[113] = TIME_LATEST_CDSMS_RESET; |
ee12b079 | 289:9bd62b69874c | 99 | CDMS_HEALTH_DATA[114] = COM_TC_BYTES_LIMIT>>8; |
ee12b079 | 289:9bd62b69874c | 100 | CDMS_HEALTH_DATA[115] = COM_TC_BYTES_LIMIT; |
ee12b079 | 289:9bd62b69874c | 101 | CDMS_HEALTH_DATA[116] = COM_RX_CURRENT_MAX; |
ee12b079 | 289:9bd62b69874c | 102 | CDMS_HEALTH_DATA[117] = COM_RX_DISABLE_TIMEOUT; |
ee12b079 | 289:9bd62b69874c | 103 | CDMS_HEALTH_DATA[118] = COM_PA_TMP_HIGH; |
ee12b079 | 289:9bd62b69874c | 104 | CDMS_HEALTH_DATA[119] = COM_PA_RECOVERY_TIMEOUT; |
ee12b079 | 289:9bd62b69874c | 105 | CDMS_HEALTH_DATA[120] = COM_SESSION_TIMEOUT; |
ee12b079 | 289:9bd62b69874c | 106 | CDMS_HEALTH_DATA[121] = COM_RSSI_MIN; |
ee12b079 | 289:9bd62b69874c | 107 | CDMS_HEALTH_DATA[122] = SD_LIB_BLK_CURRENT>>8; |
ee12b079 | 289:9bd62b69874c | 108 | CDMS_HEALTH_DATA[122] = SD_LIB_BLK_CURRENT; |
chaithanyarss | 257:7d404e9dc9e2 | 109 | |
chaithanyarss | 257:7d404e9dc9e2 | 110 | uint64_t time = FCTN_CDMS_RD_RTC() >> 7; //Reading Time from RTC |
chaithanyarss | 257:7d404e9dc9e2 | 111 | for(int i = 124; i<128; i++) |
chaithanyarss | 257:7d404e9dc9e2 | 112 | CDMS_HEALTH_DATA[i] = time >> i*8; |
ee12b079 | 289:9bd62b69874c | 113 | gPC.printf("0x%d\n",time); |
chaithanyarss | 224:3ac1f91e0ebc | 114 | FCTN_SD_MNGR(); //Adding FSC & TMID to TM frame |
chaithanyarss | 224:3ac1f91e0ebc | 115 | CDMS_HK_FRAME[0] = 0x20; |
chaithanyarss | 224:3ac1f91e0ebc | 116 | CDMS_HK_FRAME[1] = FSC_CURRENT[4]+1; |
chaithanyarss | 224:3ac1f91e0ebc | 117 | CDMS_HK_FRAME[2] = (FSC_CURRENT[4]+1) >> 8; |
chaithanyarss | 224:3ac1f91e0ebc | 118 | CDMS_HK_FRAME[3] = (FSC_CURRENT[4]+1) >> 16; |
chaithanyarss | 257:7d404e9dc9e2 | 119 | |
chaithanyarss | 224:3ac1f91e0ebc | 120 | for(int i = 0; i<128; i++) /*Adding actual CDMS Health data to TM frame*/ |
chaithanyarss | 224:3ac1f91e0ebc | 121 | CDMS_HK_FRAME[4+i] = CDMS_HEALTH_DATA[i]; |
chaithanyarss | 224:3ac1f91e0ebc | 122 | |
chaithanyarss | 224:3ac1f91e0ebc | 123 | uint16_t crc = crc16_gen(CDMS_HK_FRAME,132); /*Adding CRC to TM frame*/ |
chaithanyarss | 224:3ac1f91e0ebc | 124 | CDMS_HK_FRAME[133] = crc; |
chaithanyarss | 224:3ac1f91e0ebc | 125 | CDMS_HK_FRAME[132] = crc >> 8; |
chaithanyarss | 257:7d404e9dc9e2 | 126 | |
chaithanyarss | 251:c766afa330a3 | 127 | exor(CDMS_HK_FRAME); |
chaithanyarss | 251:c766afa330a3 | 128 | CDMS_HEALTH.convolutionEncode(CDMS_HK_FRAME , convoluted_CDMS_HK); |
chaithanyarss | 251:c766afa330a3 | 129 | CDMS_HEALTH.convolutionEncode(CDMS_HK_FRAME + 67, convoluted_CDMS_HK + 135); |
chaithanyarss | 251:c766afa330a3 | 130 | interleave(convoluted_CDMS_HK , interleave_CDMS_HK); |
chaithanyarss | 251:c766afa330a3 | 131 | interleave(convoluted_CDMS_HK +135, interleave_CDMS_HK + 144); |
ee12b079 | 247:d0be0773b951 | 132 | for(int i=0; i<288; i++) |
ee12b079 | 247:d0be0773b951 | 133 | CDMS_HEALTH_FINAL[i] = interleave_CDMS_HK[i]; |
ee12b079 | 247:d0be0773b951 | 134 | |
ee12b079 | 268:ded5306a1fd1 | 135 | sd_stat = SD_WRITE(CDMS_HEALTH_FINAL,FSC_CURRENT[4]+1,4); |
ee12b079 | 268:ded5306a1fd1 | 136 | if(sd_stat) |
ee12b079 | 268:ded5306a1fd1 | 137 | { |
ee12b079 | 268:ded5306a1fd1 | 138 | gPC.puts("sd write failure"); |
chaithanyarss | 290:3159ff1081a2 | 139 | // break; |
ee12b079 | 268:ded5306a1fd1 | 140 | } |
ee12b079 | 289:9bd62b69874c | 141 | gPC.printf("Completed CDMS HK\t"); |
ee12b079 | 247:d0be0773b951 | 142 | |
ee12b079 | 247:d0be0773b951 | 143 | /*---------------------------------- BAE HK --------------------------------------------*/ |
ee12b079 | 247:d0be0773b951 | 144 | |
chaithanyarss | 224:3ac1f91e0ebc | 145 | BAE_HK_I2C = FCTN_I2C_READ(BAE_HK,134); |
ee12b079 | 289:9bd62b69874c | 146 | gPC.printf("Entering BAE HK\t"); |
chaithanyarss | 224:3ac1f91e0ebc | 147 | if(BAE_HK_I2C == 0) { |
ee12b079 | 245:da9d1bd999da | 148 | crc = crc16_gen((unsigned char *)BAE_HK,132); |
ee12b079 | 245:da9d1bd999da | 149 | if(crc == ((uint16_t)BAE_HK[132] << 8) | (uint16_t)BAE_HK[133]){ |
ee12b079 | 289:9bd62b69874c | 150 | gPC.printf("BAE HK data recieved through I2C\t"); |
ee12b079 | 245:da9d1bd999da | 151 | TIME_LATEST_I2C_BAE = FCTN_CDMS_RD_RTC() >> 7; |
chaithanyarss | 261:1e54415b34d3 | 152 | /*for(int i = 0; i<15; i++) |
chaithanyarss | 261:1e54415b34d3 | 153 | gPC.printf("\r 0x%02X\n",BAE_HK[i]);*/ |
ee12b079 | 245:da9d1bd999da | 154 | for(int i = 0; i<4; i++) |
chaithanyarss | 257:7d404e9dc9e2 | 155 | BAE_HK[i] = time >> i; |
ee12b079 | 245:da9d1bd999da | 156 | BAE_HK_FRAME[0] = 0x28; |
ee12b079 | 245:da9d1bd999da | 157 | BAE_HK_FRAME[1] = FSC_CURRENT[5]+1; |
ee12b079 | 245:da9d1bd999da | 158 | BAE_HK_FRAME[2] = (FSC_CURRENT[5]+1) >> 8; |
ee12b079 | 245:da9d1bd999da | 159 | BAE_HK_FRAME[3] = (FSC_CURRENT[5]+1) >> 16; |
ee12b079 | 245:da9d1bd999da | 160 | for(int i = 0; i<128; i++) /*Adding actual CDMS Health data to TM frame*/ |
ee12b079 | 245:da9d1bd999da | 161 | BAE_HK_FRAME[4+i] = BAE_HK[i]; |
ee12b079 | 245:da9d1bd999da | 162 | crc = crc16_gen(BAE_HK_FRAME,132); /*Adding CRC to TM frame*/ |
ee12b079 | 245:da9d1bd999da | 163 | BAE_HK_FRAME[133] = crc; |
ee12b079 | 245:da9d1bd999da | 164 | BAE_HK_FRAME[132] = crc >> 8; |
chaithanyarss | 251:c766afa330a3 | 165 | exor(BAE_HK_FRAME); |
chaithanyarss | 251:c766afa330a3 | 166 | BAE_HEALTH.convolutionEncode(BAE_HK_FRAME , convoluted_BAE_HK); |
chaithanyarss | 251:c766afa330a3 | 167 | BAE_HEALTH.convolutionEncode(BAE_HK_FRAME + 67, convoluted_BAE_HK + 135); |
chaithanyarss | 251:c766afa330a3 | 168 | interleave(convoluted_BAE_HK , interleave_BAE_HK); |
chaithanyarss | 251:c766afa330a3 | 169 | interleave(convoluted_BAE_HK +135, interleave_BAE_HK + 144); |
ee12b079 | 247:d0be0773b951 | 170 | for(int i=0; i<288; i++) |
ee12b079 | 247:d0be0773b951 | 171 | BAE_HEALTH_FINAL[i] = interleave_BAE_HK[i]; |
ee12b079 | 268:ded5306a1fd1 | 172 | sd_stat = SD_WRITE(BAE_HEALTH_FINAL,FSC_CURRENT[5]+1,5); |
ee12b079 | 268:ded5306a1fd1 | 173 | if(sd_stat) |
ee12b079 | 268:ded5306a1fd1 | 174 | { |
ee12b079 | 268:ded5306a1fd1 | 175 | gPC.puts("sd write failure"); |
chaithanyarss | 290:3159ff1081a2 | 176 | //break; |
ee12b079 | 268:ded5306a1fd1 | 177 | } |
ee12b079 | 245:da9d1bd999da | 178 | } |
ee12b079 | 247:d0be0773b951 | 179 | |
chaithanyarss | 224:3ac1f91e0ebc | 180 | } else { |
ee12b079 | 289:9bd62b69874c | 181 | gPC.printf("BAE HK data not recieved through I2C\t"); |
ee12b079 | 245:da9d1bd999da | 182 | for(int i = 0; i<134; i++) |
chaithanyarss | 224:3ac1f91e0ebc | 183 | BAE_HK[i] = 0; |
chaithanyarss | 224:3ac1f91e0ebc | 184 | } |
ee12b079 | 289:9bd62b69874c | 185 | gPC.printf("Completed BAE HK\n"); |
chaithanyarss | 224:3ac1f91e0ebc | 186 | |
chaithanyarss | 224:3ac1f91e0ebc | 187 | /*----------------------------------Beacon message--------------------------------------*/ |
ee12b079 | 289:9bd62b69874c | 188 | |
ee12b079 | 289:9bd62b69874c | 189 | |
chaithanyarss | 224:3ac1f91e0ebc | 190 | // Add HK bits |
ee12b079 | 289:9bd62b69874c | 191 | beacon_array[0] = 0x00; |
ee12b079 | 289:9bd62b69874c | 192 | beacon_array[1] = time >> 32; |
ee12b079 | 289:9bd62b69874c | 193 | beacon_array[2] = time >> 24; |
ee12b079 | 289:9bd62b69874c | 194 | beacon_array[3] = time >> 16; |
ee12b079 | 289:9bd62b69874c | 195 | beacon_array[4] = time >> 8; |
ee12b079 | 289:9bd62b69874c | 196 | beacon_array[5] = time; |
ee12b079 | 289:9bd62b69874c | 197 | beacon_array[6] = SD_FAULTCOUNT >> 8; |
ee12b079 | 289:9bd62b69874c | 198 | beacon_array[7] = SD_FAULTCOUNT; |
ee12b079 | 289:9bd62b69874c | 199 | beacon_array[8] = RTC_FAULTCOUNT >> 8; |
ee12b079 | 289:9bd62b69874c | 200 | beacon_array[9] = RTC_FAULTCOUNT; |
chaithanyarss | 290:3159ff1081a2 | 201 | beacon_array[10] = (((SD_STATUS == DEVICE_DISABLED || SD_STATUS == DEVICE_OC_FAULT)?1:0)<<7)|(RTC_STATUS <<6)|(COM_RX_STATUS<<3)|(V_C_PGOOD<<2)|(COMRX_OC_FAULT<<1)|(COM_TX_OC_FAULT); |
ee12b079 | 289:9bd62b69874c | 202 | beacon_array[11] = (COM_RX_CNTRL <<7)|(COM_TX_CNTRL); |
ee12b079 | 289:9bd62b69874c | 203 | beacon_array[12] = CDMS_HK_MAIN_COUNTER >>8; |
ee12b079 | 289:9bd62b69874c | 204 | beacon_array[13] = CDMS_HK_MAIN_COUNTER; |
ee12b079 | 289:9bd62b69874c | 205 | beacon_array[14] = PL_MAIN_COUNTER >>8; |
ee12b079 | 289:9bd62b69874c | 206 | beacon_array[15] = PL_MAIN_COUNTER; |
ee12b079 | 289:9bd62b69874c | 207 | beacon_array[16] = PL_RCV_SC_DATA_COUNTER >>8; |
ee12b079 | 289:9bd62b69874c | 208 | beacon_array[17] = PL_RCV_SC_DATA_COUNTER; |
ee12b079 | 289:9bd62b69874c | 209 | beacon_array[18] = TIME_LATEST_SPI_SPEED >>24; |
ee12b079 | 289:9bd62b69874c | 210 | beacon_array[19] = TIME_LATEST_SPI_SPEED >>16; |
ee12b079 | 289:9bd62b69874c | 211 | beacon_array[20] = TIME_LATEST_SPI_SPEED >>8; |
ee12b079 | 289:9bd62b69874c | 212 | beacon_array[21] = TIME_LATEST_SPI_SPEED; |
ee12b079 | 289:9bd62b69874c | 213 | beacon_array[22] = (uint8_t)RSSI_volatge; |
ee12b079 | 289:9bd62b69874c | 214 | |
chaithanyarss | 224:3ac1f91e0ebc | 215 | // Add SC bits |
ee12b079 | 289:9bd62b69874c | 216 | crc = crc16_gen(beacon_array,132); |
ee12b079 | 289:9bd62b69874c | 217 | beacon_array[132] = crc; |
ee12b079 | 289:9bd62b69874c | 218 | beacon_array[133] = crc >> 8; |
aniruddhv | 264:f7d8f9f361e3 | 219 | bool y; |
ee12b079 | 289:9bd62b69874c | 220 | y = FCTN_I2C_WRITE((char *)beacon_array,134); |
aniruddhv | 264:f7d8f9f361e3 | 221 | if(y == 0) |
ee12b079 | 289:9bd62b69874c | 222 | gPC.printf("long Bcn sent\n\r"); |
aniruddhv | 264:f7d8f9f361e3 | 223 | else |
aniruddhv | 264:f7d8f9f361e3 | 224 | gPC.printf("long Bcn not sent\r\n"); |
ee12b079 | 289:9bd62b69874c | 225 | gPC.printf("\rCompleted Beacon\n"); |
chaithanyarss | 251:c766afa330a3 | 226 | gMutex.unlock(); |
ee12b079 | 245:da9d1bd999da | 227 | } |
ee12b079 | 210:f4acf895b598 | 228 | } |
shreeshas95 | 103:b55559925dc1 | 229 | |
shreeshas95 | 103:b55559925dc1 | 230 | int quantiz(float start,float step,float x) |
shreeshas95 | 103:b55559925dc1 | 231 | { |
shreeshas95 | 103:b55559925dc1 | 232 | int y=(x-start)/step; |
shreeshas95 | 103:b55559925dc1 | 233 | if(y<=0)y=0; |
shreeshas95 | 103:b55559925dc1 | 234 | if(y>=255)y=255; |
shreeshas95 | 103:b55559925dc1 | 235 | return y; |
shreeshas95 | 103:b55559925dc1 | 236 | } |
shreeshas95 | 103:b55559925dc1 | 237 | |
ee12b079 | 210:f4acf895b598 | 238 | char saveMin(char x,char y) |
ee12b079 | 210:f4acf895b598 | 239 | { |
ee12b079 | 210:f4acf895b598 | 240 | return (y<x)?y:x; |
shreeshas95 | 103:b55559925dc1 | 241 | } |
ee12b079 | 210:f4acf895b598 | 242 | |
ee12b079 | 210:f4acf895b598 | 243 | char saveMax(char x,char y) |
ee12b079 | 210:f4acf895b598 | 244 | { |
ee12b079 | 210:f4acf895b598 | 245 | return (y>x)?y:x; |
shreeshas95 | 103:b55559925dc1 | 246 | } |
ee12b079 | 210:f4acf895b598 | 247 | |
ee12b079 | 210:f4acf895b598 | 248 | void minMaxHkData() |
chaithanyarss | 224:3ac1f91e0ebc | 249 | { |
chaithanyarss | 224:3ac1f91e0ebc | 250 | if(firstCount==true) { |
chaithanyarss | 224:3ac1f91e0ebc | 251 | for (int i = 0; i < 16; ++i) { |
chaithanyarss | 224:3ac1f91e0ebc | 252 | min_max_data.temp_min[i] = quant_data.temp_quant[i]; |
chaithanyarss | 224:3ac1f91e0ebc | 253 | min_max_data.temp_max[i] = quant_data.temp_quant[i]; |
shreeshas95 | 103:b55559925dc1 | 254 | } |
shreeshas95 | 103:b55559925dc1 | 255 | |
shreeshas95 | 103:b55559925dc1 | 256 | min_max_data.CDMS_temp_min=quant_data.CDMS_temp_quant; |
shreeshas95 | 103:b55559925dc1 | 257 | min_max_data.CDMS_temp_max=quant_data.CDMS_temp_quant; |
chaithanyarss | 224:3ac1f91e0ebc | 258 | } else { |
chaithanyarss | 224:3ac1f91e0ebc | 259 | for (int i = 0; i < 16; ++i) { |
chaithanyarss | 224:3ac1f91e0ebc | 260 | min_max_data.temp_min[i] = saveMin(min_max_data.temp_min[i],quant_data.temp_quant[i]); |
chaithanyarss | 224:3ac1f91e0ebc | 261 | min_max_data.temp_max[i] = saveMax(min_max_data.temp_max[i],quant_data.temp_quant[i]); |
shreeshas95 | 103:b55559925dc1 | 262 | } |
chaithanyarss | 224:3ac1f91e0ebc | 263 | |
ee12b079 | 210:f4acf895b598 | 264 | min_max_data.CDMS_temp_min = saveMin(min_max_data.CDMS_temp_min,quant_data.CDMS_temp_quant); |
ee12b079 | 210:f4acf895b598 | 265 | min_max_data.CDMS_temp_max = saveMax(min_max_data.CDMS_temp_max,quant_data.CDMS_temp_quant); |
chaithanyarss | 224:3ac1f91e0ebc | 266 | } |
shreeshas95 | 103:b55559925dc1 | 267 | firstCount=false; |
shreeshas95 | 103:b55559925dc1 | 268 | } |
shreeshas95 | 103:b55559925dc1 | 269 | |
shreeshas95 | 103:b55559925dc1 | 270 | void FCTN_CDMS_HK() |
shreeshas95 | 103:b55559925dc1 | 271 | { |
chaithanyarss | 224:3ac1f91e0ebc | 272 | |
shreeshas95 | 103:b55559925dc1 | 273 | int Iteration=0; |
ee12b079 | 289:9bd62b69874c | 274 | int resistance; |
shreeshas95 | 103:b55559925dc1 | 275 | |
shreeshas95 | 103:b55559925dc1 | 276 | SelectLinec0=0; |
shreeshas95 | 103:b55559925dc1 | 277 | SelectLinec1=0; |
shreeshas95 | 103:b55559925dc1 | 278 | SelectLinec2=0; |
shreeshas95 | 103:b55559925dc1 | 279 | SelectLinec3=0; |
shreeshas95 | 103:b55559925dc1 | 280 | |
chaithanyarss | 224:3ac1f91e0ebc | 281 | for(Iteration=0; Iteration<16; Iteration++) { |
shreeshas95 | 103:b55559925dc1 | 282 | |
shreeshas95 | 103:b55559925dc1 | 283 | actual_data.temp_actual[Iteration]=TempInput.read(); |
shreeshas95 | 103:b55559925dc1 | 284 | |
shreeshas95 | 103:b55559925dc1 | 285 | SelectLinec0=!(SelectLinec0); |
shreeshas95 | 103:b55559925dc1 | 286 | if(Iteration%2==1) |
shreeshas95 | 103:b55559925dc1 | 287 | SelectLinec1=!(SelectLinec1); |
shreeshas95 | 103:b55559925dc1 | 288 | if(Iteration%4==3) |
shreeshas95 | 103:b55559925dc1 | 289 | SelectLinec2=!(SelectLinec2); |
shreeshas95 | 103:b55559925dc1 | 290 | if(Iteration%8==7) |
chaithanyarss | 224:3ac1f91e0ebc | 291 | SelectLinec3=!(SelectLinec3); |
shreeshas95 | 103:b55559925dc1 | 292 | } |
shreeshas95 | 103:b55559925dc1 | 293 | |
ee12b079 | 210:f4acf895b598 | 294 | actual_data.CDMS_temp_actual=(-90.7*3.3*CDMS_temp_sensor.read())+190.1543; |
shreeshas95 | 103:b55559925dc1 | 295 | |
chaithanyarss | 224:3ac1f91e0ebc | 296 | for(Iteration=0; Iteration<16; Iteration++) { |
chaithanyarss | 224:3ac1f91e0ebc | 297 | |
chaithanyarss | 224:3ac1f91e0ebc | 298 | if(Iteration<14) { |
shreeshas95 | 103:b55559925dc1 | 299 | actual_data.temp_actual[Iteration]=actual_data.temp_actual[Iteration]*3.3; |
shreeshas95 | 103:b55559925dc1 | 300 | resistance=24000*actual_data.temp_actual[Iteration]/(3.3-actual_data.temp_actual[Iteration]); |
ee12b079 | 289:9bd62b69874c | 301 | |
chaithanyarss | 224:3ac1f91e0ebc | 302 | if(actual_data.temp_actual[Iteration]>1.47) { |
shreeshas95 | 103:b55559925dc1 | 303 | actual_data.temp_actual[Iteration]=3694/log(24.032242*resistance); |
chaithanyarss | 224:3ac1f91e0ebc | 304 | } else { |
chaithanyarss | 224:3ac1f91e0ebc | 305 | |
shreeshas95 | 103:b55559925dc1 | 306 | actual_data.temp_actual[Iteration]=3365.4/log(7.60573*resistance); |
shreeshas95 | 103:b55559925dc1 | 307 | } |
chaithanyarss | 224:3ac1f91e0ebc | 308 | } else |
shreeshas95 | 103:b55559925dc1 | 309 | actual_data.temp_actual[Iteration]=(-90.7*3.3*actual_data.temp_actual[Iteration])+190.1543; |
shreeshas95 | 103:b55559925dc1 | 310 | } |
shreeshas95 | 103:b55559925dc1 | 311 | |
chaithanyarss | 224:3ac1f91e0ebc | 312 | for(Iteration=0; Iteration<16; Iteration++) { |
shreeshas95 | 103:b55559925dc1 | 313 | |
chaithanyarss | 224:3ac1f91e0ebc | 314 | if(Iteration<14) { |
shreeshas95 | 103:b55559925dc1 | 315 | |
shreeshas95 | 103:b55559925dc1 | 316 | quant_data.temp_quant[Iteration]=quantiz(tstart_thermistor,tstep_thermistor,actual_data.temp_actual[Iteration]); |
chaithanyarss | 224:3ac1f91e0ebc | 317 | } else |
shreeshas95 | 103:b55559925dc1 | 318 | quant_data.temp_quant[Iteration]=quantiz(tstart,tstep,actual_data.temp_actual[Iteration]); |
shreeshas95 | 103:b55559925dc1 | 319 | } |
shreeshas95 | 103:b55559925dc1 | 320 | |
shreeshas95 | 103:b55559925dc1 | 321 | quant_data.CDMS_temp_quant=quantiz(tstart,tstep,actual_data.CDMS_temp_actual); |
shreeshas95 | 103:b55559925dc1 | 322 | |
shreeshas95 | 103:b55559925dc1 | 323 | minMaxHkData(); |
ee12b079 | 210:f4acf895b598 | 324 | } |
ee12b079 | 210:f4acf895b598 | 325 | |
ee12b079 | 210:f4acf895b598 | 326 | void FUNC_CDMS_GPIO_STATUS() //Polls the status of Input GPIO PINS |
ee12b079 | 210:f4acf895b598 | 327 | { |
chaithanyarss | 224:3ac1f91e0ebc | 328 | //V_A_PGOOD //TRZ EN |
chaithanyarss | 224:3ac1f91e0ebc | 329 | GPIO_STATUS=(V_A_PGOOD)?(GPIO_STATUS)||((uint16_t)(0x1<<15)):(GPIO_STATUS)&(~((uint16_t)(0x1<<15))); |
chaithanyarss | 224:3ac1f91e0ebc | 330 | //V_B_PGOOD_1 //3V3BPGOOD //$ |
chaithanyarss | 224:3ac1f91e0ebc | 331 | GPIO_STATUS=(V_B_PGOOD_1)?(GPIO_STATUS)||((uint16_t)(0x1<<14)):(GPIO_STATUS)&(~((uint16_t)(0x1<<14))); |
chaithanyarss | 224:3ac1f91e0ebc | 332 | //V_B_PGOOD_2 //3V3BEN //$ |
chaithanyarss | 224:3ac1f91e0ebc | 333 | GPIO_STATUS=(V_B_PGOOD_2)?(GPIO_STATUS)||((uint16_t)(0x1<<13)):(GPIO_STATUS)&(~((uint16_t)(0x1<<13))); |
chaithanyarss | 224:3ac1f91e0ebc | 334 | //V_C_PGOOD //3V3CPGOOD //$ |
chaithanyarss | 224:3ac1f91e0ebc | 335 | GPIO_STATUS=(V_C_PGOOD)?(GPIO_STATUS)||((uint16_t)(0x1<<12)):(GPIO_STATUS)&(~((uint16_t)(0x1<<12))); |
chaithanyarss | 224:3ac1f91e0ebc | 336 | //COMRX_OC_FAULT //$ |
chaithanyarss | 224:3ac1f91e0ebc | 337 | GPIO_STATUS=(COMRX_OC_FAULT)?(GPIO_STATUS)||((uint16_t)(0x1<<11)):(GPIO_STATUS)&(~((uint16_t)(0x1<<11))); |
chaithanyarss | 224:3ac1f91e0ebc | 338 | // COMTX_OC_FAULT //$ |
chaithanyarss | 290:3159ff1081a2 | 339 | GPIO_STATUS=(COM_TX_OC_FAULT)?(GPIO_STATUS)||((uint16_t)(0x1<<10)):(GPIO_STATUS)&(~((uint16_t)(0x1<<10))); |
chaithanyarss | 224:3ac1f91e0ebc | 340 | //BAE_OC_FAULT //$ |
chaithanyarss | 224:3ac1f91e0ebc | 341 | GPIO_STATUS=(BAE_OC_FAULT)?(GPIO_STATUS)||((uint16_t)(0x1<<9)):(GPIO_STATUS)&(~((uint16_t)(0x1<<9))); |
chaithanyarss | 224:3ac1f91e0ebc | 342 | //PL_GPIO_1_STATUS //$ |
chaithanyarss | 224:3ac1f91e0ebc | 343 | GPIO_STATUS=(PL_GPIO_1_STATUS)?(GPIO_STATUS)||((uint16_t)(0x1<<8)):(GPIO_STATUS)&(~((uint16_t)(0x1<<8))); |
chaithanyarss | 224:3ac1f91e0ebc | 344 | //PL_GPIO_2_STATUS //$ |
chaithanyarss | 224:3ac1f91e0ebc | 345 | GPIO_STATUS=(PL_GPIO_2_STATUS)?(GPIO_STATUS)||((uint16_t)(0x1<<7)):(GPIO_STATUS)&(~((uint16_t)(0x1<<7))); |
chaithanyarss | 224:3ac1f91e0ebc | 346 | //PL_GPIO_3_STATUS //$ |
chaithanyarss | 224:3ac1f91e0ebc | 347 | GPIO_STATUS=(PL_GPIO_3_STATUS)?(GPIO_STATUS)||((uint16_t)(0x1<<6)):(GPIO_STATUS)&(~((uint16_t)(0x1<<6))); |
chaithanyarss | 224:3ac1f91e0ebc | 348 | //PL_BEE_SW_OC_FAULT //to be verified |
chaithanyarss | 224:3ac1f91e0ebc | 349 | GPIO_STATUS=(PL_BEE_SW_OC_FAULT)?(GPIO_STATUS)||((uint16_t)(0x1<<5)):(GPIO_STATUS)&(~((uint16_t)(0x1<<5))); |
chaithanyarss | 224:3ac1f91e0ebc | 350 | //PL_EPS_LATCH_SW_OC_FAULT // to be verified |
chaithanyarss | 224:3ac1f91e0ebc | 351 | GPIO_STATUS=(PL_EPS_LATCH_SW_OC_FAULT)?(GPIO_STATUS)||((uint16_t)(0x1<<4)):(GPIO_STATUS)&(~((uint16_t)(0x1<<4))); |
chaithanyarss | 257:7d404e9dc9e2 | 352 | //EPS_V_C_EN_STATUS |
ee12b079 | 289:9bd62b69874c | 353 | GPIO_STATUS=(COM_RX_CNTRL)?(GPIO_STATUS)||((uint16_t)(0x1<<3)):(GPIO_STATUS)&(~((uint16_t)(0x1<<3))); |
chaithanyarss | 257:7d404e9dc9e2 | 354 | //EPS_V_D_EN_STATUS |
ee12b079 | 289:9bd62b69874c | 355 | GPIO_STATUS=(COM_TX_CNTRL)?(GPIO_STATUS)||((uint16_t)(0x1<<2)):(GPIO_STATUS)&(~((uint16_t)(0x1<<2))); |
ee12b079 | 245:da9d1bd999da | 356 | |
ee12b079 | 210:f4acf895b598 | 357 | } |
ee12b079 | 210:f4acf895b598 | 358 | |
ee12b079 | 210:f4acf895b598 | 359 | void VERIFY_COMRX() |
ee12b079 | 210:f4acf895b598 | 360 | { |
chaithanyarss | 224:3ac1f91e0ebc | 361 | //COMRX_OC_FAULT //$ |
ee12b079 | 289:9bd62b69874c | 362 | if(COMRX_OC_FAULT==0 && RSSI_volatge > 0.4) { |
chaithanyarss | 224:3ac1f91e0ebc | 363 | COMRX_STATUS = COMRX_ALIVE; |
chaithanyarss | 224:3ac1f91e0ebc | 364 | } else { |
chaithanyarss | 290:3159ff1081a2 | 365 | //RESET_COMRX(); |
chaithanyarss | 224:3ac1f91e0ebc | 366 | COMRX_RESET_COUNTER++; |
ee12b079 | 289:9bd62b69874c | 367 | if(COMRX_OC_FAULT==0 && RSSI_volatge > 0.4) |
chaithanyarss | 224:3ac1f91e0ebc | 368 | COMRX_STATUS = COMRX_ALIVE; |
chaithanyarss | 224:3ac1f91e0ebc | 369 | else |
chaithanyarss | 224:3ac1f91e0ebc | 370 | COMRX_STATUS = COMRX_DEAD; |
chaithanyarss | 224:3ac1f91e0ebc | 371 | } |
ee12b079 | 210:f4acf895b598 | 372 | } |
ee12b079 | 210:f4acf895b598 | 373 | |
chaithanyarss | 224:3ac1f91e0ebc | 374 | void VERIFY_RTC() |
chaithanyarss | 224:3ac1f91e0ebc | 375 | { |
ee12b079 | 289:9bd62b69874c | 376 | uint8_t response; |
ee12b079 | 289:9bd62b69874c | 377 | if(EN_RTC == 0x00) |
chaithanyarss | 260:65e1ace927fd | 378 | return; |
chaithanyarss | 224:3ac1f91e0ebc | 379 | gCS_RTC=1; |
chaithanyarss | 224:3ac1f91e0ebc | 380 | gCS_RTC=0; |
chaithanyarss | 224:3ac1f91e0ebc | 381 | spi.write(0x0F); |
ee12b079 | 289:9bd62b69874c | 382 | response = spi.write(0x00); |
ee12b079 | 289:9bd62b69874c | 383 | CDMS_RTC_BL = (response & 0x10) >>4; |
ee12b079 | 289:9bd62b69874c | 384 | if(response & 0x04 == 0x04) { |
chaithanyarss | 290:3159ff1081a2 | 385 | //RESET_RTC(); |
ee12b079 | 289:9bd62b69874c | 386 | RTC_STATUS = 0x01; |
chaithanyarss | 224:3ac1f91e0ebc | 387 | RTC_FAULTCOUNT++; |
chaithanyarss | 224:3ac1f91e0ebc | 388 | } |
chaithanyarss | 224:3ac1f91e0ebc | 389 | gCS_RTC=1; |
ee12b079 | 210:f4acf895b598 | 390 | } |
ee12b079 | 210:f4acf895b598 | 391 | |
ee12b079 | 210:f4acf895b598 | 392 | void HANDLE_HW_FAULTS() |
ee12b079 | 210:f4acf895b598 | 393 | { |
chaithanyarss | 224:3ac1f91e0ebc | 394 | HANDLE_HW_FAULT_SD(); |
chaithanyarss | 224:3ac1f91e0ebc | 395 | HANDLE_HW_FAULT_BAE(); |
chaithanyarss | 224:3ac1f91e0ebc | 396 | HANDLE_HW_FAULT_PL(); |
ee12b079 | 210:f4acf895b598 | 397 | } |
ee12b079 | 210:f4acf895b598 | 398 | |
ee12b079 | 210:f4acf895b598 | 399 | void HANDLE_HW_FAULT_SD() |
ee12b079 | 210:f4acf895b598 | 400 | { |
chaithanyarss | 224:3ac1f91e0ebc | 401 | if(SD_STATUS != DEVICE_DISABLED) { |
ee12b079 | 289:9bd62b69874c | 402 | if(SD_STATUS == DEVICE_OC_FAULT){ |
ee12b079 | 289:9bd62b69874c | 403 | gPC.printf("Switching on SD card"); |
ee12b079 | 289:9bd62b69874c | 404 | SD_SW_EN_DS = 1; //powering on SD |
ee12b079 | 289:9bd62b69874c | 405 | wait_ms(10); |
ee12b079 | 289:9bd62b69874c | 406 | } |
ee12b079 | 289:9bd62b69874c | 407 | |
chaithanyarss | 224:3ac1f91e0ebc | 408 | if(SD_OC_FAULT == 0) { |
ee12b079 | 289:9bd62b69874c | 409 | gPC.printf("Switching off SD card"); |
ee12b079 | 289:9bd62b69874c | 410 | SD_SW_EN_DS = 0; //switching off SD card |
chaithanyarss | 224:3ac1f91e0ebc | 411 | SD_FAULTCOUNT++; |
chaithanyarss | 224:3ac1f91e0ebc | 412 | SD_STATUS = (SD_FAULTCOUNT == 3) ? DEVICE_DISABLED :DEVICE_OC_FAULT; |
ee12b079 | 289:9bd62b69874c | 413 | if(SD_FAULTCOUNT == 3){ |
ee12b079 | 289:9bd62b69874c | 414 | FCTN_CDMS_WR_FLASH(2,DEVICE_DISABLED); |
ee12b079 | 289:9bd62b69874c | 415 | gPC.printf("Declaring SD card permanantly Disabled"); |
ee12b079 | 289:9bd62b69874c | 416 | } |
chaithanyarss | 224:3ac1f91e0ebc | 417 | } else { |
chaithanyarss | 224:3ac1f91e0ebc | 418 | SD_STATUS = DEVICE_POWERED; |
ee12b079 | 289:9bd62b69874c | 419 | if(SD_STATUS != DEVICE_POWERED) |
ee12b079 | 289:9bd62b69874c | 420 | FCTN_CDMS_WR_FLASH(2,DEVICE_POWERED); |
chaithanyarss | 224:3ac1f91e0ebc | 421 | SD_FAULTCOUNT = 0; |
chaithanyarss | 224:3ac1f91e0ebc | 422 | } |
ee12b079 | 210:f4acf895b598 | 423 | } |
ee12b079 | 210:f4acf895b598 | 424 | } |
ee12b079 | 210:f4acf895b598 | 425 | |
ee12b079 | 210:f4acf895b598 | 426 | void HANDLE_HW_FAULT_BAE() |
ee12b079 | 210:f4acf895b598 | 427 | { |
chaithanyarss | 224:3ac1f91e0ebc | 428 | if(BAE_STATUS != DEVICE_DISABLED) { |
ee12b079 | 289:9bd62b69874c | 429 | if(BAE_STATUS == DEVICE_OC_FAULT){ |
ee12b079 | 289:9bd62b69874c | 430 | gPC.printf("Switching on BAE"); |
ee12b079 | 289:9bd62b69874c | 431 | BAE_SW_EN_DS = 1; //Power ON BAE |
ee12b079 | 289:9bd62b69874c | 432 | wait_ms(10); |
ee12b079 | 289:9bd62b69874c | 433 | } |
ee12b079 | 289:9bd62b69874c | 434 | |
ee12b079 | 289:9bd62b69874c | 435 | if(BAE_OC_FAULT == 0) { |
ee12b079 | 289:9bd62b69874c | 436 | gPC.printf("Switching off BAE"); |
ee12b079 | 289:9bd62b69874c | 437 | BAE_SW_EN_DS = 0; //Switch OFF BAE |
chaithanyarss | 224:3ac1f91e0ebc | 438 | BAE_FAULTCOUNT++; |
chaithanyarss | 224:3ac1f91e0ebc | 439 | BAE_STATUS = (BAE_FAULTCOUNT == 3)?DEVICE_DISABLED:DEVICE_OC_FAULT; |
ee12b079 | 289:9bd62b69874c | 440 | if(BAE_FAULTCOUNT == 3){ |
ee12b079 | 289:9bd62b69874c | 441 | FCTN_CDMS_WR_FLASH(1,DEVICE_DISABLED); |
ee12b079 | 289:9bd62b69874c | 442 | gPC.printf("Declaring BAE permanantly Disabled"); |
ee12b079 | 289:9bd62b69874c | 443 | } |
chaithanyarss | 224:3ac1f91e0ebc | 444 | } else { |
chaithanyarss | 224:3ac1f91e0ebc | 445 | BAE_STATUS = DEVICE_POWERED; |
ee12b079 | 289:9bd62b69874c | 446 | if(SD_STATUS != DEVICE_POWERED); |
ee12b079 | 289:9bd62b69874c | 447 | FCTN_CDMS_WR_FLASH(1,DEVICE_POWERED); |
chaithanyarss | 224:3ac1f91e0ebc | 448 | BAE_FAULTCOUNT = 0; |
chaithanyarss | 224:3ac1f91e0ebc | 449 | } |
ee12b079 | 210:f4acf895b598 | 450 | } |
ee12b079 | 210:f4acf895b598 | 451 | } |
ee12b079 | 210:f4acf895b598 | 452 | |
ee12b079 | 210:f4acf895b598 | 453 | void HANDLE_HW_FAULT_PL() |
ee12b079 | 210:f4acf895b598 | 454 | { |
chaithanyarss | 224:3ac1f91e0ebc | 455 | if(PL_STATUS != DEVICE_DISABLED) { |
ee12b079 | 245:da9d1bd999da | 456 | if(PL_STATUS == DEVICE_OC_FAULT){ |
ee12b079 | 289:9bd62b69874c | 457 | gPC.printf("Switching on PL_BEE"); |
ee12b079 | 245:da9d1bd999da | 458 | PYLD_DFF_CLK = 0; |
ee12b079 | 245:da9d1bd999da | 459 | PYLD_DFF = 1; // Switching ON PL |
ee12b079 | 245:da9d1bd999da | 460 | wait_us(1); |
ee12b079 | 245:da9d1bd999da | 461 | PYLD_DFF_CLK = 1; |
ee12b079 | 245:da9d1bd999da | 462 | wait_us(1); |
ee12b079 | 245:da9d1bd999da | 463 | PYLD_DFF_CLK = 0; |
ee12b079 | 245:da9d1bd999da | 464 | wait_us(1); |
ee12b079 | 245:da9d1bd999da | 465 | } |
chaithanyarss | 224:3ac1f91e0ebc | 466 | if(PL_BEE_SW_OC_FAULT == 0) { // if OC Fault |
ee12b079 | 289:9bd62b69874c | 467 | gPC.printf("Switching off PL_BEE"); |
ee12b079 | 245:da9d1bd999da | 468 | PYLD_DFF_CLK = 0; |
ee12b079 | 245:da9d1bd999da | 469 | PYLD_DFF = 0; //Switching OFF PL |
ee12b079 | 245:da9d1bd999da | 470 | wait_us(1); |
ee12b079 | 245:da9d1bd999da | 471 | PYLD_DFF_CLK = 1; |
ee12b079 | 245:da9d1bd999da | 472 | wait_us(1); |
ee12b079 | 245:da9d1bd999da | 473 | PYLD_DFF_CLK = 0; |
ee12b079 | 245:da9d1bd999da | 474 | wait_us(1); |
chaithanyarss | 224:3ac1f91e0ebc | 475 | PL_FAULTCOUNT++; |
chaithanyarss | 224:3ac1f91e0ebc | 476 | PL_STATUS = (PL_FAULTCOUNT == 3)?DEVICE_DISABLED:DEVICE_OC_FAULT; |
ee12b079 | 289:9bd62b69874c | 477 | if(PL_FAULTCOUNT == 3){ |
ee12b079 | 289:9bd62b69874c | 478 | FCTN_CDMS_WR_FLASH(3,DEVICE_DISABLED); |
ee12b079 | 289:9bd62b69874c | 479 | gPC.printf("Declaring PL_BEE permanantly Disabled"); |
ee12b079 | 289:9bd62b69874c | 480 | } |
chaithanyarss | 224:3ac1f91e0ebc | 481 | } else { |
ee12b079 | 245:da9d1bd999da | 482 | if(PL_STATUS == DEVICE_OC_FAULT){ |
ee12b079 | 289:9bd62b69874c | 483 | gPC.printf("Switching off PL_BEE"); |
ee12b079 | 245:da9d1bd999da | 484 | PYLD_DFF_CLK = 0; |
ee12b079 | 245:da9d1bd999da | 485 | PYLD_DFF = 0; //Switching OFF PL |
ee12b079 | 245:da9d1bd999da | 486 | wait_us(1); |
ee12b079 | 245:da9d1bd999da | 487 | PYLD_DFF_CLK = 1; |
ee12b079 | 245:da9d1bd999da | 488 | wait_us(1); |
ee12b079 | 245:da9d1bd999da | 489 | PYLD_DFF_CLK = 0; |
ee12b079 | 245:da9d1bd999da | 490 | wait_us(1); |
ee12b079 | 245:da9d1bd999da | 491 | } |
chaithanyarss | 224:3ac1f91e0ebc | 492 | PL_STATUS = DEVICE_ENABLED; |
ee12b079 | 289:9bd62b69874c | 493 | if(PL_STATUS != DEVICE_ENABLED) |
ee12b079 | 289:9bd62b69874c | 494 | FCTN_CDMS_WR_FLASH(3,DEVICE_ENABLED); |
chaithanyarss | 224:3ac1f91e0ebc | 495 | PL_FAULTCOUNT = 0; |
chaithanyarss | 224:3ac1f91e0ebc | 496 | } |
ee12b079 | 210:f4acf895b598 | 497 | } |
ee12b079 | 210:f4acf895b598 | 498 | } |
chaithanyarss | 224:3ac1f91e0ebc | 499 | |
ee12b079 | 210:f4acf895b598 | 500 | void COLLECT_CDMS_RAM() |
chaithanyarss | 224:3ac1f91e0ebc | 501 | { |
chaithanyarss | 290:3159ff1081a2 | 502 | CDMS_RAM[0] = ((PL_INIT_STATUS<<7)&0x80)|((PL_MAIN_status<<6)&0x40)|((PL_LOW_POWER<<5)&0x20)|((PL_STATE<<3)&0x18)|(PL_STATUS&0x07); |
chaithanyarss | 257:7d404e9dc9e2 | 503 | CDMS_RAM[1] = ((PL_RCV_SC_DATA_STATUS<<7)&0x80)|((COM_SESSION<<6)&0x40)|((COM_RX<<5)&0x20)|((RF_SW_STATUS<<4)&0x10)|((COM_TX<<3)&0x08)|((COM_TX_STATUS<<2)&0x04)|((COM_MNG_TMTC<<1)&0x02)|(EN_CDMS_HK&0x01); |
chaithanyarss | 257:7d404e9dc9e2 | 504 | CDMS_RAM[2] = ((EN_PL<<7)&0x80)|((EN_RCV_SC<<6)&0x40)|((CDMS_INIT_STATUS<<5)&0x20)|((CDMS_HK_MAIN_STATUS<<4)&0x10)|((CDMS_HK_STATUS<<2)&0x0C)|((COM_RX_STATUS<<1)&0x02)|(CDMS_RTC_BL&0x01); |
chaithanyarss | 257:7d404e9dc9e2 | 505 | CDMS_RAM[3] = CDMS_I2C_ERR_SPEED_COUNTER >> 8; |
chaithanyarss | 257:7d404e9dc9e2 | 506 | CDMS_RAM[4] = CDMS_I2C_ERR_SPEED_COUNTER; |
chaithanyarss | 257:7d404e9dc9e2 | 507 | CDMS_RAM[5] = CDMS_I2C_ERR_BAE_COUNTER >> 8; |
chaithanyarss | 257:7d404e9dc9e2 | 508 | CDMS_RAM[6] = CDMS_I2C_ERR_BAE_COUNTER; |
chaithanyarss | 257:7d404e9dc9e2 | 509 | CDMS_RAM[7] = CDMS_HK_MAIN_COUNTER >> 8; |
chaithanyarss | 257:7d404e9dc9e2 | 510 | CDMS_RAM[8] = CDMS_HK_MAIN_COUNTER; |
chaithanyarss | 257:7d404e9dc9e2 | 511 | CDMS_RAM[9] = PL_MAIN_COUNTER >> 8; |
chaithanyarss | 257:7d404e9dc9e2 | 512 | CDMS_RAM[10] = PL_MAIN_COUNTER; |
chaithanyarss | 257:7d404e9dc9e2 | 513 | CDMS_RAM[11] = PL_RCV_SC_DATA_COUNTER >> 8; |
chaithanyarss | 257:7d404e9dc9e2 | 514 | CDMS_RAM[12] = PL_RCV_SC_DATA_COUNTER; |
chaithanyarss | 257:7d404e9dc9e2 | 515 | CDMS_RAM[13] = COMRX_RESET_COUNTER >> 8; |
chaithanyarss | 257:7d404e9dc9e2 | 516 | CDMS_RAM[14] = COMRX_RESET_COUNTER; |
chaithanyarss | 257:7d404e9dc9e2 | 517 | CDMS_RAM[15] = CDMS_WR_SD_FAULT_COUNTER >> 8; |
chaithanyarss | 257:7d404e9dc9e2 | 518 | CDMS_RAM[16] = CDMS_WR_SD_FAULT_COUNTER; |
chaithanyarss | 257:7d404e9dc9e2 | 519 | CDMS_RAM[17] = SD_LIB_WRITES >> 8; |
chaithanyarss | 257:7d404e9dc9e2 | 520 | CDMS_RAM[18] = SD_LIB_WRITES; |
chaithanyarss | 257:7d404e9dc9e2 | 521 | for(int i = 0; i<4; i++) |
chaithanyarss | 257:7d404e9dc9e2 | 522 | CDMS_RAM[19+i] = TIME_LATEST_RTC >> i*8; |
chaithanyarss | 257:7d404e9dc9e2 | 523 | for(int i = 0; i<4; i++) |
chaithanyarss | 257:7d404e9dc9e2 | 524 | CDMS_RAM[23+i] = TIME_LATEST_I2C_BAE >> i*8; |
chaithanyarss | 257:7d404e9dc9e2 | 525 | for(int i = 0; i<4; i++) |
chaithanyarss | 257:7d404e9dc9e2 | 526 | CDMS_RAM[27+i] = TIME_LATEST_I2C_SPEED >> i*8; |
chaithanyarss | 257:7d404e9dc9e2 | 527 | for(int i = 0; i<4; i++) |
chaithanyarss | 257:7d404e9dc9e2 | 528 | CDMS_RAM[31+i] = TIME_LATEST_SD_WR >> i*8; |
chaithanyarss | 257:7d404e9dc9e2 | 529 | for(int i = 0; i<4; i++) |
chaithanyarss | 257:7d404e9dc9e2 | 530 | CDMS_RAM[35+i] = TIME_LATEST_SD_RD >> i*8; |
chaithanyarss | 257:7d404e9dc9e2 | 531 | for(int i = 0; i<4; i++) |
chaithanyarss | 257:7d404e9dc9e2 | 532 | CDMS_RAM[39+i] = TIME_LATEST_SPI_SPEED >> i*8; |
chaithanyarss | 257:7d404e9dc9e2 | 533 | for(int i = 0; i<4; i++) |
chaithanyarss | 257:7d404e9dc9e2 | 534 | CDMS_RAM[43+i] = FSC_CURRENT[1] >> i*8; |
chaithanyarss | 257:7d404e9dc9e2 | 535 | for(int i = 0; i<4; i++) |
chaithanyarss | 257:7d404e9dc9e2 | 536 | CDMS_RAM[47+i] = FSC_LAST[1] >> i*8; |
chaithanyarss | 257:7d404e9dc9e2 | 537 | for(int i = 0; i<4; i++) |
chaithanyarss | 257:7d404e9dc9e2 | 538 | CDMS_RAM[51+i] = FSC_CURRENT[2] >> i*8; |
chaithanyarss | 257:7d404e9dc9e2 | 539 | for(int i = 0; i<4; i++) |
chaithanyarss | 257:7d404e9dc9e2 | 540 | CDMS_RAM[55+i] = FSC_LAST[2] >> i*8; |
chaithanyarss | 257:7d404e9dc9e2 | 541 | for(int i = 0; i<4; i++) |
chaithanyarss | 257:7d404e9dc9e2 | 542 | CDMS_RAM[59+i] = FSC_CURRENT[3] >> i*8; |
chaithanyarss | 257:7d404e9dc9e2 | 543 | for(int i = 0; i<4; i++) |
chaithanyarss | 257:7d404e9dc9e2 | 544 | CDMS_RAM[63+i] = FSC_LAST[3] >> i*8; |
chaithanyarss | 257:7d404e9dc9e2 | 545 | for(int i = 0; i<4; i++) |
chaithanyarss | 257:7d404e9dc9e2 | 546 | CDMS_RAM[67+i] = FSC_CURRENT[4] >> i*8; |
chaithanyarss | 257:7d404e9dc9e2 | 547 | for(int i = 0; i<4; i++) |
chaithanyarss | 257:7d404e9dc9e2 | 548 | CDMS_RAM[71+i] = FSC_LAST[4] >> i*8; |
chaithanyarss | 257:7d404e9dc9e2 | 549 | for(int i = 0; i<4; i++) |
chaithanyarss | 257:7d404e9dc9e2 | 550 | CDMS_RAM[75+i] = FSC_CURRENT[5] >> i*8; |
chaithanyarss | 257:7d404e9dc9e2 | 551 | for(int i = 0; i<4; i++) |
chaithanyarss | 257:7d404e9dc9e2 | 552 | CDMS_RAM[79+i] = FSC_LAST[5] >> i*8; |
chaithanyarss | 257:7d404e9dc9e2 | 553 | CDMS_RAM[83] = 0x00; |
shreeshas95 | 103:b55559925dc1 | 554 | } |