File tree Expand file tree Collapse file tree 4 files changed +45
-6
lines changed Expand file tree Collapse file tree 4 files changed +45
-6
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.
55** Full Changelog** :
66https://github.com/SiliconLabsSoftware/z-wave-protocol-controller/commits
77
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+
818## ver_1.6.1-RC0
919
1020Integrate internal changes progressively:
1121
22+ ```
1223applications/zpc: uic#ver_1.7.0-unstable-84-gcb000bc912
1324applications/zpc/components/zwave/zwave_transports/s2/libs/zw-libs2: zw-libs2#zwave-sdk-7.21.0-ga-65-g3b7dcd7
25+ ```
1426
1527## ver_1.6.0-RC4
1628
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ It has grown as part of Unify SDK project and is now maintained as an external p
88## News
99
1010- [ NEWS.md] ( NEWS.md ) lists important information regarding zpc "split release".
11- - [ doc/release_nodes .md] ( doc/release_nodes .md) release notes
11+ - [ applications/zpc/release_notes .md] ( applications/zpc/release_notes .md)
1212
1313## Documentation
1414
Original file line number Diff line number Diff line change 11# ZPC Release Notes
22
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+
332## [ 1.6.0] - Aug 2024
433
534** BREAKING** : ZPC database version bumped from 2 to 3.
Original file line number Diff line number Diff line change @@ -21,17 +21,15 @@ endif()
2121if (NOT DEFINED UNIFYSDK_GIT_TAG)
2222 if (DEFINED ENV{UNIFYSDK_GIT_TAG})
2323 set (UNIFYSDK_GIT_TAG $ENV{UNIFYSDK_GIT_TAG} )
24+ else ()
25+ set (UNIFYSDK_GIT_TAG "ver_1.7.0" )
2426 endif ()
2527endif ()
2628if ("${UNIFYSDK_GIT_TAG} " STREQUAL "" )
2729 set (UNIFYSDK_GIT_TAG "main" ) # Override CMake default ("master")
2830endif ()
2931
30- if (${GIT_EXECUTABLE} )
31- else ()
32- set (GIT_EXECUTABLE git)
33- endif ()
34-
32+ find_package (Git)
3533FetchContent_Declare(
3634 UnifySDK
3735 GIT_REPOSITORY ${UNIFYSDK_GIT_REPOSITORY}
You can’t perform that action at this time.
0 commit comments