File tree 3 files changed +16
-1
lines changed
3 files changed +16
-1
lines changed Original file line number Diff line number Diff line change
1
+ /*******************************************************************************
2
+ * Copyright © 2025 Analog Devices Inc. All Rights Reserved.
3
+ * This software is proprietary to Analog Devices, Inc. and its licensors.
4
+ *******************************************************************************/
5
+ #ifndef PROJECT_CONFIG_H_
6
+ #define PROJECT_CONFIG_H_
7
+
8
+ #ifndef GETINFO_RELEASE_TYPE
9
+ //#define GETINFO_RELEASE_TYPE GETINFO_FW_RELEASE_TYPE_PUBLIC
10
+ #define GETINFO_RELEASE_TYPE GETINFO_FW_RELEASE_TYPE_LOCAL
11
+ #endif
12
+
13
+ #endif /* PROJECT_CONFIG_H_ */
Original file line number Diff line number Diff line change 9
9
10
10
#include "TMCL.h"
11
11
12
+ #include "ProjectConfig.h"
12
13
#include "GitInfo.h"
13
14
14
15
#include "BoardAssignment.h"
@@ -964,7 +965,7 @@ static void handleGetInfo(void)
964
965
break ;
965
966
966
967
case 3 : // FWReleaseType
967
- ActualReply .Value .Int32 = GETINFO_FW_RELEASE_TYPE_PUBLIC ; // Public
968
+ ActualReply .Value .Int32 = GETINFO_RELEASE_TYPE ;
968
969
break ;
969
970
970
971
case 20 : // APIndexBitWidth
Original file line number Diff line number Diff line change 117
117
#define GETINFO_FW_RELEASE_TYPE_PUBLIC 0
118
118
#define GETINFO_FW_RELEASE_TYPE_INTERNAL 1
119
119
#define GETINFO_FW_RELEASE_TYPE_CUSTOM 2
120
+ #define GETINFO_FW_RELEASE_TYPE_LOCAL 3
120
121
121
122
#if defined(Landungsbruecke ) || defined(LandungsbrueckeSmall ) || defined(LandungsbrueckeV3 )
122
123
struct BootloaderConfig {
You can’t perform that action at this time.
0 commit comments