libcyberradio  22.01.24
VitaIfSpec.cpp
1 /***************************************************************************
2  * \file VitaIfSpec.cpp
3  * \brief Implements the VITA interface specification for the NDR308.
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/NDR308/VitaIfSpec.h"
12 
13 
14 namespace LibCyberRadio
15 {
16 
17  namespace Driver
18  {
19 
20  namespace NDR308
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 NDR308 */
40 
41  } // namespace Driver
42 
43 } // namespace LibCyberRadio
44 
Defines functionality for LibCyberRadio applications.
Definition: App.h:23