-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVersion.h.in
49 lines (39 loc) · 1014 Bytes
/
Version.h.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/**
* \file Version.h
* \brief Provides version information to the ARDOP Modem
*/
#ifndef VERSION_H_
#define VERSION_H_
/**
* \defgroup version Version Information
*
* @{
*/
/*! \brief The name of the product */
const char ProductName[] = "ARDOP TNC";
#if !defined(VERSION_FROM_BUILD_SYSTEM)
/**
* \brief The version of the product
*
* \note This is the hard-coded version; it's used when \c VERSION_FROM_BUILD_SYSTEM is not defined at compilation time.
*/
const char ProductVersion[] = "2.0.3.40-BPQ-OFDM";
#else
/**
* \brief The version of the product
*
* \note This is generated dynamically by CMake, and is used when \c VERSION_FROM_BUILD_SYSTEM is defined at compilation
* time.
*/
const char ProductVersion[] = "@VER_MAJOR@.@VER_MINOR@.@VER_PATCH@.@VER_SUBPATCH@-@VER_SUFFIX@";
#endif
// 4.1s (Sept 2021)
// Add GUI Support
// Improve GUI Support
// Add L/R soundcard and LOGDIR Options
// Add EXTRADELAY parameter
// Add CM108 PTT
/**
* @}
*/
#endif /* !VERSION_H_ */