Commit e5a2d31 1 parent da976f7 commit e5a2d31 Copy full SHA for e5a2d31
File tree 3 files changed +44
-5
lines changed
3 files changed +44
-5
lines changed Original file line number Diff line number Diff line change @@ -5,12 +5,24 @@ All notable changes to this project will be documented in this file.
5
5
** Full Changelog** :
6
6
https://github.com/SiliconLabsSoftware/z-wave-protocol-controller/commits
7
7
8
+ ## ver_1.7.0
9
+
10
+ ** Full Changelog** :
11
+ https://github.com/SiliconLabsSoftware/z-wave-protocol-controller/commits/ver_1.7.0
12
+
13
+ Refer to documentation for release highlights:
14
+
15
+ - [ applications/zpc/release_notes.md] ( applications/zpc/release_notes.md )
16
+
17
+
8
18
## ver_1.6.1-RC0
9
19
10
20
Integrate internal changes progressively:
11
21
22
+ ```
12
23
applications/zpc: uic#ver_1.7.0-unstable-84-gcb000bc912
13
24
applications/zpc/components/zwave/zwave_transports/s2/libs/zw-libs2: zw-libs2#zwave-sdk-7.21.0-ga-65-g3b7dcd7
25
+ ```
14
26
15
27
## ver_1.6.0-RC4
16
28
Original file line number Diff line number Diff line change 1
1
# ZPC Release Notes
2
2
3
+ ## [ 1.7.0] - Feb 2025
4
+
5
+ ** BREAKING** : ZPC has been relocated outside of UnifySDK and is now dependent on it.
6
+
7
+ ### Added (1.7.0)
8
+
9
+ * [ Z-Wave S2v2 alpha support along Silicon Labs Z-Wave firmware (7.23.x)] ( https://github.com/SiliconLabsSoftware/z-wave-protocol-controller/pull/11 )
10
+ * [ Notification CC updated to support Alarm CC v1 and v2] ( https://github.com/SiliconLabsSoftware/z-wave-protocol-controller/commit/647aac3b )
11
+ * [ Notification CC support Push/Pull Mode Discovery] ( https://github.com/SiliconLabsSoftware/z-wave-protocol-controller/commit/e4aab0dd )
12
+ and [ probe] ( https://github.com/SiliconLabsSoftware/z-wave-protocol-controller/commit/e4aab0dd )
13
+ * [ Notification CC support unknown type] ( https://github.com/SiliconLabsSoftware/z-wave-protocol-controller/commit/96fc24de )
14
+ * [ Time Parameters CC support] ( https://github.com/SiliconLabsSoftware/z-wave-protocol-controller/commit/af84a42 )
15
+ * [ CRC16 Encapsulation] ( https://github.com/SiliconLabsSoftware/z-wave-protocol-controller/commit/cb377ace )
16
+
17
+ ### Changes (1.7.0)
18
+
19
+ * Standlone project, helper script to setup native reference system (used for docker, github CI etc)
20
+
21
+ ### Fixed (1.7.0)
22
+
23
+ * [ Improvement to prevent faulty devices to block the TX queue] ( https://github.com/SiliconLabsSoftware/z-wave-protocol-controller/commit/722028a7 )
24
+ * [ Notification CC fixes to pass CTT] ( https://github.com/SiliconLabsSoftware/z-wave-protocol-controller/commit/ef497b17 )
25
+ * [ OnOff: Disable unsupported UCL commands (effects)] ( https://github.com/SiliconLabsSoftware/z-wave-protocol-controller/commit/73ece3a7 )
26
+
27
+ ### Known issues (1.7.0)
28
+
29
+ * [ User credentials still Experimental] ( https://github.com/SiliconLabsSoftware/z-wave-protocol-controller/commit/8cdbbc36 )
30
+ * ZPC's UnifySDK related documentation may be inconsistent.
31
+
3
32
## [ 1.6.0] - Aug 2024
4
33
5
34
** BREAKING** : ZPC database version bumped from 2 to 3.
Original file line number Diff line number Diff line change @@ -21,17 +21,15 @@ endif()
21
21
if (NOT DEFINED UNIFYSDK_GIT_TAG)
22
22
if (DEFINED ENV{UNIFYSDK_GIT_TAG})
23
23
set (UNIFYSDK_GIT_TAG $ENV{UNIFYSDK_GIT_TAG} )
24
+ else ()
25
+ set (UNIFYSDK_GIT_TAG "ver_1.7.0" )
24
26
endif ()
25
27
endif ()
26
28
if ("${UNIFYSDK_GIT_TAG} " STREQUAL "" )
27
29
set (UNIFYSDK_GIT_TAG "main" ) # Override CMake default ("master")
28
30
endif ()
29
31
30
- if (${GIT_EXECUTABLE} )
31
- else ()
32
- set (GIT_EXECUTABLE git)
33
- endif ()
34
-
32
+ find_package (Git)
35
33
FetchContent_Declare(
36
34
UnifySDK
37
35
GIT_REPOSITORY ${UNIFYSDK_GIT_REPOSITORY}
You can’t perform that action at this time.
0 commit comments