SatDump 2.0.0-alpha-520736c72
Loading...
Searching...
No Matches
vcdu.h
1#pragma once
2
3#include <cstdint>
4#include <vector>
5
6namespace ccsds
7{
8 namespace ccsds_tm
9 {
10 // Struct representing a VCDU
11 struct VCDU
12 {
13 uint8_t version;
14 uint16_t spacecraft_id;
15 uint8_t vcid;
16 uint32_t vcdu_counter;
17 bool replay_flag;
18 };
19
20 // Parse VCDU from CADU
21 VCDU parseVCDU(uint8_t *cadu);
22
23 } // namespace libccsds
24} // namespace proba
Definition vcdu.h:12