libcyberradio 22.01.24
VitaIfSpec.cpp
1/***************************************************************************
2 * \file VitaIfSpec.cpp
3 * \brief Implements the VITA interface specification for the NDR651.
4 * \author DA
5 * \author NH
6 * \author MN
7 * \copyright (c) 2018 CyberRadio Solutions, Inc. All rights reserved.
8 *
9 ***************************************************************************/
10
11#include "LibCyberRadio/Driver/NDR651/VitaIfSpec.h"
12
13
14namespace LibCyberRadio
15{
16
17 namespace Driver
18 {
19
20 namespace NDR651
21 {
22
23 VitaIfSpec::VitaIfSpec() :
24 ::LibCyberRadio::Driver::VitaIfSpec(
25 /* int headerSizeWords */ 9,
26 /* int payloadSizeWords */ 1024,
27 /* int tailSizeWords */ 1,
28 /* const char* byteOrder */ "little",
29 /* bool iqSwapped */ false,
30 /* bool usesV491 */ true
31 )
32 {
33 }
34
35 VitaIfSpec::~VitaIfSpec()
36 {
37 }
38
39 } /* namespace NDR651 */
40
41 } // namespace Driver
42
43} // namespace LibCyberRadio
44
VITA interface specification for the NDR651.
Definition VitaIfSpec.h:38
Provides programming elements for driving NDR651 radios.
Provides programming elements for driving CRS NDR-class radios.
Defines functionality for LibCyberRadio applications.
Definition App.h:24