vr1.1

Dependencies:   FreescaleIAP mbed-rtos mbed

Fork of CDMS_RTOS_v1_1 by Team Fox

Revision:
14:cf9f12b6887d
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/TMTCstructures.h	Tue Jul 14 10:14:36 2015 +0000
@@ -0,0 +1,29 @@
+typedef struct TC_list{
+    // received from the RCV_TC
+    unsigned char *TC_string;
+    bool short_or_long; //'true' for short
+    bool crc_pass;
+
+    // updated info - updated in MNG_TC
+    unsigned char packet_seq_count;
+    unsigned char apid;
+    bool abort_on_nack;
+    bool enabled;
+    bool valid_execution;
+
+    struct TC_list *next_TC;
+    
+    ~TC_list(){}
+}TC_list;
+
+typedef struct TM_list{
+
+    unsigned char *TM_string;
+    // bool short_or_long; // true for short
+    // pass while calling the function
+    unsigned char tmid;
+
+    struct TM_list *next_TM;
+    
+    ~TM_list(){}
+}TM_List;
\ No newline at end of file