##// END OF EJS Templates
HK_LFR_DPU_SPW_LINK_STATE: ERROR_WAIT = 1
paul -
r61:a34c50cabb1b default
parent child
Show More
@@ -1,885 +1,885
1 1 #ifndef CCSDS_TYPES_H_INCLUDED
2 2 #define CCSDS_TYPES_H_INCLUDED
3 3
4 4 #define TXBDCNT 50
5 5 #define RXBDCNT 10
6 6 #define TXDATASIZE 4096
7 7 #define TXHDRSIZE 34
8 8 #define RXPKTSIZE 200
9 9
10 10 #define SPW_RXSIZE 228
11 11 #define SPW_TXDSIZE 4096
12 12 #define SPW_TXHSIZE 64
13 13
14 14 #define BITS_PID_0 0x07
15 15 #define BITS_PID_1 0x0f
16 16 #define BITS_CAT 0x0f
17 17
18 18 #define CCSDS_PROTOCOLE_EXTRA_BYTES 4
19 19 #define CCSDS_TC_TM_PACKET_OFFSET 7
20 20 #define PROTID_RES_APP 3
21 21 #define CCSDS_TELEMETRY_HEADER_LENGTH (16+4)
22 22 #define CCSDS_TC_HEADER_LENGTH 10
23 23 #define CCSDS_TM_PKT_MAX_SIZE 4412
24 24 #define CCSDS_TELECOMMAND_HEADER_LENGTH (10+4)
25 25 #define CCSDS_TC_PKT_MAX_SIZE 232 // (228+3) with 3 for Prot ID, Reserved and User App bytes, SHALL BE A MULTIPLE OF 4
26 26 #define CCSDS_TC_PKT_MIN_SIZE 16
27 27 #define CCSDS_PROCESS_ID 76
28 28 #define CCSDS_PACKET_CATEGORY 12
29 29 #define CCSDS_NODE_ADDRESS 0xfe
30 30 #define CCSDS_USER_APP 0x00
31 31
32 32 #define DEFAULT_SPARE1_PUSVERSION_SPARE2 0x10
33 33 #define DEFAULT_RESERVED 0x00
34 34 #define DEFAULT_HKBIA 0x1e // 0001 1110
35 35
36 36 // PACKET ID
37 37 #define TM_PACKET_PID_DEFAULT 76
38 38 #define TM_PACKET_PID_BURST_SBM1_SBM2 79
39 39 #define APID_TM_TC_EXE 0x0cc1 // PID 76 CAT 1
40 40 #define APID_TM_HK 0x0cc4 // PID 76 CAT 4
41 41 #define APID_TM_SCIENCE_NORMAL_BURST 0x0ccc // PID 76 CAT 12
42 42 #define APID_TM_SCIENCE_SBM1_SBM2 0x0cfc // PID 79 CAT 12
43 43 #define APID_TM_PARAMETER_DUMP 0x0cc6 // PID 76 CAT 6
44 44 #define APID_TM_KCOEFFICIENTS_DUMP 0x0cc6 // PID 76 CAT 6
45 45
46 46 // PACKET CAT
47 47 #define TM_PACKET_CAT_TC_EXE 1
48 48 #define TM_PACKET_CAT_HK 4
49 49 #define TM_PACKET_CAT_SCIENCE 12
50 50 #define TM_PACKET_CAT_DUMP 6
51 51
52 52 // PACKET SEQUENCE CONTROL
53 53 #define TM_PACKET_SEQ_CTRL_CONTINUATION 0x00 // [0000 0000]
54 54 #define TM_PACKET_SEQ_CTRL_FIRST 0x40 // [0100 0000]
55 55 #define TM_PACKET_SEQ_CTRL_LAST 0x80 // [1000 0000]
56 56 #define TM_PACKET_SEQ_CTRL_STANDALONE 0xc0 // [1100 0000]
57 57 #define TM_PACKET_SEQ_CNT_DEFAULT 0x00 // [0000 0000]
58 58 #define TM_PACKET_SEQ_SHIFT 8
59 59 #define SEQ_CNT_MAX 16383
60 60 #define SEQ_CNT_NB_DEST_ID 12
61 61 #define SEQ_CNT_MASK 0x3fff // [0011 1111 1111 1111]
62 62
63 63 // DESTINATION ID
64 64 #define TM_DESTINATION_ID_GROUND 0
65 65 #define TM_DESTINATION_ID_MISSION_TIMELINE 110
66 66 #define TM_DESTINATION_ID_TC_SEQUENCES 111
67 67 #define TM_DESTINATION_ID_RECOVERY_ACTION_COMMAND 112
68 68 #define TM_DESTINATION_ID_BACKUP_MISSION_TIMELINE 113
69 69 #define TM_DESTINATION_ID_DIRECT_CMD 120
70 70 #define TM_DESTINATION_ID_SPARE_GRD_SRC1 121
71 71 #define TM_DESTINATION_ID_SPARE_GRD_SRC2 122
72 72 #define TM_DESTINATION_ID_OBCP 15
73 73 #define TM_DESTINATION_ID_SYSTEM_CONTROL 14
74 74 #define TM_DESTINATION_ID_AOCS 11
75 75
76 76 //*********************************************************
77 77 //*** /!\ change CCSDS_DESTINATION_ID before flight /!\ ***
78 78 //*********************************************************
79 79 #ifdef LPP_DPU_DESTID
80 80 #define CCSDS_DESTINATION_ID 32
81 81 #else
82 82 #define CCSDS_DESTINATION_ID 0x01
83 83 #endif
84 84 #define CCSDS_PROTOCOLE_ID 0x02
85 85 #define CCSDS_RESERVED 0x00
86 86 #define CCSDS_USER_APP 0x00
87 87
88 88 #define SIZE_TM_LFR_TC_EXE_NOT_IMPLEMENTED 24
89 89 #define SIZE_TM_LFR_TC_EXE_CORRUPTED 32
90 90 #define SIZE_HK_PARAMETERS 112
91 91
92 92 // TC TYPES
93 93 #define TC_TYPE_GEN 181
94 94 #define TC_TYPE_TIME 9
95 95
96 96 // TC SUBTYPES
97 97 #define TC_SUBTYPE_RESET 1
98 98 #define TC_SUBTYPE_LOAD_COMM 11
99 99 #define TC_SUBTYPE_LOAD_NORM 13
100 100 #define TC_SUBTYPE_LOAD_BURST 19
101 101 #define TC_SUBTYPE_LOAD_SBM1 25
102 102 #define TC_SUBTYPE_LOAD_SBM2 27
103 103 #define TC_SUBTYPE_DUMP 31
104 104 #define TC_SUBTYPE_ENTER 41
105 105 #define TC_SUBTYPE_UPDT_INFO 51
106 106 #define TC_SUBTYPE_EN_CAL 61
107 107 #define TC_SUBTYPE_DIS_CAL 63
108 108 #define TC_SUBTYPE_LOAD_K 93
109 109 #define TC_SUBTYPE_DUMP_K 95
110 110 #define TC_SUBTYPE_LOAD_FBINS 91
111 111 #define TC_SUBTYPE_LOAD_FILTER_PAR 97
112 112 #define TC_SUBTYPE_UPDT_TIME 129
113 113
114 114 // TC LEN
115 115 #define TC_LEN_RESET 12
116 116 #define TC_LEN_LOAD_COMM 14
117 117 #define TC_LEN_LOAD_NORM 22
118 118 #define TC_LEN_LOAD_BURST 14
119 119 #define TC_LEN_LOAD_SBM1 14
120 120 #define TC_LEN_LOAD_SBM2 14
121 121 #define TC_LEN_DUMP 12
122 122 #define TC_LEN_ENTER 20
123 123 #define TC_LEN_UPDT_INFO 110
124 124 #define TC_LEN_EN_CAL 12
125 125 #define TC_LEN_DIS_CAL 12
126 126 #define TC_LEN_LOAD_K 142
127 127 #define TC_LEN_DUMP_K 12
128 128 #define TC_LEN_LOAD_FBINS 60
129 129 #define TC_LEN_LOAD_FILTER_PAR 28
130 130 #define TC_LEN_UPDT_TIME 18
131 131
132 132 // PACKET CODES
133 133 #define TM_CODE_K_DUMP 0xb5600b00 // 181 (0xb5) ** 96 (0x60) ** 11 (0x0b) ** 0 (0x00)
134 134
135 135 // TM TYPES
136 136 #define TM_TYPE_TC_EXE 1
137 137 #define TM_TYPE_HK 3
138 138 #define TM_TYPE_LFR_SCIENCE 21
139 139 #define TM_TYPE_PARAMETER_DUMP 181
140 140 #define TM_TYPE_K_DUMP 181
141 141
142 142 // TM SUBTYPES
143 143 #define TM_SUBTYPE_EXE_OK 7
144 144 #define TM_SUBTYPE_EXE_NOK 8
145 145 #define TM_SUBTYPE_HK 25
146 146 #define TM_SUBTYPE_LFR_SCIENCE_3 3 // TM packets with fixed size
147 147 #define TM_SUBTYPE_LFR_SCIENCE_6 6 // TM packets with variable size
148 148 #define TM_SUBTYPE_PARAMETER_DUMP 32
149 149 #define TM_SUBTYPE_K_DUMP 96
150 150
151 151 // FAILURE CODES
152 152 #define ILLEGAL_APID 0
153 153 #define WRONG_LEN_PKT 1
154 154 #define INCOR_CHECKSUM 2
155 155 #define ILL_TYPE 3
156 156 #define ILL_SUBTYPE 4
157 157 #define WRONG_APP_DATA 5 // 0x00 0x05
158 158 #define TC_NOT_EXE 42000 // 0xa4 0x10
159 159 #define WRONG_SRC_ID 42001 // 0xa4 0x11
160 160 #define FUNCT_NOT_IMPL 42002 // 0xa4 0x12
161 161 #define FAIL_DETECTED 42003 // 0xa4 0x13
162 162 #define NOT_ALLOWED 42004 // 0xa4 0x14
163 163 #define CORRUPTED 42005 // 0xa4 0x15
164 164 #define CCSDS_TM_VALID 7
165 165
166 166 // HK_LFR_LAST_ER_RID
167 167 #define RID_LE_LFR_TIME 42119
168 168 #define RID_LE_LFR_DPU_SPW 42128
169 169 #define RID_LE_LFR_TIMEC 42129
170 170 #define RID_ME_LFR_DPU_SPW 42338
171 171 // HK_LFR_LAST_ER_CODE
172 172 #define CODE_PARITY 1
173 173 #define CODE_DISCONNECT 2
174 174 #define CODE_ESCAPE 3
175 175 #define CODE_CREDIT 4
176 176 #define CODE_WRITE_SYNC 5
177 177 #define CODE_EARLY_EOP_EEP 6
178 178 #define CODE_INVALID_ADDRESS 7
179 179 #define CODE_EEP 8
180 180 #define CODE_RX_TOO_BIG 9
181 181 #define CODE_HEADER_CRC 16
182 182 #define CODE_DATA_CRC 17
183 183 #define CODE_ERRONEOUS 20
184 184 #define CODE_MISSING 21
185 185 #define CODE_INVALID 22
186 186 #define CODE_TIMECODE_IT 24
187 187 #define CODE_NOT_SYNCHRO 25
188 188 #define CODE_TIMECODE_CTR 26
189 189
190 190 // TC SID
191 191 #define SID_TC_GROUND 0
192 192 #define SID_TC_MISSION_TIMELINE 110
193 193 #define SID_TC_TC_SEQUENCES 111
194 194 #define SID_TC_RECOVERY_ACTION_CMD 112
195 195 #define SID_TC_BACKUP_MISSION_TIMELINE 113
196 196 #define SID_TC_DIRECT_CMD 120
197 197 #define SID_TC_SPARE_GRD_SRC1 121
198 198 #define SID_TC_SPARE_GRD_SRC2 122
199 199 #define SID_TC_OBCP 15
200 200 #define SID_TC_SYSTEM_CONTROL 14
201 201 #define SID_TC_AOCS 11
202 202 #define SID_TC_RPW_INTERNAL 254
203 203
204 204 enum apid_destid{
205 205 GROUND,
206 206 MISSION_TIMELINE,
207 207 TC_SEQUENCES,
208 208 RECOVERY_ACTION_CMD,
209 209 BACKUP_MISSION_TIMELINE,
210 210 DIRECT_CMD,
211 211 SPARE_GRD_SRC1,
212 212 SPARE_GRD_SRC2,
213 213 OBCP,
214 214 SYSTEM_CONTROL,
215 215 AOCS,
216 216 RPW_INTERNAL
217 217 };
218 218
219 219 // TM SID
220 220 #define SID_HK 1
221 221
222 222 #define SID_NORM_SWF_F0 3
223 223 #define SID_NORM_SWF_F1 4
224 224 #define SID_NORM_SWF_F2 5
225 225 #define SID_NORM_CWF_F3 1
226 226 #define SID_BURST_CWF_F2 2
227 227 #define SID_SBM1_CWF_F1 24
228 228 #define SID_SBM2_CWF_F2 25
229 229 #define SID_NORM_ASM_F0 11
230 230 #define SID_NORM_ASM_F1 12
231 231 #define SID_NORM_ASM_F2 13
232 232 #define SID_NORM_BP1_F0 14
233 233 #define SID_NORM_BP1_F1 15
234 234 #define SID_NORM_BP1_F2 16
235 235 #define SID_NORM_BP2_F0 19
236 236 #define SID_NORM_BP2_F1 20
237 237 #define SID_NORM_BP2_F2 21
238 238 #define SID_BURST_BP1_F0 17
239 239 #define SID_BURST_BP2_F0 22
240 240 #define SID_BURST_BP1_F1 18
241 241 #define SID_BURST_BP2_F1 23
242 242 #define SID_SBM1_BP1_F0 28
243 243 #define SID_SBM1_BP2_F0 31
244 244 #define SID_SBM2_BP1_F0 29
245 245 #define SID_SBM2_BP2_F0 32
246 246 #define SID_SBM2_BP1_F1 30
247 247 #define SID_SBM2_BP2_F1 33
248 248 #define SID_NORM_CWF_LONG_F3 34
249 249
250 250 #define SID_PARAMETER_DUMP 10
251 251 #define SID_K_DUMP 11
252 252
253 253 // HEADER_LENGTH
254 254 //#define TM_HEADER_LEN 16
255 255 #define HEADER_LENGTH_TM_LFR_SCIENCE_CWF 32
256 256 #define HEADER_LENGTH_TM_LFR_SCIENCE_SWF 34
257 257 #define HEADER_LENGTH_TM_LFR_SCIENCE_ASM 34
258 258 // PACKET_LENGTH
259 259 #define PACKET_LENGTH_TC_EXE_SUCCESS (20 - CCSDS_TC_TM_PACKET_OFFSET)
260 260 #define PACKET_LENGTH_TC_EXE_INCONSISTENT (26 - CCSDS_TC_TM_PACKET_OFFSET)
261 261 #define PACKET_LENGTH_TC_EXE_NOT_EXECUTABLE (26 - CCSDS_TC_TM_PACKET_OFFSET)
262 262 #define PACKET_LENGTH_TC_EXE_NOT_IMPLEMENTED (24 - CCSDS_TC_TM_PACKET_OFFSET)
263 263 #define PACKET_LENGTH_TC_EXE_ERROR (24 - CCSDS_TC_TM_PACKET_OFFSET)
264 264 #define PACKET_LENGTH_TC_EXE_CORRUPTED (32 - CCSDS_TC_TM_PACKET_OFFSET)
265 265 #define PACKET_LENGTH_HK (136 - CCSDS_TC_TM_PACKET_OFFSET)
266 266 #define PACKET_LENGTH_PARAMETER_DUMP (148 - CCSDS_TC_TM_PACKET_OFFSET)
267 267 #define PACKET_LENGTH_K_DUMP (3920 - CCSDS_TC_TM_PACKET_OFFSET)
268 268 // SCIENCE ASM
269 269 #define PACKET_LENGTH_TM_LFR_SCIENCE_ASM_F0_1 (3230 - CCSDS_TC_TM_PACKET_OFFSET) // 32 * 25 * 4 + 30 => 32 bins (32 + 32 + 24 ), 3 packets
270 270 #define PACKET_LENGTH_TM_LFR_SCIENCE_ASM_F0_2 (2430 - CCSDS_TC_TM_PACKET_OFFSET) // 24 * 25 * 4 + 30 => 24 bins (32 + 32 + 24 ), 3 packets
271 271 #define PACKET_LENGTH_TM_LFR_SCIENCE_ASM_F1_1 (3630 - CCSDS_TC_TM_PACKET_OFFSET) // 36 * 25 * 4 + 30 => 36 bins (36 + 36 + 32 ), 3 packets
272 272 #define PACKET_LENGTH_TM_LFR_SCIENCE_ASM_F1_2 (3230 - CCSDS_TC_TM_PACKET_OFFSET) // 32 * 25 * 4 + 30 => 32 bins (36 + 36 + 32 ), 3 packets
273 273 #define PACKET_LENGTH_TM_LFR_SCIENCE_ASM_F2 (3230 - CCSDS_TC_TM_PACKET_OFFSET) // 32 * 25 * 4 + 30 => 96 bins (32 + 32 + 32 ), 3 packets
274 274 // SCIENCE NORM
275 275 #define PACKET_LENGTH_TM_LFR_SCIENCE_NORM_BP1_F0 (150 - CCSDS_TC_TM_PACKET_OFFSET) // 11 * 11 + 29 (1 spare byte in the header)
276 276 #define PACKET_LENGTH_TM_LFR_SCIENCE_NORM_BP1_F1 (172 - CCSDS_TC_TM_PACKET_OFFSET) // 13 * 11 + 29 (1 spare byte in the header)
277 277 #define PACKET_LENGTH_TM_LFR_SCIENCE_NORM_BP1_F2 (160 - CCSDS_TC_TM_PACKET_OFFSET) // 12 * 11 + 28
278 278 #define PACKET_LENGTH_TM_LFR_SCIENCE_NORM_BP2_F0 (358 - CCSDS_TC_TM_PACKET_OFFSET) // 11 * 30 + 28
279 279 #define PACKET_LENGTH_TM_LFR_SCIENCE_NORM_BP2_F1 (418 - CCSDS_TC_TM_PACKET_OFFSET) // 13 * 30 + 28
280 280 #define PACKET_LENGTH_TM_LFR_SCIENCE_NORM_BP2_F2 (388 - CCSDS_TC_TM_PACKET_OFFSET) // 12 * 30 + 28
281 281 // SCIENCE SBM
282 282 #define PACKET_LENGTH_TM_LFR_SCIENCE_SBM_BP1_F0 (270 - CCSDS_TC_TM_PACKET_OFFSET) // 22 * 11 + 28
283 283 #define PACKET_LENGTH_TM_LFR_SCIENCE_SBM_BP2_F0 (688 - CCSDS_TC_TM_PACKET_OFFSET) // 22 * 30 + 28
284 284 #define PACKET_LENGTH_TM_LFR_SCIENCE_SBM_BP1_F1 (314 - CCSDS_TC_TM_PACKET_OFFSET) // 26 * 11 + 28
285 285 #define PACKET_LENGTH_TM_LFR_SCIENCE_SBM_BP2_F1 (808 - CCSDS_TC_TM_PACKET_OFFSET) // 26 * 30 + 28
286 286
287 287 #define PACKET_LENGTH_DELTA 11 // 7 + 4
288 288
289 289 #define SPARE1_PUSVERSION_SPARE2 0x10
290 290
291 291 // R3
292 292 // one snapshot = 2048 samples = 6 packets * 304 + 224
293 293 #define TM_LEN_SCI_SWF_304 (3678 - CCSDS_TC_TM_PACKET_OFFSET) // 304 * 12 + 30
294 294 #define TM_LEN_SCI_SWF_224 (2718 - CCSDS_TC_TM_PACKET_OFFSET) // 224 * 12 + 30
295 295 // one continuous buffer = 2688 samples = 8 packets * 336
296 296 #define TM_LEN_SCI_CWF_336 (4060 - CCSDS_TC_TM_PACKET_OFFSET) // 336 * 12 + 28
297 297 #define TM_LEN_SCI_CWF_672 (4060 - CCSDS_TC_TM_PACKET_OFFSET) // 672 * 6 + 28
298 298 //
299 299 #define PKTCNT_SWF 0x07
300 300 #define PKTCNT_ASM 3
301 301 #define BLK_NR_304 0x0130
302 302 #define BLK_NR_224 0x00e0
303 303 #define BLK_NR_CWF 0x0150 // 336
304 304 #define BLK_NR_CWF_SHORT_F3 0x02a0 // 672
305 305
306 306 enum TM_TYPE{
307 307 TM_LFR_TC_EXE_OK,
308 308 TM_LFR_TC_EXE_ERR,
309 309 TM_LFR_HK,
310 310 TM_LFR_SCI,
311 311 TM_LFR_SCI_SBM,
312 312 TM_LFR_PAR_DUMP
313 313 };
314 314
315 315 #define BYTES_PER_PACKETID 2
316 316 #define BYTES_PER_SEQ_CTRL 2
317 317 #define BYTES_PER_PKT_LEN 2
318 318 #define BYTES_PER_TIME 6
319 319 #define BYTES_PER_ERR_CODE 2
320 320 #define BYTES_PER_STA_WRD 2
321 321 #define BYTES_PER_CRC 2
322 322 #define BYTES_PER_BLKNR 2
323 323 #define BYTES_PER_SW_VER 4
324 324 #define BYTES_PER_VHD_VER 3
325 325 #define COUNTER_2_BYTES 2
326 326 #define BYTES_PER_TYPE 2
327 327 #define BYTES_PER_SUBTYPE 2
328 328 #define BYTES_PER_ADDR 4
329 329 #define BYTES_PER_TEMP 2
330 330 #define BYTES_PER_V 2
331 331 #define BYTES_PER_WORD 4
332 332 #define BYTES_PER_MASK 16
333 333 #define BYTES_PER_MASKS_SET 48 // 4 * 4 * 3
334 334
335 335 #define COUNTER_2_BYTES 2
336 336 #define PARAM_2_BYTES 2
337 337 #define PARAM_4_BYTES 4
338 338
339 339 typedef struct {
340 340 unsigned char targetLogicalAddress;
341 341 unsigned char protocolIdentifier;
342 342 unsigned char reserved;
343 343 unsigned char userApplication;
344 344 // PACKET HEADER
345 345 unsigned char packetID[BYTES_PER_PACKETID];
346 346 unsigned char packetSequenceControl[BYTES_PER_SEQ_CTRL];
347 347 unsigned char packetLength[BYTES_PER_PKT_LEN];
348 348 // DATA FIELD HEADER
349 349 unsigned char spare1_pusVersion_spare2;
350 350 unsigned char serviceType;
351 351 unsigned char serviceSubType;
352 352 unsigned char destinationID;
353 353 unsigned char time[BYTES_PER_TIME];
354 354 //
355 355 unsigned char telecommand_pkt_id[BYTES_PER_PACKETID];
356 356 unsigned char pkt_seq_control[BYTES_PER_SEQ_CTRL];
357 357 } Packet_TM_LFR_TC_EXE_SUCCESS_t;
358 358
359 359 typedef struct {
360 360 unsigned char targetLogicalAddress;
361 361 unsigned char protocolIdentifier;
362 362 unsigned char reserved;
363 363 unsigned char userApplication;
364 364 // PACKET HEADER
365 365 unsigned char packetID[BYTES_PER_PACKETID];
366 366 unsigned char packetSequenceControl[BYTES_PER_SEQ_CTRL];
367 367 unsigned char packetLength[BYTES_PER_PKT_LEN];
368 368 // DATA FIELD HEADER
369 369 unsigned char spare1_pusVersion_spare2;
370 370 unsigned char serviceType;
371 371 unsigned char serviceSubType;
372 372 unsigned char destinationID;
373 373 unsigned char time[BYTES_PER_TIME];
374 374 //
375 375 unsigned char telecommand_pkt_id[BYTES_PER_PACKETID];
376 376 unsigned char pkt_seq_control[BYTES_PER_SEQ_CTRL];
377 377 unsigned char tc_failure_code[BYTES_PER_ERR_CODE];
378 378 unsigned char tc_service;
379 379 unsigned char tc_subtype;
380 380 unsigned char byte_position;
381 381 unsigned char rcv_value;
382 382 } Packet_TM_LFR_TC_EXE_INCONSISTENT_t;
383 383
384 384 typedef struct {
385 385 unsigned char targetLogicalAddress;
386 386 unsigned char protocolIdentifier;
387 387 unsigned char reserved;
388 388 unsigned char userApplication;
389 389 // PACKET HEADER
390 390 unsigned char packetID[BYTES_PER_PACKETID];
391 391 unsigned char packetSequenceControl[BYTES_PER_SEQ_CTRL];
392 392 unsigned char packetLength[BYTES_PER_PKT_LEN];
393 393 // DATA FIELD HEADER
394 394 unsigned char spare1_pusVersion_spare2;
395 395 unsigned char serviceType;
396 396 unsigned char serviceSubType;
397 397 unsigned char destinationID;
398 398 unsigned char time[BYTES_PER_TIME];
399 399 //
400 400 unsigned char telecommand_pkt_id[BYTES_PER_PACKETID];
401 401 unsigned char pkt_seq_control[BYTES_PER_SEQ_CTRL];
402 402 unsigned char tc_failure_code[BYTES_PER_ERR_CODE];
403 403 unsigned char tc_service;
404 404 unsigned char tc_subtype;
405 405 unsigned char lfr_status_word[2];
406 406 } Packet_TM_LFR_TC_EXE_NOT_EXECUTABLE_t;
407 407
408 408 typedef struct {
409 409 unsigned char targetLogicalAddress;
410 410 unsigned char protocolIdentifier;
411 411 unsigned char reserved;
412 412 unsigned char userApplication;
413 413 // PACKET HEADER
414 414 unsigned char packetID[BYTES_PER_PACKETID];
415 415 unsigned char packetSequenceControl[BYTES_PER_SEQ_CTRL];
416 416 unsigned char packetLength[BYTES_PER_PKT_LEN];
417 417 // DATA FIELD HEADER
418 418 unsigned char spare1_pusVersion_spare2;
419 419 unsigned char serviceType;
420 420 unsigned char serviceSubType;
421 421 unsigned char destinationID;
422 422 unsigned char time[BYTES_PER_TIME];
423 423 //
424 424 unsigned char telecommand_pkt_id[BYTES_PER_PACKETID];
425 425 unsigned char pkt_seq_control[BYTES_PER_SEQ_CTRL];
426 426 unsigned char tc_failure_code[BYTES_PER_ERR_CODE];
427 427 unsigned char tc_service;
428 428 unsigned char tc_subtype;
429 429 } Packet_TM_LFR_TC_EXE_NOT_IMPLEMENTED_t;
430 430
431 431 typedef struct {
432 432 unsigned char targetLogicalAddress;
433 433 unsigned char protocolIdentifier;
434 434 unsigned char reserved;
435 435 unsigned char userApplication;
436 436 // PACKET HEADER
437 437 unsigned char packetID[BYTES_PER_PACKETID];
438 438 unsigned char packetSequenceControl[BYTES_PER_SEQ_CTRL];
439 439 unsigned char packetLength[BYTES_PER_PKT_LEN];
440 440 // DATA FIELD HEADER
441 441 unsigned char spare1_pusVersion_spare2;
442 442 unsigned char serviceType;
443 443 unsigned char serviceSubType;
444 444 unsigned char destinationID;
445 445 unsigned char time[BYTES_PER_TIME];
446 446 //
447 447 unsigned char telecommand_pkt_id[BYTES_PER_PACKETID];
448 448 unsigned char pkt_seq_control[BYTES_PER_SEQ_CTRL];
449 449 unsigned char tc_failure_code[BYTES_PER_ERR_CODE];
450 450 unsigned char tc_service;
451 451 unsigned char tc_subtype;
452 452 } Packet_TM_LFR_TC_EXE_ERROR_t;
453 453
454 454 typedef struct {
455 455 unsigned char targetLogicalAddress;
456 456 unsigned char protocolIdentifier;
457 457 unsigned char reserved;
458 458 unsigned char userApplication;
459 459 // PACKET HEADER
460 460 unsigned char packetID[BYTES_PER_PACKETID];
461 461 unsigned char packetSequenceControl[BYTES_PER_SEQ_CTRL];
462 462 unsigned char packetLength[BYTES_PER_PKT_LEN];
463 463 // DATA FIELD HEADER
464 464 unsigned char spare1_pusVersion_spare2;
465 465 unsigned char serviceType;
466 466 unsigned char serviceSubType;
467 467 unsigned char destinationID;
468 468 unsigned char time[BYTES_PER_TIME];
469 469 //
470 470 unsigned char telecommand_pkt_id[BYTES_PER_PACKETID];
471 471 unsigned char pkt_seq_control[BYTES_PER_SEQ_CTRL];
472 472 unsigned char tc_failure_code[BYTES_PER_ERR_CODE];
473 473 unsigned char tc_service;
474 474 unsigned char tc_subtype;
475 475 unsigned char pkt_len_rcv_value[BYTES_PER_PKT_LEN];
476 476 unsigned char pkt_datafieldsize_cnt[BYTES_PER_PKT_LEN];
477 477 unsigned char rcv_crc[BYTES_PER_CRC];
478 478 unsigned char computed_crc[BYTES_PER_CRC];
479 479 } Packet_TM_LFR_TC_EXE_CORRUPTED_t;
480 480
481 481 typedef struct {
482 482 unsigned char targetLogicalAddress;
483 483 unsigned char protocolIdentifier;
484 484 unsigned char reserved;
485 485 unsigned char userApplication;
486 486 unsigned char packetID[BYTES_PER_PACKETID];
487 487 unsigned char packetSequenceControl[BYTES_PER_SEQ_CTRL];
488 488 unsigned char packetLength[BYTES_PER_PKT_LEN];
489 489 // DATA FIELD HEADER
490 490 unsigned char spare1_pusVersion_spare2;
491 491 unsigned char serviceType;
492 492 unsigned char serviceSubType;
493 493 unsigned char destinationID;
494 494 unsigned char time[BYTES_PER_TIME];
495 495 // AUXILIARY HEADER
496 496 unsigned char sid;
497 497 unsigned char pa_bia_status_info;
498 498 unsigned char sy_lfr_common_parameters_spare;
499 499 unsigned char sy_lfr_common_parameters;
500 500 unsigned char pktCnt;
501 501 unsigned char pktNr;
502 502 unsigned char acquisitionTime[BYTES_PER_TIME];
503 503 unsigned char blkNr[BYTES_PER_BLKNR];
504 504 } Header_TM_LFR_SCIENCE_SWF_t;
505 505
506 506 //*******************
507 507 // TM_LFR_SCIENCE_CWF
508 508
509 509 #define CWF_BLK_SIZE 6
510 510
511 511 typedef struct {
512 512 unsigned char targetLogicalAddress;
513 513 unsigned char protocolIdentifier;
514 514 unsigned char reserved;
515 515 unsigned char userApplication;
516 516 unsigned char packetID[BYTES_PER_PACKETID];
517 517 unsigned char packetSequenceControl[BYTES_PER_SEQ_CTRL];
518 518 unsigned char packetLength[BYTES_PER_PKT_LEN];
519 519 // DATA FIELD HEADER
520 520 unsigned char spare1_pusVersion_spare2;
521 521 unsigned char serviceType;
522 522 unsigned char serviceSubType;
523 523 unsigned char destinationID;
524 524 unsigned char time[BYTES_PER_TIME];
525 525 // AUXILIARY DATA HEADER
526 526 unsigned char sid;
527 527 unsigned char pa_bia_status_info;
528 528 unsigned char sy_lfr_common_parameters_spare;
529 529 unsigned char sy_lfr_common_parameters;
530 530 unsigned char acquisitionTime[BYTES_PER_TIME];
531 531 unsigned char blkNr[BYTES_PER_BLKNR];
532 532 } Header_TM_LFR_SCIENCE_CWF_t;
533 533
534 534 typedef struct {
535 535 unsigned char targetLogicalAddress;
536 536 unsigned char protocolIdentifier;
537 537 unsigned char reserved;
538 538 unsigned char userApplication;
539 539 unsigned char packetID[BYTES_PER_PACKETID];
540 540 unsigned char packetSequenceControl[BYTES_PER_SEQ_CTRL];
541 541 unsigned char packetLength[BYTES_PER_PKT_LEN];
542 542 // DATA FIELD HEADER
543 543 unsigned char spare1_pusVersion_spare2;
544 544 unsigned char serviceType;
545 545 unsigned char serviceSubType;
546 546 unsigned char destinationID;
547 547 unsigned char time[BYTES_PER_TIME];
548 548 // AUXILIARY HEADER
549 549 unsigned char sid;
550 550 unsigned char pa_bia_status_info;
551 551 unsigned char sy_lfr_common_parameters_spare;
552 552 unsigned char sy_lfr_common_parameters;
553 553 unsigned char pa_lfr_pkt_cnt_asm;
554 554 unsigned char pa_lfr_pkt_nr_asm;
555 555 unsigned char acquisitionTime[BYTES_PER_TIME];
556 556 unsigned char pa_lfr_asm_blk_nr[BYTES_PER_BLKNR];
557 557 } Header_TM_LFR_SCIENCE_ASM_t;
558 558
559 559 typedef struct {
560 560 unsigned char targetLogicalAddress;
561 561 unsigned char protocolIdentifier;
562 562 unsigned char reserved;
563 563 unsigned char userApplication;
564 564 unsigned char packetID[BYTES_PER_PACKETID];
565 565 unsigned char packetSequenceControl[BYTES_PER_SEQ_CTRL];
566 566 unsigned char packetLength[BYTES_PER_PKT_LEN];
567 567 // DATA FIELD HEADER
568 568 unsigned char spare1_pusVersion_spare2;
569 569 unsigned char serviceType;
570 570 unsigned char serviceSubType;
571 571 unsigned char destinationID;
572 572 unsigned char time[BYTES_PER_TIME];
573 573 // AUXILIARY HEADER
574 574 unsigned char sid;
575 575 unsigned char pa_bia_status_info;
576 576 unsigned char sy_lfr_common_parameters_spare;
577 577 unsigned char sy_lfr_common_parameters;
578 578 unsigned char acquisitionTime[BYTES_PER_TIME];
579 579 unsigned char source_data_spare;
580 580 unsigned char pa_lfr_bp_blk_nr[BYTES_PER_BLKNR];
581 581 } Header_TM_LFR_SCIENCE_BP_with_spare_t;
582 582
583 583 typedef struct {
584 584 unsigned char targetLogicalAddress;
585 585 unsigned char protocolIdentifier;
586 586 unsigned char reserved;
587 587 unsigned char userApplication;
588 588 unsigned char packetID[BYTES_PER_PACKETID];
589 589 unsigned char packetSequenceControl[BYTES_PER_SEQ_CTRL];
590 590 unsigned char packetLength[BYTES_PER_PKT_LEN];
591 591 // DATA FIELD HEADER
592 592 unsigned char spare1_pusVersion_spare2;
593 593 unsigned char serviceType;
594 594 unsigned char serviceSubType;
595 595 unsigned char destinationID;
596 596 unsigned char time[BYTES_PER_TIME];
597 597 // AUXILIARY HEADER
598 598 unsigned char sid;
599 599 unsigned char pa_bia_status_info;
600 600 unsigned char sy_lfr_common_parameters_spare;
601 601 unsigned char sy_lfr_common_parameters;
602 602 unsigned char acquisitionTime[BYTES_PER_TIME];
603 603 unsigned char pa_lfr_bp_blk_nr[BYTES_PER_BLKNR];
604 604 } Header_TM_LFR_SCIENCE_BP_t;
605 605
606 606 typedef struct {
607 607 // TARGET LOGICAL ADDRESS (targetLogicalAddress) IS REMOVED BY THE GRSPW MODULE
608 608 unsigned char protocolIdentifier;
609 609 unsigned char reserved;
610 610 unsigned char userApplication;
611 611 unsigned char packetID[BYTES_PER_PACKETID];
612 612 unsigned char packetSequenceControl[BYTES_PER_SEQ_CTRL];
613 613 unsigned char packetLength[BYTES_PER_PKT_LEN];
614 614 // DATA FIELD HEADER
615 615 unsigned char headerFlag_pusVersion_Ack;
616 616 unsigned char serviceType;
617 617 unsigned char serviceSubType;
618 618 unsigned char sourceID;
619 619 unsigned char dataAndCRC[CCSDS_TC_PKT_MAX_SIZE-CCSDS_TC_HEADER_LENGTH];
620 620 } ccsdsTelecommandPacket_t;
621 621
622 622 //**********
623 623 //**********
624 624 // TM_LFR_HK
625 625
626 626 #define STATUS_WORD_SC_POTENTIAL_FLAG_BIT 0x40 // [0100 0000]
627 627 #define STATUS_WORD_SC_POTENTIAL_FLAG_MASK 0xbf // [1011 1111]
628 628 #define STATUS_WORD_PAS_FILTER_ENABLED_BIT 0x20 // [0010 0000]
629 629 #define STATUS_WORD_PAS_FILTER_ENABLED_MASK 0xdf // [1101 1111]
630 630 #define STATUS_WORD_WATCHDOG_BIT 0x10 // [0001 0000]
631 631 #define STATUS_WORD_WATCHDOG_MASK 0xef // [1110 1111]
632 632 #define STATUS_WORD_CALIB_BIT 0x08 // [0000 1000]
633 633 #define STATUS_WORD_CALIB_MASK 0xf7 // [1111 0111]
634 634 #define STATUS_WORD_RESET_CAUSE_BITS 0x07 // [0000 0111]
635 635 #define STATUS_WORD_RESET_CAUSE_MASK 0xf8 // [1111 1000]
636 #define STATUS_WORD_LINK_STATE_BITS 0x03 // [0000 0111]
636 #define STATUS_WORD_LINK_STATE_BITS 0x07 // [0000 0111]
637 637 #define STATUS_WORD_LINK_STATE_MASK 0xf8 // [1111 1000]
638 638 #define STATUS_WORD_LFR_MODE_SHIFT 4
639 639 #define STATUS_WORD_LFR_MODE_BITS 0xf0 // [1111 0000]
640 640 #define STATUS_WORD_LFR_MODE_MASK 0x0f // [0000 1111]
641 641 #define STATUS_WORD_0_DEFAULT 0x0d // [0000 1101]
642 642
643 643 typedef struct {
644 644 unsigned char targetLogicalAddress;
645 645 unsigned char protocolIdentifier;
646 646 unsigned char reserved;
647 647 unsigned char userApplication;
648 648 unsigned char packetID[BYTES_PER_PACKETID];
649 649 unsigned char packetSequenceControl[BYTES_PER_SEQ_CTRL];
650 650 unsigned char packetLength[BYTES_PER_PKT_LEN];
651 651 unsigned char spare1_pusVersion_spare2;
652 652 unsigned char serviceType;
653 653 unsigned char serviceSubType;
654 654 unsigned char destinationID;
655 655 unsigned char time[BYTES_PER_TIME];
656 656 unsigned char sid;
657 657
658 658 //**************
659 659 // HK PARAMETERS
660 660 unsigned char lfr_status_word[BYTES_PER_STA_WRD];
661 661 unsigned char lfr_sw_version[BYTES_PER_SW_VER];
662 662 unsigned char lfr_fpga_version[BYTES_PER_VHD_VER];
663 663 // ressource statistics
664 664 unsigned char hk_lfr_cpu_load;
665 665 unsigned char hk_lfr_cpu_load_max;
666 666 unsigned char hk_lfr_cpu_load_aver;
667 667 unsigned char hk_lfr_q_sd_fifo_size_max;
668 668 unsigned char hk_lfr_q_sd_fifo_size;
669 669 unsigned char hk_lfr_q_rv_fifo_size_max;
670 670 unsigned char hk_lfr_q_rv_fifo_size;
671 671 unsigned char hk_lfr_q_p0_fifo_size_max;
672 672 unsigned char hk_lfr_q_p0_fifo_size;
673 673 unsigned char hk_lfr_q_p1_fifo_size_max;
674 674 unsigned char hk_lfr_q_p1_fifo_size;
675 675 unsigned char hk_lfr_q_p2_fifo_size_max;
676 676 unsigned char hk_lfr_q_p2_fifo_size;
677 677 // tc statistics
678 678 unsigned char hk_lfr_update_info_tc_cnt[COUNTER_2_BYTES];
679 679 unsigned char hk_lfr_update_time_tc_cnt[COUNTER_2_BYTES];
680 680 unsigned char hk_lfr_exe_tc_cnt[COUNTER_2_BYTES];
681 681 unsigned char hk_lfr_rej_tc_cnt[COUNTER_2_BYTES];
682 682 unsigned char hk_lfr_last_exe_tc_id[BYTES_PER_PACKETID];
683 683 unsigned char hk_lfr_last_exe_tc_type[BYTES_PER_TYPE];
684 684 unsigned char hk_lfr_last_exe_tc_subtype[BYTES_PER_SUBTYPE];
685 685 unsigned char hk_lfr_last_exe_tc_time[BYTES_PER_TIME];
686 686 unsigned char hk_lfr_last_rej_tc_id[BYTES_PER_PACKETID];
687 687 unsigned char hk_lfr_last_rej_tc_type[BYTES_PER_TYPE];
688 688 unsigned char hk_lfr_last_rej_tc_subtype[BYTES_PER_SUBTYPE];
689 689 unsigned char hk_lfr_last_rej_tc_time[BYTES_PER_TIME];
690 690 // anomaly statistics
691 691 unsigned char hk_lfr_le_cnt[COUNTER_2_BYTES];
692 692 unsigned char hk_lfr_me_cnt[COUNTER_2_BYTES];
693 693 unsigned char hk_lfr_he_cnt[COUNTER_2_BYTES];
694 694 unsigned char hk_lfr_last_er_rid[COUNTER_2_BYTES];
695 695 unsigned char hk_lfr_last_er_code;
696 696 unsigned char hk_lfr_last_er_time[BYTES_PER_TIME];
697 697 // vhdl_blk_status
698 698 unsigned char hk_lfr_vhdl_aa_sm;
699 699 unsigned char hk_lfr_vhdl_fft_sr;
700 700 unsigned char hk_lfr_vhdl_cic_hk;
701 701 unsigned char hk_lfr_vhdl_iir_cal;
702 702 // spacewire_if_statistics
703 703 unsigned char hk_lfr_dpu_spw_pkt_rcv_cnt[COUNTER_2_BYTES];
704 704 unsigned char hk_lfr_dpu_spw_pkt_sent_cnt[COUNTER_2_BYTES];
705 705 unsigned char hk_lfr_dpu_spw_tick_out_cnt;
706 706 unsigned char hk_lfr_dpu_spw_last_timc;
707 707 // ahb error statistics
708 708 unsigned char hk_lfr_last_fail_addr[BYTES_PER_ADDR];
709 709 // temperatures
710 710 unsigned char hk_lfr_temp_scm[BYTES_PER_TEMP];
711 711 unsigned char hk_lfr_temp_pcb[BYTES_PER_TEMP];
712 712 unsigned char hk_lfr_temp_fpga[BYTES_PER_TEMP];
713 713 // spacecraft potential
714 714 unsigned char hk_lfr_sc_v_f3[BYTES_PER_V];
715 715 unsigned char hk_lfr_sc_e1_f3[BYTES_PER_V];
716 716 unsigned char hk_lfr_sc_e2_f3[BYTES_PER_V];
717 717 // lfr common parameters
718 718 unsigned char sy_lfr_common_parameters_spare;
719 719 unsigned char sy_lfr_common_parameters;
720 720 // error counters
721 721 unsigned char hk_lfr_dpu_spw_parity;
722 722 unsigned char hk_lfr_dpu_spw_disconnect;
723 723 unsigned char hk_lfr_dpu_spw_escape;
724 724 unsigned char hk_lfr_dpu_spw_credit;
725 725 unsigned char hk_lfr_dpu_spw_write_sync;
726 726 unsigned char hk_lfr_dpu_spw_rx_ahb;
727 727 unsigned char hk_lfr_dpu_spw_tx_ahb;
728 728 unsigned char hk_lfr_dpu_spw_early_eop;
729 729 unsigned char hk_lfr_dpu_spw_invalid_addr;
730 730 unsigned char hk_lfr_dpu_spw_eep;
731 731 unsigned char hk_lfr_dpu_spw_rx_too_big;
732 732 // timecode
733 733 unsigned char hk_lfr_timecode_erroneous;
734 734 unsigned char hk_lfr_timecode_missing;
735 735 unsigned char hk_lfr_timecode_invalid;
736 736 // time
737 737 unsigned char hk_lfr_time_timecode_it;
738 738 unsigned char hk_lfr_time_not_synchro;
739 739 unsigned char hk_lfr_time_timecode_ctr;
740 740 // hk_lfr_buffer_dpu_
741 741 unsigned char hk_lfr_buffer_dpu_tc_fifo;
742 742 unsigned char hk_lfr_buffer_dpu_tm_fifo;
743 743 // hk_lfr_ahb_
744 744 unsigned char hk_lfr_ahb_correctable;
745 745 unsigned char hk_lfr_ahb_uncorrectable;
746 746 // reaction wheel frequency
747 747 unsigned char hk_lfr_sc_rw_f_flags;
748 748 } Packet_TM_LFR_HK_t;
749 749
750 750 //***************
751 751 //***************
752 752 // PARAMETER_DUMP
753 753
754 754 #define BIT_PAS_FILTER_ENABLED 0x01
755 755 #define BIT_CWF_LONG_F3 0x01
756 756
757 757 typedef struct {
758 758 unsigned char targetLogicalAddress;
759 759 unsigned char protocolIdentifier;
760 760 unsigned char reserved;
761 761 unsigned char userApplication;
762 762 unsigned char packetID[BYTES_PER_PACKETID];
763 763 unsigned char packetSequenceControl[BYTES_PER_SEQ_CTRL];
764 764 unsigned char packetLength[BYTES_PER_PKT_LEN];
765 765 // DATA FIELD HEADER
766 766 unsigned char spare1_pusVersion_spare2;
767 767 unsigned char serviceType;
768 768 unsigned char serviceSubType;
769 769 unsigned char destinationID;
770 770 unsigned char time[BYTES_PER_TIME];
771 771 unsigned char sid;
772 772
773 773 //******************
774 774 // COMMON PARAMETERS
775 775 unsigned char sy_lfr_common_parameters_spare;
776 776 unsigned char sy_lfr_common_parameters;
777 777
778 778 //******************
779 779 // NORMAL PARAMETERS
780 780 unsigned char sy_lfr_n_swf_l[PARAM_2_BYTES];
781 781 unsigned char sy_lfr_n_swf_p[PARAM_2_BYTES];
782 782 unsigned char sy_lfr_n_asm_p[PARAM_2_BYTES];
783 783 unsigned char sy_lfr_n_bp_p0;
784 784 unsigned char sy_lfr_n_bp_p1;
785 785 unsigned char sy_lfr_n_cwf_long_f3;
786 786 unsigned char pa_rpw_spare8_1;
787 787
788 788 //*****************
789 789 // BURST PARAMETERS
790 790 unsigned char sy_lfr_b_bp_p0;
791 791 unsigned char sy_lfr_b_bp_p1;
792 792
793 793 //****************
794 794 // SBM1 PARAMETERS
795 795 unsigned char sy_lfr_s1_bp_p0;
796 796 unsigned char sy_lfr_s1_bp_p1;
797 797
798 798 //****************
799 799 // SBM2 PARAMETERS
800 800 unsigned char sy_lfr_s2_bp_p0;
801 801 unsigned char sy_lfr_s2_bp_p1;
802 802
803 803 // mask F0
804 804 unsigned char sy_lfr_fbins_f0_word1[BYTES_PER_WORD];
805 805 unsigned char sy_lfr_fbins_f0_word2[BYTES_PER_WORD];
806 806 unsigned char sy_lfr_fbins_f0_word3[BYTES_PER_WORD];
807 807 unsigned char sy_lfr_fbins_f0_word4[BYTES_PER_WORD];
808 808 // mask F1
809 809 unsigned char sy_lfr_fbins_f1_word1[BYTES_PER_WORD];
810 810 unsigned char sy_lfr_fbins_f1_word2[BYTES_PER_WORD];
811 811 unsigned char sy_lfr_fbins_f1_word3[BYTES_PER_WORD];
812 812 unsigned char sy_lfr_fbins_f1_word4[BYTES_PER_WORD];
813 813 // mask F2
814 814 unsigned char sy_lfr_fbins_f2_word1[BYTES_PER_WORD];
815 815 unsigned char sy_lfr_fbins_f2_word2[BYTES_PER_WORD];
816 816 unsigned char sy_lfr_fbins_f2_word3[BYTES_PER_WORD];
817 817 unsigned char sy_lfr_fbins_f2_word4[BYTES_PER_WORD];
818 818
819 819 // PAS FILTER PARAMETERS
820 820 unsigned char pa_rpw_spare8_2;
821 821 unsigned char spare_sy_lfr_pas_filter_enabled;
822 822 unsigned char sy_lfr_pas_filter_modulus;
823 823 unsigned char sy_lfr_pas_filter_tbad[PARAM_4_BYTES];
824 824 unsigned char sy_lfr_pas_filter_offset;
825 825 unsigned char sy_lfr_pas_filter_shift[PARAM_4_BYTES];
826 826 unsigned char sy_lfr_sc_rw_delta_f[PARAM_4_BYTES];
827 827
828 828 // LFR_RW_MASK
829 829 unsigned char sy_lfr_rw_mask_f0_word1[BYTES_PER_WORD];
830 830 unsigned char sy_lfr_rw_mask_f0_word2[BYTES_PER_WORD];
831 831 unsigned char sy_lfr_rw_mask_f0_word3[BYTES_PER_WORD];
832 832 unsigned char sy_lfr_rw_mask_f0_word4[BYTES_PER_WORD];
833 833 // mask F1
834 834 unsigned char sy_lfr_rw_mask_f1_word1[BYTES_PER_WORD];
835 835 unsigned char sy_lfr_rw_mask_f1_word2[BYTES_PER_WORD];
836 836 unsigned char sy_lfr_rw_mask_f1_word3[BYTES_PER_WORD];
837 837 unsigned char sy_lfr_rw_mask_f1_word4[BYTES_PER_WORD];
838 838 // mask F2
839 839 unsigned char sy_lfr_rw_mask_f2_word1[BYTES_PER_WORD];
840 840 unsigned char sy_lfr_rw_mask_f2_word2[BYTES_PER_WORD];
841 841 unsigned char sy_lfr_rw_mask_f2_word3[BYTES_PER_WORD];
842 842 unsigned char sy_lfr_rw_mask_f2_word4[BYTES_PER_WORD];
843 843
844 844 // SPARE
845 845 unsigned char pa_rpw_spare8_3;
846 846 } Packet_TM_LFR_PARAMETER_DUMP_t;
847 847
848 848 //**************************
849 849 //**************************
850 850 // TM_LFR_KCOEFFICIENTS_DUMP
851 851
852 852 #define KCOEFF_BLK_NR_PKT1 30
853 853 #define KCOEFF_BLK_NR_PKT2 6
854 854 #define KCOEFF_BLK_SIZE 130
855 855 #define KCOEFF_PKTCNT 2
856 856 #define PKTNR_1 1
857 857 #define PKTNR_2 2
858 858
859 859 typedef struct {
860 860 unsigned char targetLogicalAddress;
861 861 unsigned char protocolIdentifier;
862 862 unsigned char reserved;
863 863 unsigned char userApplication;
864 864 unsigned char packetID[BYTES_PER_PACKETID];
865 865 unsigned char packetSequenceControl[BYTES_PER_SEQ_CTRL];
866 866 unsigned char packetLength[BYTES_PER_PKT_LEN];
867 867 // DATA FIELD HEADER
868 868 unsigned char spare1_pusVersion_spare2;
869 869 unsigned char serviceType;
870 870 unsigned char serviceSubType;
871 871 unsigned char destinationID;
872 872 unsigned char time[BYTES_PER_TIME];
873 873 unsigned char sid;
874 874 unsigned char pkt_cnt;
875 875 unsigned char pkt_nr;
876 876 unsigned char blk_nr;
877 877
878 878 //******************
879 879 // SOURCE DATA repeated N times with N in [0 .. PA_LFR_KCOEFF_BLK_NR]
880 880 // one blk is 2 + 4 * 32 = 130 bytes, 30 blks max in one packet (30 * 130 = 3900)
881 881 unsigned char kcoeff_blks[KCOEFF_BLK_SIZE * KCOEFF_BLK_NR_PKT1];
882 882
883 883 } Packet_TM_LFR_KCOEFFICIENTS_DUMP_t;
884 884
885 885 #endif // CCSDS_TYPES_H_INCLUDED
General Comments 0
You need to be logged in to leave comments. Login now