-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Features - Updated Anjay version, updated configuration files
- Loading branch information
Showing
8 changed files
with
33 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright 2023 AVSystem <[email protected]> | ||
# Copyright 2023-2024 AVSystem <[email protected]> | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright 2023 AVSystem <[email protected]> | ||
# Copyright 2023-2024 AVSystem <[email protected]> | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
|
@@ -338,6 +338,10 @@ config ANJAY_WITHOUT_MODULE_FW_UPDATE_PUSH_MODE | |
bool "Disable support for PUSH mode Firmware Update." | ||
depends on ANJAY_WITH_MODULE_FW_UPDATE | ||
|
||
config ANJAY_WITH_MODULE_SW_MGMT | ||
bool "Enable sw_mgmt module (implementation of the Software Management object)" | ||
default n | ||
|
||
config ANJAY_WITH_MODULE_IPSO_OBJECTS | ||
bool "Enable IPSO objects implementation" | ||
default y | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* | ||
* Copyright 2023 AVSystem <[email protected]> | ||
* Copyright 2023-2024 AVSystem <[email protected]> | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
|
@@ -617,13 +617,28 @@ | |
#endif // CONFIG_ANJAY_WITHOUT_MODULE_FW_UPDATE_PUSH_MODE | ||
|
||
/** | ||
* Enables ipso_objects module (generic implementation of the following kinds of | ||
* the basic sensor and three axis sensor IPSO objects). | ||
* Enable sw_mgmt module (implementation of the Software Management object). | ||
*/ | ||
#ifdef CONFIG_ANJAY_WITH_MODULE_SW_MGMT | ||
# define ANJAY_WITH_MODULE_SW_MGMT | ||
#endif // CONFIG_ANJAY_WITH_MODULE_SW_MGMT | ||
|
||
/** | ||
* Enables ipso_objects module (generic implementation of basic sensor, three | ||
* axis sensor and Push Button IPSO objects). | ||
*/ | ||
#ifdef CONFIG_ANJAY_WITH_MODULE_IPSO_OBJECTS | ||
# define ANJAY_WITH_MODULE_IPSO_OBJECTS | ||
#endif // CONFIG_ANJAY_WITH_MODULE_IPSO_OBJECTS | ||
|
||
/** | ||
* Enables experimental ipso_objects_v2 module (generic implementation of basic | ||
* sensor and three axis sensor IPSO objects). | ||
*/ | ||
#ifdef CONFIG_ANJAY_WITH_MODULE_IPSO_OBJECTS_V2 | ||
# define ANJAY_WITH_MODULE_IPSO_OBJECTS_V2 | ||
#endif // CONFIG_ANJAY_WITH_MODULE_IPSO_OBJECTS_V2 | ||
|
||
/** | ||
* Enable at_sms module (implementation of an SMS driver for AT modem devices). | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* | ||
* Copyright 2023 AVSystem <[email protected]> | ||
* Copyright 2023-2024 AVSystem <[email protected]> | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* | ||
* Copyright 2023 AVSystem <[email protected]> | ||
* Copyright 2023-2024 AVSystem <[email protected]> | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* | ||
* Copyright 2023 AVSystem <[email protected]> | ||
* Copyright 2023-2024 AVSystem <[email protected]> | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
|