SatDump 2.0.0-alpha-520736c72
Loading...
Searching...
No Matches
mpdu.h
1#pragma once
2
3#include <cstdint>
4#include <vector>
5
6namespace ccsds
7{
8 namespace ccsds_aos
9 {
10 // Struct representing a M-PDU
11 struct MPDU
12 {
13 uint16_t first_header_pointer;
14 uint8_t *data;
15 };
16
17 // Parse MPDU from CADU
18 MPDU parseMPDU(uint8_t *cadu, bool hasVCDUInsertZone = false, int insertZoneSize = 2);
19
20 } // namespace libccsds
21}
Definition mpdu.h:12