CDMS code for testing sbc

Dependencies:   FreescaleIAP SimpleDMA mbed-rtos mbed

Fork of CDMS_CODE by shubham c

Committer:
chaithanyarss
Date:
Thu Jun 30 14:00:33 2016 +0000
Revision:
206:fba4aeebf004
Parent:
192:2c7263530c57
Child:
207:28a07943dded
For integrating PL_Main with rest of CDMS code

Who changed what in which revision?

UserRevisionLine numberNew contents of line
shreeshas95 0:f016e9e8d48b 1 // **************DEFINITIONS*********************
aniruddhv 69:20f09a0c3fd2 2
ee12b079 133:56d37aa8a011 3 #define bypass_adf 1
aniruddhv 69:20f09a0c3fd2 4
shreeshas95 0:f016e9e8d48b 5 // COM_RX
shreeshas95 5:ab276a17ca07 6 #define RX_TIMEOUT_LIMIT 0.5
ee12b079 81:1a39e9e14771 7 //#define COM_RX_UART_TX PTE20 // For bypassing RX1M (SET BAUD RATE 1200) #define COM_RX_UART_TX USBTX
ee12b079 81:1a39e9e14771 8 //#define COM_RX_UART_RX PTE21 // For bypassing RX1M (SET BAUD RATE 1200) #define COM_RX_UART_RX USBRX
ee12b079 81:1a39e9e14771 9
ee12b079 81:1a39e9e14771 10 #define COM_RX_UART_TX USBTX
ee12b079 81:1a39e9e14771 11 #define COM_RX_UART_RX USBRX
aniruddhv 56:a88e16f6c18e 12
shreeshas95 0:f016e9e8d48b 13 // COMMON SPI
chaithanyarss 206:fba4aeebf004 14 #define SPI_MOSI PTE1
chaithanyarss 206:fba4aeebf004 15 #define SPI_MISO PTE3
chaithanyarss 206:fba4aeebf004 16 #define SPI_CLK PTE2
shreeshas95 1:a0055b3280c8 17 #define SPI_CS_ADF PTA15
chaithanyarss 206:fba4aeebf004 18 #define SPI_CS_SDC PIN20
ee12b079 114:9fb55057b13f 19 #define SPI_CS_RTC PIN26
shreeshas95 2:2caf2a9a13aa 20
shreeshas95 4:104dd82c99b8 21 // COM_TX
shreeshas95 4:104dd82c99b8 22 #define COM_TX_CONFIG_LIMIT 3
aniruddhv 52:0bd68655c651 23 #define COM_TX_TICKER_LIMIT 32
shreeshas95 4:104dd82c99b8 24
aniruddhv 137:489a93a04d6b 25 // ADF INTERRUPT
shreeshas95 2:2caf2a9a13aa 26 #define ADF_IRQ PTA14
chaithanyarss 206:fba4aeebf004 27
chaithanyarss 206:fba4aeebf004 28 //I2C - Payload to CDMS (need to change while using CDMS hardware);
chaithanyarss 206:fba4aeebf004 29 I2C master(PIN32,PIN31);
chaithanyarss 206:fba4aeebf004 30 DigitalIn PL_I2C_Intr(PTC13);
chaithanyarss 206:fba4aeebf004 31 DigitalOut PL_I2C_GPIO(PTC1);
chaithanyarss 206:fba4aeebf004 32
chaithanyarss 206:fba4aeebf004 33 //I2C - CDMS to BAE
chaithanyarss 206:fba4aeebf004 34 DigitalIn BAE_I2C_GPIO(PIN39);
chaithanyarss 206:fba4aeebf004 35 DigitalOut CDMS_I2C_GPIO(PIN67);
shreeshas95 0:f016e9e8d48b 36
shreeshas95 0:f016e9e8d48b 37 // TC LIST
shreeshas95 2:2caf2a9a13aa 38 #define TCL_STATE_INCOMPLETE 0x00
shreeshas95 5:ab276a17ca07 39 #define TCL_STATE_ABORTED 0x03
shreeshas95 5:ab276a17ca07 40 #define TCL_STATE_EXECUTING 0x04
shreeshas95 5:ab276a17ca07 41 #define TCL_STATE_COMPLETED 0x05
shreeshas95 5:ab276a17ca07 42 #define TCL_STATE_EXCEEDED_LIMIT 0x06
shreeshas95 0:f016e9e8d48b 43
shreeshas95 0:f016e9e8d48b 44 // LIST OF FLAGS
shreeshas95 2:2caf2a9a13aa 45 #define UART_INT_FLAG 0x0001
shreeshas95 2:2caf2a9a13aa 46 #define NEW_TC_RECEIVED 0x0002
shreeshas95 2:2caf2a9a13aa 47 #define COM_SESSION_FLAG 0x0004
shreeshas95 2:2caf2a9a13aa 48 #define COM_RX_FLAG 0x0008
shreeshas95 2:2caf2a9a13aa 49 #define COM_MNG_TMTC_RUNNING_FLAG 0x0010
shreeshas95 2:2caf2a9a13aa 50 #define COM_SESSION_VALIDITY 0x0020
shreeshas95 2:2caf2a9a13aa 51 #define ALL_CRC_PASS_FLAG 0x0040
shreeshas95 2:2caf2a9a13aa 52 #define COM_PA_HOT_FLAG 0x0080
shreeshas95 2:2caf2a9a13aa 53 #define COM_TX_FLAG 0x0100
shreeshas95 6:79d422d1ed42 54 #define COM_SESSION_TIMEOUT_FLAG 0x0200
aniruddhv 137:489a93a04d6b 55 #define COM_AUTO_POWER_OFF_BAE_FLAG 0x0400
aniruddhv 137:489a93a04d6b 56 #define BAE_SW_EN_FLAG 0x0800
aniruddhv 137:489a93a04d6b 57 #define RF_SW_STATUS_FLAG 0x1000
aniruddhv 137:489a93a04d6b 58 #define COM_INIT_STATUS_FLAG 0x2000
aniruddhv 155:ca7365c03fd7 59 #define COM_TX_STATUS_FLAG 0x4000
aniruddhv 137:489a93a04d6b 60
aniruddhv 137:489a93a04d6b 61 //RF relay STATUS
aniruddhv 137:489a93a04d6b 62 #define RF_COM_TX 0
aniruddhv 137:489a93a04d6b 63 #define RF_BCN 1
shreeshas95 0:f016e9e8d48b 64
shreeshas95 0:f016e9e8d48b 65 // COM_MNG_TMTC THREAD
shreeshas95 6:79d422d1ed42 66 #define SESSION_TIME_LIMIT 1500
shreeshas95 0:f016e9e8d48b 67 #define COM_MNG_TMTC_SIGNAL_UART_INT 0x01
shreeshas95 0:f016e9e8d48b 68 #define COM_MNG_TMTC_SIGNAL_ADF_NSD 0x02
shreeshas95 0:f016e9e8d48b 69 #define COM_MNG_TMTC_SIGNAL_ADF_SD 0x03
ee12b079 93:4d76de54a699 70 #define SCIENCE_SIGNAL 0x04
shreeshas95 0:f016e9e8d48b 71 // COM_MNG_TMTC
shreeshas95 2:2caf2a9a13aa 72 #define COM_PA_COOLING_TIME_LIMIT 20
shreeshas95 4:104dd82c99b8 73 #define COM_MAX_TC_LIMIT 200
shreeshas95 4:104dd82c99b8 74 #define TM_ACK_CODE_INDEX 2
shreeshas95 5:ab276a17ca07 75 #define CRC_FAIL_NACK_CODE 0x01
shreeshas95 2:2caf2a9a13aa 76
shreeshas95 2:2caf2a9a13aa 77 // call sign
shreeshas95 2:2caf2a9a13aa 78 #define PSC_CALLSIGN 0x00
shreeshas95 2:2caf2a9a13aa 79 #define APID_CALLSIGN 0x00
shreeshas95 2:2caf2a9a13aa 80
shreeshas95 2:2caf2a9a13aa 81 // max value of telecommands in a tcl
shreeshas95 2:2caf2a9a13aa 82 #define TCL_OVERFLOW_CONSTANT 256
shreeshas95 4:104dd82c99b8 83 #define TM_OVERFLOW_CONSTANT 256
shreeshas95 2:2caf2a9a13aa 84
shreeshas95 0:f016e9e8d48b 85 // starting value of packet sequence count at each pass
shreeshas95 0:f016e9e8d48b 86 #define PSC_START_VALUE 1
shreeshas95 0:f016e9e8d48b 87
shreeshas95 0:f016e9e8d48b 88 // APID list
aniruddhv 52:0bd68655c651 89 #define APID_COM 0
shreeshas95 0:f016e9e8d48b 90 #define APID_BAE 1
shreeshas95 0:f016e9e8d48b 91 #define APID_CDMS 2
shreeshas95 0:f016e9e8d48b 92 #define APID_SPEED 3
shreeshas95 0:f016e9e8d48b 93
aniruddhv 52:0bd68655c651 94 //SERVICE
aniruddhv 52:0bd68655c651 95 #define SERVICE_OBOSC 0xB
aniruddhv 52:0bd68655c651 96 #define SERVICE_OBSRS 0xF
aniruddhv 52:0bd68655c651 97
shreeshas95 0:f016e9e8d48b 98 // HIGH PRIORITY TC - priority list
shreeshas95 0:f016e9e8d48b 99 // not correct values here
shreeshas95 0:f016e9e8d48b 100 #define HPTC1 5
shreeshas95 0:f016e9e8d48b 101 #define HPTC2 6
shreeshas95 0:f016e9e8d48b 102 // Add more entries above
shreeshas95 0:f016e9e8d48b 103
shreeshas95 0:f016e9e8d48b 104 // SIZE of tc in bytes
shreeshas95 0:f016e9e8d48b 105 #define TC_SHORT_SIZE 11
shreeshas95 0:f016e9e8d48b 106 #define TC_LONG_SIZE 135
shreeshas95 0:f016e9e8d48b 107
shreeshas95 0:f016e9e8d48b 108 // TMID list
shreeshas95 0:f016e9e8d48b 109 #define TMID_ACK_L1 0xA
shreeshas95 4:104dd82c99b8 110 #define TMID_ACK_L234 0xB
shreeshas95 4:104dd82c99b8 111 #define TMID_TCL 0x7
shreeshas95 4:104dd82c99b8 112 #define TMID_CALL_SIGN 0xE
shreeshas95 0:f016e9e8d48b 113
shreeshas95 0:f016e9e8d48b 114 // OBOSC SERVICE SUBTYPE
shreeshas95 4:104dd82c99b8 115 #define OBOSC_TCL_MAX_SHORT_SIZE 11
shreeshas95 4:104dd82c99b8 116 #define OBOSC_LONG_TC_FIRST_HALF_SIZE 67
shreeshas95 4:104dd82c99b8 117 #define OBOSC_LONG_TC_SECOND_HALF_SIZE 68
shreeshas95 4:104dd82c99b8 118 #define OBOSC_TCL_TAG_LONG_FIRST_HALF 0x10
shreeshas95 4:104dd82c99b8 119 #define OBOSC_TCL_TAG_LONG_SECOND_HALF 0x11
shreeshas95 4:104dd82c99b8 120
shreeshas95 0:f016e9e8d48b 121 #define OBOSC_SUB_DISABLE 0x01
shreeshas95 0:f016e9e8d48b 122 #define OBOSC_SUB_RETRY 0x05
shreeshas95 4:104dd82c99b8 123 #define OBOSC_SUB_REP_TCLD 0x06
shreeshas95 0:f016e9e8d48b 124 #define OBOSC_SUB_REP_LE 0x0F
shreeshas95 0:f016e9e8d48b 125 #define OBOSC_SUB_RESET 0x07
shreeshas95 0:f016e9e8d48b 126
shreeshas95 101:bece931236a2 127 // PAYLOAD or SCIENCE
shreeshas95 101:bece931236a2 128 #define PAYLOAD_BUFFER_LENGTH 6723
ee12b079 113:b8991d9e3b6c 129 #define PAY_SPI_MOSI PTE18
ee12b079 113:b8991d9e3b6c 130 #define PAY_SPI_MISO PTE19
ee12b079 113:b8991d9e3b6c 131 #define PAY_SPI_CLK PTE17
ee12b079 113:b8991d9e3b6c 132 #define PAY_SPI_CS PTE16
aniruddhv 144:4c20fcc105ce 133
aniruddhv 144:4c20fcc105ce 134 //BEACON
aniruddhv 144:4c20fcc105ce 135 #define BCN_APID_SOURCE 0x41
aniruddhv 144:4c20fcc105ce 136 #define BCN_SERVICE 0x81
shreeshas95 101:bece931236a2 137
aniruddhv 144:4c20fcc105ce 138 //BAE
aniruddhv 144:4c20fcc105ce 139 #define BAE_APID_SOURCE 0x81
aniruddhv 144:4c20fcc105ce 140 #define BAE_SERVICE 0x81
aniruddhv 144:4c20fcc105ce 141 #define BAE_POWER_ON_PID 0x13
aniruddhv 144:4c20fcc105ce 142 #define BAE_POWER_OFF_PID 0x23
aniruddhv 144:4c20fcc105ce 143 #define BAE_RESET_PID 0x33
aniruddhv 144:4c20fcc105ce 144
aniruddhv 144:4c20fcc105ce 145 //RF RELAY
aniruddhv 144:4c20fcc105ce 146 #define RF_RELAY_CNTRL_TX PTA7
aniruddhv 144:4c20fcc105ce 147 #define RF_RELAY_CNTRL_BCN PTA12
shreeshas95 3:6c81fc8834e2 148
chaithanyarss 192:2c7263530c57 149 //CDMS HK
chaithanyarss 192:2c7263530c57 150 #define COMRX_ALIVE 0xFF;
chaithanyarss 192:2c7263530c57 151 #define COMRX_DEAD 0x00;
chaithanyarss 192:2c7263530c57 152 #define DEVICE_ENABLED 0x00;
chaithanyarss 192:2c7263530c57 153 #define DEVICE_POWERED 0x01;
chaithanyarss 192:2c7263530c57 154 #define DEVICE_OC_FAULT 0x02;
chaithanyarss 192:2c7263530c57 155 #define DEVICE_DISABLED 0x03;
chaithanyarss 192:2c7263530c57 156
shreeshas95 0:f016e9e8d48b 157 // ****************GLOBAL VARIABLES******************
shreeshas95 0:f016e9e8d48b 158 // DEBUG
shreeshas95 0:f016e9e8d48b 159 Serial gPC( USBTX, USBRX );
shreeshas95 4:104dd82c99b8 160 DigitalOut gLEDR(LED_RED);
shreeshas95 4:104dd82c99b8 161 DigitalOut gLEDG(LED_GREEN);
shreeshas95 0:f016e9e8d48b 162
shreeshas95 0:f016e9e8d48b 163 // COM_RX
shreeshas95 0:f016e9e8d48b 164 RawSerial RX1M( COM_RX_UART_TX, COM_RX_UART_RX );
shreeshas95 0:f016e9e8d48b 165 COM_RX_DATA_NODE *gRX_HEAD_DATA_NODE = NULL;
shreeshas95 0:f016e9e8d48b 166 COM_RX_DATA_NODE *gRX_CURRENT_DATA_NODE = NULL;
shreeshas95 2:2caf2a9a13aa 167 // uint8_t *gRX_CURRENT_PTR = NULL;
shreeshas95 0:f016e9e8d48b 168 uint32_t gRX_COUNT = 0;
shreeshas95 0:f016e9e8d48b 169 uint16_t gTOTAL_INCORRECT_SIZE_TC = 0x00;
shreeshas95 0:f016e9e8d48b 170 uint16_t gTOTAL_CRC_FAIL_TC = 0x00;
shreeshas95 2:2caf2a9a13aa 171 uint16_t gTOTAL_REPEATED_TC = 0x00;
shreeshas95 0:f016e9e8d48b 172
shreeshas95 0:f016e9e8d48b 173 // COMMON SPI
shreeshas95 0:f016e9e8d48b 174 SPI spi( SPI_MOSI, SPI_MISO, SPI_CLK );
shreeshas95 1:a0055b3280c8 175 DigitalOut gCS_ADF(SPI_CS_ADF);
ee12b079 86:a26f5f22631d 176 DigitalOut cs_sd(SPI_CS_SDC);
shreeshas95 2:2caf2a9a13aa 177 DigitalOut gCS_RTC(SPI_CS_RTC);
shreeshas95 0:f016e9e8d48b 178 Mutex SPI_mutex;
shreeshas95 0:f016e9e8d48b 179
aniruddhv 144:4c20fcc105ce 180 //RF Relay
aniruddhv 144:4c20fcc105ce 181 DigitalOut RF_SW_CNTRL_BCN(RF_RELAY_CNTRL_BCN);
aniruddhv 144:4c20fcc105ce 182 DigitalOut RF_SW_CNTRL_TX(RF_RELAY_CNTRL_TX);
aniruddhv 144:4c20fcc105ce 183
aniruddhv 155:ca7365c03fd7 184 //COM_RX
aniruddhv 155:ca7365c03fd7 185 DigitalOut COM_RX_CNTRL(PIN72);
aniruddhv 155:ca7365c03fd7 186 DigitalOut COM_TX_CNTRL(PIN56);
aniruddhv 144:4c20fcc105ce 187
shreeshas95 0:f016e9e8d48b 188 // TC LIST
shreeshas95 0:f016e9e8d48b 189 Base_tc* gHEAD_NODE_TCL = NULL;
shreeshas95 0:f016e9e8d48b 190 Base_tc* gLAST_NODE_TCL = NULL;
shreeshas95 2:2caf2a9a13aa 191 uint8_t gMASTER_STATE = TCL_STATE_INCOMPLETE;
shreeshas95 2:2caf2a9a13aa 192 uint16_t gFLAGS = 0x0000;
shreeshas95 0:f016e9e8d48b 193
shreeshas95 0:f016e9e8d48b 194 // COM_MNG_TMTC THREAD
shreeshas95 0:f016e9e8d48b 195 Thread* gCOM_MNG_TMTC_THREAD = NULL;
shreeshas95 0:f016e9e8d48b 196 Timeout gRX_TIMEOUT;
shreeshas95 0:f016e9e8d48b 197 Timeout gSESSION_TIMEOUT;
shreeshas95 0:f016e9e8d48b 198
shreeshas95 0:f016e9e8d48b 199 // COM_MNG_TMTC
shreeshas95 2:2caf2a9a13aa 200
aniruddhv 144:4c20fcc105ce 201
aniruddhv 144:4c20fcc105ce 202
shreeshas95 2:2caf2a9a13aa 203 // PA cooling timeout
shreeshas95 4:104dd82c99b8 204 Timeout gCOM_PA_COOLING_TIMEOUT;
shreeshas95 2:2caf2a9a13aa 205
shreeshas95 2:2caf2a9a13aa 206 // GS code for verification
aniruddhv 37:c9a739750806 207 const uint8_t gGSCODE[] = {0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
shreeshas95 2:2caf2a9a13aa 208
shreeshas95 0:f016e9e8d48b 209 uint8_t gTOTAL_VALID_TC = 0x00;
shreeshas95 0:f016e9e8d48b 210 // USE LAST_L1_ACK FOR GENERATING REPORT
shreeshas95 4:104dd82c99b8 211 uint8_t gLAST_TM[TM_LONG_SIZE];
shreeshas95 4:104dd82c99b8 212 uint8_t gLAST_TM_SHORT_OR_LONG = SHORT_TM_CODE;
shreeshas95 3:6c81fc8834e2 213
shreeshas95 101:bece931236a2 214 // PAYLOAD OR SCIENCE_THREAD
shreeshas95 3:6c81fc8834e2 215 Thread* gSCIENCE_THREAD = NULL;
shreeshas95 101:bece931236a2 216 dmaSPISlave gPAY_SPI(PAY_SPI_MOSI, PAY_SPI_MISO, PAY_SPI_CLK, PAY_SPI_CS);
shreeshas95 4:104dd82c99b8 217 uint8_t gPAYLOAD_BUFFER[PAYLOAD_BUFFER_LENGTH];
shreeshas95 4:104dd82c99b8 218
shreeshas95 4:104dd82c99b8 219 // CALL SIGN TM
shreeshas95 103:b55559925dc1 220 const uint8_t gCALL_SIGN_STRING[TM_SHORT_SIZE] = {0xE0, 0x00, 0x00, 0x00, 0x56, 0x55, 0x32, 0x4E, 0x43, 0x46, 0x00, 0xAC, 0x11};
shreeshas95 103:b55559925dc1 221
shreeshas95 103:b55559925dc1 222 // CDMS HK
chaithanyarss 206:fba4aeebf004 223 uint8_t CDMS_HEALTH_DATA[128];
chaithanyarss 192:2c7263530c57 224 uint8_t CDMS_RAM[59];
chaithanyarss 192:2c7263530c57 225 uint16_t GPIO_STATUS;
chaithanyarss 206:fba4aeebf004 226 uint8_t CDMS_HK_MAIN_STATUS;
chaithanyarss 192:2c7263530c57 227 uint8_t COMRX_STATUS;
chaithanyarss 192:2c7263530c57 228 uint8_t RTC_FAULTCOUNT;
chaithanyarss 192:2c7263530c57 229 uint16_t SD_FAULTCOUNT;
chaithanyarss 192:2c7263530c57 230 uint8_t SD_STATUS;
chaithanyarss 192:2c7263530c57 231 uint8_t BAE_FAULTCOUNT;
chaithanyarss 192:2c7263530c57 232 uint8_t BAE_STATUS;
chaithanyarss 192:2c7263530c57 233 uint8_t PL_STATUS;
chaithanyarss 192:2c7263530c57 234 uint16_t PL_FAULTCOUNT;
chaithanyarss 192:2c7263530c57 235 bool BAE_HK_I2C;
chaithanyarss 192:2c7263530c57 236 uint8_t RTC_STATUS;
chaithanyarss 192:2c7263530c57 237 float RSSI_volatge;
chaithanyarss 192:2c7263530c57 238
shreeshas95 103:b55559925dc1 239 CDMS_HK_actual actual_data;
shreeshas95 103:b55559925dc1 240 CDMS_HK_quant quant_data;
shreeshas95 103:b55559925dc1 241 CDMS_HK_min_max min_max_data;
chaithanyarss 192:2c7263530c57 242 bool firstCount=true;
chaithanyarss 192:2c7263530c57 243
chaithanyarss 192:2c7263530c57 244 //SD HK
chaithanyarss 192:2c7263530c57 245 uint32_t FSC_CURRENT[6];
chaithanyarss 206:fba4aeebf004 246 uint32_t FSC_LAST[6];
chaithanyarss 206:fba4aeebf004 247
chaithanyarss 206:fba4aeebf004 248 //Time's
chaithanyarss 206:fba4aeebf004 249 uint32_t TIME_LATEST_RTC;
chaithanyarss 206:fba4aeebf004 250 uint32_t TIME_LATEST_I2C_BAE;
chaithanyarss 206:fba4aeebf004 251 uint32_t TIME_LATEST_I2C_SPEED;
chaithanyarss 206:fba4aeebf004 252 uint32_t TIME_LATEST_SD_WR;
chaithanyarss 206:fba4aeebf004 253 uint32_t TIME_LATEST_SD_RD;
chaithanyarss 206:fba4aeebf004 254 uint32_t TIME_LATEST_SPI_SPEED;
chaithanyarss 206:fba4aeebf004 255
chaithanyarss 206:fba4aeebf004 256 //Counter's
chaithanyarss 206:fba4aeebf004 257 uint16_t CDMS_I2C_ERR_SPEED_COUNTER;
chaithanyarss 206:fba4aeebf004 258 uint16_t CDMS_I2C_ERR_BAE_COUNTER;
chaithanyarss 206:fba4aeebf004 259 uint16_t CDMS_HK_MAIN_COUNTER;
chaithanyarss 206:fba4aeebf004 260 uint16_t COMRX_RESET_COUNTER;
chaithanyarss 206:fba4aeebf004 261 uint16_t PL_MAIN_COUNTER;
chaithanyarss 206:fba4aeebf004 262 uint16_t PL_RCV_SC_DATA_COUNTER;