From 0b79b29e3eb4ebd5a613ff898c3a1f026ff01692 Mon Sep 17 00:00:00 2001 From: AlCalzone Date: Fri, 20 Sep 2024 12:48:58 +0200 Subject: [PATCH 01/10] feat: rework NVM access, support incremental NVM modification over serial (#7153) --- packages/core/src/error/ZWaveError.ts | 2 + packages/nvmedit/src/cli.ts | 10 +- packages/nvmedit/src/convert.test.ts | 23 +- packages/nvmedit/src/convert.test.ts.md | 1 + packages/nvmedit/src/convert.test.ts.snap | Bin 41727 -> 42175 bytes packages/nvmedit/src/convert.ts | 1464 +++++++++++------ .../src/files/ProtocolNodeMaskFiles.ts | 128 -- packages/nvmedit/src/index.ts | 35 +- packages/nvmedit/src/index_safe.ts | 26 +- packages/nvmedit/src/lib/NVM3.ts | 891 ++++++++++ packages/nvmedit/src/lib/NVM500.ts | 612 +++++++ .../nvmedit/src/lib/common/definitions.ts | 246 +++ packages/nvmedit/src/lib/common/routeCache.ts | 75 + .../nvmedit/src/lib/common/sucUpdateEntry.ts | 55 + packages/nvmedit/src/lib/common/utils.ts | 75 + .../nvmedit/src/lib/io/BufferedNVMReader.ts | 111 ++ packages/nvmedit/src/lib/io/NVMFileIO.ts | 112 ++ packages/nvmedit/src/lib/io/NVMMemoryIO.ts | 62 + packages/nvmedit/src/lib/nvm3/adapter.ts | 1289 +++++++++++++++ packages/nvmedit/src/{ => lib}/nvm3/consts.ts | 0 .../nvm3}/files/ApplicationCCsFile.ts | 12 +- .../nvm3}/files/ApplicationDataFile.ts | 16 +- .../nvm3}/files/ApplicationNameFile.ts | 12 +- .../nvm3}/files/ApplicationRFConfigFile.ts | 14 +- .../nvm3}/files/ApplicationTypeFile.ts | 12 +- .../nvm3}/files/ControllerInfoFile.ts | 12 +- .../src/{ => lib/nvm3}/files/NVMFile.ts | 104 +- .../src/{ => lib/nvm3}/files/NodeInfoFiles.ts | 12 +- .../lib/nvm3/files/ProtocolNodeMaskFiles.ts | 141 ++ .../{ => lib/nvm3}/files/RouteCacheFiles.ts | 88 +- .../nvm3}/files/SUCUpdateEntriesFile.ts | 86 +- .../src/{ => lib/nvm3}/files/VersionFiles.ts | 28 +- .../nvmedit/src/{ => lib/nvm3}/files/index.ts | 1 + packages/nvmedit/src/lib/nvm3/object.ts | 172 ++ packages/nvmedit/src/lib/nvm3/page.ts | 75 + .../nvmedit/src/{ => lib}/nvm3/utils.test.ts | 0 packages/nvmedit/src/{ => lib}/nvm3/utils.ts | 103 +- .../src/{ => lib}/nvm500/EntryParsers.ts | 0 packages/nvmedit/src/lib/nvm500/adapter.ts | 605 +++++++ .../nvm500/impls}/Bridge_6_6x.ts | 6 +- .../nvm500/impls}/Bridge_6_7x.ts | 6 +- .../nvm500/impls}/Bridge_6_8x.ts | 6 +- .../nvm500/impls}/Static_6_6x.ts | 6 +- .../nvm500/impls}/Static_6_7x.ts | 6 +- .../nvm500/impls}/Static_6_8x.ts | 6 +- .../nvmedit/src/lib/nvm500/impls/index.ts | 15 + .../nvmedit/src/{ => lib}/nvm500/shared.ts | 46 +- packages/nvmedit/src/nvm3/nvm.ts | 281 ---- packages/nvmedit/src/nvm3/object.ts | 260 --- packages/nvmedit/src/nvm3/page.ts | 213 --- packages/nvmedit/src/nvm500/NVMParser.ts | 729 +------- packages/nvmedit/src/shared.ts | 0 .../ctrlr_backup_700_7.11.0.bin | Bin 49152 -> 49152 bytes .../ctrlr_backup_700_7.12.0.bin | Bin 49152 -> 49152 bytes .../ctrlr_backup_700_7.15.4.bin | Bin 49152 -> 49152 bytes .../ctrlr_backup_700_7.16.2_1.bin | Bin 49152 -> 49152 bytes .../ctrlr_backup_700_7.16.2_2.bin | Bin 49152 -> 49152 bytes .../ctrlr_backup_700_7.17.2.bin | Bin 49152 -> 49152 bytes .../ctrlr_backup_700_7.18.1.bin | Bin 49152 -> 49152 bytes .../ctrlr_backup_700_7.18.2.bin | Bin 49152 -> 49152 bytes .../ctrlr_backup_700_7.18.3.bin | Bin 49152 -> 49152 bytes .../ctrlr_backup_700_7.18.4.bin | Bin 49152 -> 49152 bytes .../ctrlr_backup_700_7.19.0.bin | Bin 49152 -> 49152 bytes .../ctrlr_backup_700_7.19.1.bin | Bin 49152 -> 49152 bytes .../zwave-js/src/lib/controller/Controller.ts | 32 +- packages/zwave-js/src/lib/controller/NVMIO.ts | 260 +++ test/run_duplex.ts | 89 +- 67 files changed, 6169 insertions(+), 2502 deletions(-) delete mode 100644 packages/nvmedit/src/files/ProtocolNodeMaskFiles.ts create mode 100644 packages/nvmedit/src/lib/NVM3.ts create mode 100644 packages/nvmedit/src/lib/NVM500.ts create mode 100644 packages/nvmedit/src/lib/common/definitions.ts create mode 100644 packages/nvmedit/src/lib/common/routeCache.ts create mode 100644 packages/nvmedit/src/lib/common/sucUpdateEntry.ts create mode 100644 packages/nvmedit/src/lib/common/utils.ts create mode 100644 packages/nvmedit/src/lib/io/BufferedNVMReader.ts create mode 100644 packages/nvmedit/src/lib/io/NVMFileIO.ts create mode 100644 packages/nvmedit/src/lib/io/NVMMemoryIO.ts create mode 100644 packages/nvmedit/src/lib/nvm3/adapter.ts rename packages/nvmedit/src/{ => lib}/nvm3/consts.ts (100%) rename packages/nvmedit/src/{ => lib/nvm3}/files/ApplicationCCsFile.ts (91%) rename packages/nvmedit/src/{ => lib/nvm3}/files/ApplicationDataFile.ts (65%) rename packages/nvmedit/src/{ => lib/nvm3}/files/ApplicationNameFile.ts (80%) rename packages/nvmedit/src/{ => lib/nvm3}/files/ApplicationRFConfigFile.ts (94%) rename packages/nvmedit/src/{ => lib/nvm3}/files/ApplicationTypeFile.ts (88%) rename packages/nvmedit/src/{ => lib/nvm3}/files/ControllerInfoFile.ts (96%) rename packages/nvmedit/src/{ => lib/nvm3}/files/NVMFile.ts (62%) rename packages/nvmedit/src/{ => lib/nvm3}/files/NodeInfoFiles.ts (97%) create mode 100644 packages/nvmedit/src/lib/nvm3/files/ProtocolNodeMaskFiles.ts rename packages/nvmedit/src/{ => lib/nvm3}/files/RouteCacheFiles.ts (67%) rename packages/nvmedit/src/{ => lib/nvm3}/files/SUCUpdateEntriesFile.ts (61%) rename packages/nvmedit/src/{ => lib/nvm3}/files/VersionFiles.ts (76%) rename packages/nvmedit/src/{ => lib/nvm3}/files/index.ts (91%) create mode 100644 packages/nvmedit/src/lib/nvm3/object.ts create mode 100644 packages/nvmedit/src/lib/nvm3/page.ts rename packages/nvmedit/src/{ => lib}/nvm3/utils.test.ts (100%) rename packages/nvmedit/src/{ => lib}/nvm3/utils.ts (50%) rename packages/nvmedit/src/{ => lib}/nvm500/EntryParsers.ts (100%) create mode 100644 packages/nvmedit/src/lib/nvm500/adapter.ts rename packages/nvmedit/src/{nvm500/parsers => lib/nvm500/impls}/Bridge_6_6x.ts (97%) rename packages/nvmedit/src/{nvm500/parsers => lib/nvm500/impls}/Bridge_6_7x.ts (97%) rename packages/nvmedit/src/{nvm500/parsers => lib/nvm500/impls}/Bridge_6_8x.ts (97%) rename packages/nvmedit/src/{nvm500/parsers => lib/nvm500/impls}/Static_6_6x.ts (96%) rename packages/nvmedit/src/{nvm500/parsers => lib/nvm500/impls}/Static_6_7x.ts (97%) rename packages/nvmedit/src/{nvm500/parsers => lib/nvm500/impls}/Static_6_8x.ts (97%) create mode 100644 packages/nvmedit/src/lib/nvm500/impls/index.ts rename packages/nvmedit/src/{ => lib}/nvm500/shared.ts (77%) delete mode 100644 packages/nvmedit/src/nvm3/nvm.ts delete mode 100644 packages/nvmedit/src/nvm3/object.ts delete mode 100644 packages/nvmedit/src/nvm3/page.ts delete mode 100644 packages/nvmedit/src/shared.ts create mode 100644 packages/zwave-js/src/lib/controller/NVMIO.ts diff --git a/packages/core/src/error/ZWaveError.ts b/packages/core/src/error/ZWaveError.ts index ebcea83ad516..af3ed919fc35 100644 --- a/packages/core/src/error/ZWaveError.ts +++ b/packages/core/src/error/ZWaveError.ts @@ -87,6 +87,8 @@ export enum ZWaveErrorCodes { NVM_InvalidFormat, /** Not enough space in the NVM */ NVM_NoSpace, + /** The NVM hasn't been opened yet */ + NVM_NotOpen, CC_Invalid = 300, CC_NoNodeID, diff --git a/packages/nvmedit/src/cli.ts b/packages/nvmedit/src/cli.ts index d83631604f0e..40319719390c 100644 --- a/packages/nvmedit/src/cli.ts +++ b/packages/nvmedit/src/cli.ts @@ -47,10 +47,10 @@ void yargs const buffer = await fs.readFile(argv.in); let json: any; try { - json = nvmToJSON(buffer, argv.verbose); + json = await nvmToJSON(buffer, argv.verbose); } catch (e) { try { - json = nvm500ToJSON(buffer); + json = await nvm500ToJSON(buffer); } catch (ee) { console.error(e); process.exit(1); @@ -118,8 +118,8 @@ Create a backup of the target stick, use the nvm2json command to convert it to J } const nvm = versionIs500 - ? jsonToNVM500(json, protocolVersion) - : jsonToNVM(json, protocolVersion); + ? await jsonToNVM500(json, protocolVersion) + : await jsonToNVM(json, protocolVersion); await fs.writeFile(argv.out, nvm); console.error(`NVM (binary) written to ${argv.out}`); @@ -217,7 +217,7 @@ Create a backup of the target stick, use the nvm2json command to convert it to J async (argv) => { const source = await fs.readFile(argv.source); const target = await fs.readFile(argv.target); - const output = migrateNVM(source, target); + const output = await migrateNVM(source, target); await fs.writeFile(argv.out, output); console.error(`Converted NVM written to ${argv.out}`); diff --git a/packages/nvmedit/src/convert.test.ts b/packages/nvmedit/src/convert.test.ts index e36ab7fba065..ad3dfd6b8e93 100644 --- a/packages/nvmedit/src/convert.test.ts +++ b/packages/nvmedit/src/convert.test.ts @@ -22,7 +22,7 @@ import type { NVM500JSON } from "./nvm500/NVMParser"; for (const file of files) { test(`${suite} -> ${file}`, async (t) => { const data = await fs.readFile(path.join(fixturesDir, file)); - const json = nvmToJSON(data); + const json = await nvmToJSON(data); t.snapshot(json); }); } @@ -36,14 +36,14 @@ import type { NVM500JSON } from "./nvm500/NVMParser"; for (const file of files) { test(`${suite} -> ${file}`, async (t) => { - const jsonInput: Required = await fs.readJson( + const jsonInput: NVMJSON = await fs.readJson( path.join(fixturesDir, file), ); - const nvm = jsonToNVM( + const nvm = await jsonToNVM( jsonInput, jsonInput.controller.applicationVersion, ); - const jsonOutput = nvmToJSON(nvm); + const jsonOutput = await nvmToJSON(nvm); // @ts-expect-error if (!("meta" in jsonInput)) delete jsonOutput.meta; @@ -66,8 +66,8 @@ import type { NVM500JSON } from "./nvm500/NVMParser"; const nvmIn = await fs.readFile(path.join(fixturesDir, file)); const version = /_(\d+\.\d+\.\d+)[_.]/.exec(file)![1]; - const json = nvmToJSON(nvmIn); - const nvmOut = jsonToNVM(json, version); + const json = await nvmToJSON(nvmIn); + const nvmOut = await jsonToNVM(json, version); t.deepEqual(nvmOut, nvmIn); }); @@ -83,7 +83,7 @@ import type { NVM500JSON } from "./nvm500/NVMParser"; for (const file of files) { test(`${suite} -> ${file}`, async (t) => { const data = await fs.readFile(path.join(fixturesDir, file)); - const json = nvm500ToJSON(data); + const json = await nvm500ToJSON(data); t.snapshot(json); }); } @@ -119,8 +119,11 @@ import type { NVM500JSON } from "./nvm500/NVMParser"; const nvmIn = await fs.readFile(path.join(fixturesDir, file)); // const lib = /_(static|bridge)_/.exec(file)![1]; - const json = nvm500ToJSON(nvmIn); - const nvmOut = jsonToNVM500(json, json.controller.protocolVersion); + const json = await nvm500ToJSON(nvmIn); + const nvmOut = await jsonToNVM500( + json, + json.controller.protocolVersion, + ); t.deepEqual(nvmOut, nvmIn); }); @@ -190,7 +193,7 @@ test("700 to 700 migration shortcut", async (t) => { const nvmTarget = await fs.readFile( path.join(fixturesDir, "ctrlr_backup_700_7.16_1.bin"), ); - const converted = migrateNVM(nvmSource, nvmTarget); + const converted = await migrateNVM(nvmSource, nvmTarget); t.deepEqual(converted, nvmSource); }); diff --git a/packages/nvmedit/src/convert.test.ts.md b/packages/nvmedit/src/convert.test.ts.md index a4c27259f56a..826824858ac9 100644 --- a/packages/nvmedit/src/convert.test.ts.md +++ b/packages/nvmedit/src/convert.test.ts.md @@ -6984,6 +6984,7 @@ Generated by [AVA](https://avajs.dev). > Snapshot 1 { + applicationFileFormat: 4, controller: { applicationData: 'ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff', applicationName: null, diff --git a/packages/nvmedit/src/convert.test.ts.snap b/packages/nvmedit/src/convert.test.ts.snap index 4a6b6a846e103eacb0189cf3228831bdb1f936b2..ed38022ea37489369297bf17599118c8ac5650c7 100644 GIT binary patch delta 9108 zcma)gcT|&4w=PmbLhl6WML|k}AksmKqJWB&&`Ur-sR0Zi0-+={5d@?Oh)5FxhTdzC z-c))gARQqziPY=w`@VbES@-;L&YHF6kNxib>}NlFX4cGm*-75oOD>}U(-1K7fFpdK zdA<O}{rpbGdE(8}iPDw-q*Y@G?Jp?+m&@D>MLiZcy)7u4 zR3`o!%yFe$oJL6O6FKBFd*su$`?o90>P)sgk|`7K0GTvHM40Yt3Y6?Lj!(EOOuJM= zs*#>^#h%s{HWkB}%Jra%WkuA_q+!+JprKur<8+_h*)`>3nhXxwSDds^DUNv?$-weS z>#qn_W?>WNL?~&Ew)_vi7xf1}8A!kf65a<23fq!QS`6MoO9nY>R%jou(c)HU`B!N# zhd9Y;(Ij%hJ90nf!t^L`X^aB)PMU$hfEZII6+Vod&_WKs8){%ApkgI(_BfR28%n$z zDximsx~AEB4gXvZ9j%9!NCnDEdU4+D(*9~@@^w%Tt(*eXO98T@^w7Wb(9S79l$B6m zl{U#EnyJb-%2qtH!dStz2(f3_UT)lDBR*SiEM_BaEQRFsiinPqHDPZ2tsMNKh`4V^ z$jZm3>QUh|1uG2JZN*~6*@mEOUnJQ)#MnF_YRJmzv~i0lkvsL_>^RPt^~#uMzdSW)?#tP zAII{^6hr|7<(h($OhKllEUTp~9@f`>;=DO;&S`&jydIRAacKSghx|z1u1ivjtNzIs zlQ8xtE$U>+STrvdy#@n$ZZozOV$uAjpmr<i6g#AhL9pd$dSn@ z(f=&L`az5}*!Fsp?JC5sCOU-8q^-3Nz1xreD5rULmGDjuKjn(n8wbY8X%1Z_e38@K zyPD(urp)IJ@$c6+a`-}56qo_5Go>=MTT|2Ma1mEiaJx-`+X4_0knq z3OK8}PgeJ(I6cHUgN-015KfnVOm`o~v=4LKhr#tx?N)0ZTEN>Z;D;8+Am=n-k0F)5 zg@nGfgjFM~$4X+he8HSx0YA6M@hTHy%{rW>*%QH0V_>{75NZnCH3r(kfHqs`9;9X~690S)9leE?7zY(? zp)$YGfeG!lz@!$c>p`!L3D|KE`xZI^i8tCpPmF{3zp!33KLT1ozv4I}N;rqC zp!(L(0SgrLX({K9+21Y8IgaDJI?+hm+N<3rRUG0xK?^PAoVS3UIW(7fHZ!$otXFD) z%QX}{!x4V~@Eri003ck@Yi zO+ct3mJ9Q1+gKJn7Na(Xk8<$?F}{Cb<~E-0IbQ#@#HYyIIRQS+T8yDB#$byvFUL^$ z(lO28Y6BZ7w^EJ|#T*v~QfJK;q#6t2f|%KD8VY$DXE(M2H@4vV??Ka@PAn-I$doi> z%GIxb&EE1fe(r2B@-!ygm^p3?r#y|P2iryY6VmQI!52wy>mGn>9w_)FNe3k@&Wa2y zh|D(jTA%64g0S=~y0<}&8R+SUc$7m1+EgC2>&bFa{eW1?Z10Lraz&50qG?^wSXXq_ zRl@jH!Pa|XIOdx1Iz2JjBm%V~)tKL( zm;C9$u`@3zIU{N8&f)9HVKXb)R6k{nw~z&G4Jb`yAYt#3uymxyE&bC<)F9q8g9<05 z`I95(k^_Fo0sp}PU*&+$a}ZLb@LHDW3MtJw4#J)k9&3p{t_5CB3z5bf9=}RTM-Mt> zSq>;|(JeW+P`Q>$=fM;zVRdyd#3;>FH9o6a)2r0LTw=R~{R57D{xiE;5qt1w_OLC= zS6K*`tVU9REQsDIYX&u-#7)1{JqBXkLicZ>>yh|RN(6Z%zE}yamqj$oBI;%lZL)|a zS&P%`)lj@-GuHH(djZ_2UhDdzORai)yZZf#+@0tiz9 zgrfk$asc5pAg3GFUSpzw#7cW$rQNY_n@oD<#Aho_%vw-mLF9}Xz5b&DxdB*%Mic)R zSYjWHfV0HlYH8HyHTA<0hT+l$8fmivR&xS*^1xa-AQe4+8jzEt;oqR)U)pZn<=`aq zL3%6jN6EqS4obCWOlq!7!EQ{NHK6DjG<*i_Qwx%<0S&q1&)o6NGidf1^m})F#|%2P z7PRYzVr`kc?(fbiRNMG?kxQ0qnCt1`41{hP5<3UcpMqF5TKCLCW?QVy8m!G~ttVTo z{hb<#g}?CKGnn04T2*c;%UtQIC*TP&tLb&f@=K%$Zt4yGC}vCofW^GQyT^=e6(=7r z-OKs>#0+QF;#lV9#`gO*O{)(nT01WKyua~e%MMn*toSOf2T`Wy9)^dkF`g(w7dL( zz>DpXIqjR%)|xT)$f9;}zf?pL%3iL+?x+otbEmxF2LjRO2TE>4^Tw=H15m@iST1zR zb#E%8edxo_9aD)H5Q1yx!}Xm_L>$(7+w9sej(ay?j9lo) zvr_s~QdYTU9N@G3T@G(HtRn!c>_>Yn0m}zq*&8u(F(w!d%Q=r6uUZr_*53R%$EZbz z9cos+xt5KS9)KP8rM0~QdjpWbscN?I`C;b(gcQ}Vpm=HH^1uOoQc^_w(7bSFVV(cD z^rYh}H1-&Hz}BBici}N5d}dL8lGX0A!Iz_59x!NU(u@kIjv3mAmzn3<&5q&SFn%vZ}AzAZ(UD5 z>U(02!v?n`!4@3mR`RS5tB0mtZ*EpO7mu{)r`No;M;o+cH)VdG@WaPJu{)}Z-O}vu3ZAaDl=<`$T2#Ud=aPBHKZstk+<<*Y8 z)+cYiHb>kSDN1<8=qy24N1C3h!CemV$iq0Z!-hRB6~lJRTma7DQC6u6`6_*SAIR!p0Y_Dfy|$&a7x0@(s`ppT!ZMtbSeeL z2Hfm7$9sn6h5SRV9BiXBlBczjuOi7hUd?a*@qZaWYM`$CP&`$(!yDx>G;|t5;akUm zZW!DBD7-z_Tyn5wlc%z!`1U0L>G@HXQR#&sA2p2;^}cEd7jKX5=mUuF?t$~xcH~FqRE%(|VwdWgZubYZjUg+YgK?SE(iX1t8$+1| zAah%GQW9CPbQ|LrVmQ_5CGIes^K8*oz3imJ`~s1sKKqL?`GVM_9=OQJdM3^pl#*~ahGhJ8<+~fyN4Pu10Pe1hwghb8i$aAm{7oMDorz{SYQ~J2EylUh2_VF zjNM{^&%m%Q0e?Z@yrCaRh9}YgT4D|)@@bgx#P^0d+HA#!je?osnsiAvBi;?EU5`Bm zSc#BT3B=E7EzilR3O6NHn6YZ|=ip`!#&aG$rUW%bJqx-&XaqW*!(NWew)~X4=dR%S<>ID2o<(QhZ`fa;)2dZgMHfVsA9WRYkw#LiI{r=C4BbRSKg@+}3!UeQRVLEw*L? zyj4W+TETo>8iZece>V_YKf=T1leLWVd-_yiM9GAC`gh{TA;TWknyDck=ihEpt4|e|OKtPH!t@jsYgIqrRQNo7lp?E$j4KS>Gu3zS_U5fGdblz1zT9X~lQ$_T zH4rsKu2Uo1k)Gu9z-H*kC~Jt#IcAON_du`Shozq0tjvTZtI5r>#|J!44FiIbqR>AT zC2Trh4w_48L2gfAk`+ut3U%*Zs3g(vJS{fX#~p zVF|2Bm7oTB1&>eGh>@oYZ~tquP65fa0G%3?Z2pEJBA~K@Lw!>@mz?uy;cA0IVoL3s zYOCKX^#iRN5{^+lI*^Q}h&RvXeUXnjD^u>SJ5D?-l(#nclgUcAM%~e5CkBE+3Yx~Y zpqGVV1dJU?0UUsC>tU*sr1aK$XMLV*J@>($=c5XjXuwNg2}5YN)?yM<6bU2<}mRA9PoB9@GKXg8cwtTpMe3<1nHYr2_srr4_*W){6u$DApBK$ zT4*9a1HoKZWQ7Fe$ai8wegG#~ukdT%L5Rf0q9ue0L-!}yK)8E&`2;5Zd^#?B@cyh= z8XMKYr;iFWe6PcfKi&D1<991ICIY3G3-`D+%SuoGop|pS6UDjx;u1KGp8{*YxCbT) z+~bm&mVSzm)b7H6Hmieh@I_$;%ZY}PfgE}xr{Bsg?CPir%olIdx|Ox*aggxjdtL|+ zp1iJhEw3`EM_fN#>gGLO=FDX;D;Y`&$q6e;K|9lB6otFfGgE)*TaLQ<+(Y3QGDx>G zHcC0%YnHp$ZgJZZ?0E{WKHin4FWA^>IW6o>C!}SqHa+cnI*fHRXmB9JNp?0z4(?`q^Ha3-7d(ZW{LaE*g*z-YlP_g#>#TVVZVe9oz z9kxx6`2zwDGCvvLjVmd6p8gV5KXfC#_do?IG^hScr(jioz;`}vZJ@_wXtQ|u%kXJv zk>bOKffMNC!J$E)yqA3K%I+GzuhuoSy{+P2*+s}AcaAD$E5{t?MLUqt;}Ch?gx||> zASpESqN5^{>qZfmk7(Yii1U!26LepNB7SXuHAB$DseS5Uq-Vf;hZY~yiQ}?rygymt zQh_Ytn$(HKqo@y^n5t}P>qjMnsn&u**C6F_J-z*XeFHqWJQBC2bMac`X@S%!M*WF%D~75F6Wl07B@JTcwe4fnpZG z;p1nNVz599<7{pg)W_>rZ0?5)8)tg~O53BE(t+o!bLU;y;BFDTc{Jjo(3$v?Jy+Sr zxttcR$wC!oaaO{HHpu{){Om3G8@FbFmc6H6bkL{{b>t1CAw~Y=#q{A2Ds1*qTh$en zR0*=j-H*eSSNx{EvTg?#@{+qO`|UjWlf{7eOuz6vGGtny6Xi=Rcr)K?vd)W3^u@W8 z9 zW82Ai(B3h`I&9&)@MEWoioh=*eXD zP44n06zD-0))@9t1n6?>GAF~Mfj7oiffRpJ%Tl~59_4bOb-=HaeMyScyUK?<>+V(e zxo`+exSZSwy#zn~sSe}*6JKT*1&Szdm#%faaCk0py+Q(f!9zDM_zg5ilCG1Z8;@-F>{vXIj@o&D zNxG|$iQ;A$Li8|3isA|92x44F3$yff@`74#fn%LJ4wOyoSLPECh9df}(RULJ_&|?! z@S+LU`}~9_Ox#osxdPW{ICM0E*qT_VY_&r@Z;8}+3#8ud;QemEOW*oB0+-v)N3qt~ z)&%Z}551Rs86`va2S#@$2MBZ^jGCo!(aLw@QGI5U+_bo__`*`2`<}E`PeZL}ORCx& zI7nZ~30~6I8NNh^+hWgj0!7cdyF7^e8q|0c-M6#uXba<8E9ygIXWh)p>Z>jn%Vk7< zst=_2=Bxw$-QP-^$S&5%OQ7nP*Q?!=hP*;DU96WkYke-3H3m^UFCex1{IBA-jMaXV zQ1PuVbys?Z{=^%}U3#sLueiqFy7a=a^HtzoBt|U=UJ^|%m{tpds|0CMU>ZQ-Cfx-{ zaz`Z7uTCv;a7(ILo$0XJ8BVcZmUjRcXBHhZ6fX(qAL!MpG!PTp-O|dju*rC7c9_Bf z1LqX{11|?wt%JTyGmH1?FJk7Byx|e*)LFU7HS%&gr?&4oIJkEa=|Qe~%ZZk@qPkt;RI9XIjNOQqmSyG;(Ja~& zZx`_L6jDh5USbz-G|!#6{9cx>;NQHKX4%<1vdh9JzMG{oxcGLTf?tHs=YF{R#1luA z?QXv1o46X1w^u6S=DJV&q{hYc4NeoI~BJ zg0>IO`{jR`Z*}J=G7Ne>i_`Mq={8O`@ZrgFtX)-LP%Dz__F9r0`;S}PQbS3SKpH!0 z$A?GwUomqpMt-3^A|sc+%1t9Vy+L$2n^}C~mpx?_)*^8DpLs z5of;6wF+L^rdzG!GW%hjmV43$XTYHz^dk#(-Y=8K-_rRh6lx1Hj_ly?Aj}}v`LC?$ zv^4?!rO8pZ@3pxy6Rjx^QT#$xc+7b5XB?3ua|m7IX9M(j`z1VMeP}|xW}<1TbrWs zad4=x{GXF|1N9?5ybo7;d?gqM5Z^LKw-2vpzT8L0RbWnoW~xS~rsBqbxQ}?brB_;9 zdx-LT`g71rWNp<^xpF2@&h)`-ybsLRN!P~PqcHdAnH&OorbmDu=6rkhHbSv)O3$UX2m<9H7V!v74HI6=e!k!t)xy0M`+XOKK znn879vB*XnTi)jXx)DI}P-To5H}apw${}jbm*55}R&0#4OK^7;6?Vqm?(kZ6Nf;Q8 zDT4KsX%?}6D8uW()}M!ezg;&D@SCyAr4M#Cir97p?^|-8JqxE)*00fuv!zQWA#F+D8=+cR6#^va?0zPhC)^eKzUKTMK$=jAHU3J#e`WJx#qE}4xcO> znhMWzS%vnS^xVZ2uppnTrOaLZjKunn^{3paJ7sY@MGuerM(Fq>3NBvD7){@Q)xoIq zX+~*0q?8zYVNy5F>Z zR?Oex#05mnP8{M)4_aSkTpX#jJdkFbT)v{wc)1-k`f*Np7|kmcSHM2~=9iC(798+# z=d%`k`NTg2zj~yY2MStZYK#o0lTi91YjNH?@qKt*N5%0_M=4j;x$0yqM+=qkoe&f+ zxwS4^1C8CHP5q7e*^;&&srE96u-ZbjvlTOnJ!f}VIB6-%g*MG|Uf`hG$6Nb3^uj0Y z8|RCg!3ZODu_t~T&nF#q)cx!Do8}lVMi`e){itM5KFsqE?J&k&AYP%wjQpad+mMXM zk)o#^yQhthr$5Og?;c0SpQ1V#W8j%CU>UMcfHvZl)z&0hrrmz(HaQ9b_mIZN*v*6S zD~L5RF&LeDG5m<^GcOsmD4e?-4+XTnr+0WvKJx&v`M{bO+2)7A$J?iG{df$Pq7!zstL z55KbKYizlFP4S+n_vjSpEE)kV%$Snw>p7S&0cAd*d+$qCOQ&12 zPIwIWE0uX{M)(=~ev+Q7elN-RX!o`vO*_a>W?Pv{lUj4>4p@z;ixJ%qz-NY**$K?b zGr{Q44=Lcgcl@6VoS_^A&U^&6xq*c6kGle3#hxIIO}MwHuH(<}VQxxJhA=F(#!>?T#gHav8m3=zYC4irGEhv`0;yd$CwMG};Dh&rYGG`gZ(ArW{c zgQT)?XzQL4`~?e~#Tc!R6G&;M7jfi^; zhs|&Jc0Vq6Sky{-EU?Ts7%A8CeQzKXteXAa7EhsgXLft;m7M6F^-of9xL?FlBU=5V zR`x4NpLb>rD7!<5WXn*zRx-c)+5Xp&#KiX@E8ibHh?WBT&^Bgfrr&H`>3^6CKA=}j z=TmSxW#EjPa%LmaF6s*4TqEjNESB3ToYO2@R?b31VTvwq?Fs6T$45~sIR^B|IBCxEukWIm4+ z>lDiysrk0LJO23>RCi8EwDWF*lQS}GCV2dEYr8TZwEf;!K{}BTvcpv~+h+wvh&+kN z4q!cdTTXw4y7%@Awo8iG&dWOvd+OiJ&KSdjHKcC<_eUd3i-)OYTYb#7rm(RdPA3D$bjEDo-r?2u?D1|j+@2d_um8KLOg0fiweLHrC6SxV zcUo8|E^bOo1Fm~s(p7w7eUo^H&Mhu|553 zp;8?F+Iw8MlfWr*R9PGKKOPI_cG*;Jo4KC9BHD+aV_xH;e2&vUo;0a3$Sf`XR;b)R zZD*>TEA8g!;?;go2iY-rhc0bq_#~}XFp(n`yKp%oQnlSg5V%&QO^E(`oS^chFH(oD zt>Z~v2H;i!K1g)r))Jx1zfP7fW+_L8&$p}NV2^lDC6I+t{j1hviOCY_Q5t7U0*k~z zjpi5jofH{?OL*FD3Z+*Vis$hzy~NC$`0SGXY> z=~E`{vgm7O7R|ZOdI9`X(u>O6lv9H93|iZW0^WjYcnWXDHqlj?Z3-T4&Dn*7TXA;9 R`v#w>$8)c`lBH0R{U7yesDuCj delta 8664 zcmbt&byQSs`|gY64Bg!+AtOjhy|f@w(me*9BEv|H$P7pbDBaQu3=KoaMnYOjYJdR& z0f7M|BoFWVedo8<`Rkmu&U)6```-7y>$;xjxp#DYy>;DlOG?dLjpwl!)W^@o`y~%d z8cg_CmlrF#ebn}Lt6B+wWO^E_AtD(fL%Aa5@x(s*I7%5&Eu|fX5KagYmQJh^jbYIw z{!BiQFJeO8_>oCbfKanWA-zAp!SZDK1CoZ!Mpm7!L4XL@vd372ppVgLbc5T@%J_5< z8vSr^@L9G(zzh0keSTNV-5WU@DjNYguU_mP1n;#0DQiI38t`xswIso;V!tb~!a+~F zQOZ|nM0SUP4va!blcV-gfEfxHMyVU*;ltJQJ{f%yWq>h(4Vl4}j9|nahATUf-?!;L z#2{;Z#H z0OQITfgUlWcO}g)F`^AHE{9Ql6P)LT!o2lPf7|$gvHB!owa=VPvXW-enm4#c9WO@v zL=VX;2>cNQ)&v1cK>#fXa0&w5g6glL#w_`ijQK8FHBU97FmGcXY3dtkT^uH?N7ize0Kfz{VuBMcQrG%CW-6*=C3?|ndaCgmKWf73lAO?}$I_t3 z(xI2upqExVVDm+Qp7yaRZBrTYjTr(6DMOl-AiONYL9$9y0kBMZI+`eS1QUP`LV}FK;QN zSwTxuLEBqSD}<)4u;Cwa;1{>&SE|#t#AwenXv1H=!`I3H^X^E)X|gMKRAc=jUxh5~ zzNgujv3j7t9zeOH%D#g!<%|c@-~jFy)-~pzti%*q@gU?)tb6(6Qs_T#paH_1hbboGgAtAKnl6)ZRUYNRPPJi z*B7{rHK1i}@z#0s2VX4A%HJQZy)V}6^Wf?)*BAY=jlZUIhD z2FCSpeaS$CUS6IFywwC=WCAZSIju9nSJJJNBJ<3E8PPq^MjBcFV`5ulLH$a)byHB2 z8Gwz^!` z)iVWzPXQTjQ1^PgOFjNYJ>I+?uUo&2F@8HMLa`{4g)vU6F>VYkNN6&)Y&JgK*Y+m3 zLr;Lo{4F81X_F6j=rI1YD00u6A+*^T?pc7}cn5UIfkWJoKiHtp-uW26gS2Tk79q6z z%V>8iX!YEX8Ekn)y*8&N^aKH=w{p<5_NBCo<+NAU{2b-9`LZBFInYyCP@){@yC>bc zHyx8V9oL*dIaa^}E1=Y@3xAb}pBC~a2uLS8RXYg@9fWLNbo0C^*i{wg7Iwf z6>4ygR~n=$`{1X8aN#t_)gLJG2Zru<84EAi3o983mw%>jm;{k-Ayc=IOVc1k89miB z$oL58420^pVUUr-0^)Mp;`g@2Ww&ji(@o=$9o-`!`3QJ-1OS0JL`7g;mHnr3X4oXT zDw;XeSn{IU{B)5L$z(qx-db&Sy6uGP$V9!BP~T#L{$|3}NB~0;Z=S~ZoHOCVBod09)ChS{lG88`JJlR_+D9WkeL&mY=-}In*a38G2P!wR{tC!Igd2NfI{a{X*)o|4luI=FwUc9 z=TWG6lp=;)b@on@H!~ZC+|YyB9($*?#qP8Z##_}DG-op;;32)e;59w#Lc_hpW66em zPYGyI0vL9ppzvi6nq5~KJ$B?A3Dhtg9~_R~Cc%Z1;08%}%Z;mKz|L}kG2T*%V;<9p zrit>}9-dJ30!Wc@V})_rl8Cq~L+FA?xi>?D95`MMTzLB@538RYZamk*tcy-<)sUBYm!^pok-?J&@89q1C(Lv1gp>-Bh@0PC!f%xwJ=f)viJ2 z!nBf!lFmT+4g-@;xMC;X7OT_HTBAvEQyKE%VPIkya35Zj;*v|;FSOct?38WDE`%>} z!buJT7Q^bN2E6_ykiZh3Sp(>_L09$T#*h+xrvY@>0J?2}d!G#qDxwe=7?^vH;Q|J_ z+tMnGk4=x=ppYWjql?(1>)oR(-l1FnMfV~AGzbHU!9eT*pcWWt^cP)d{X;k+72k6w z&mqRqlUBQ)jNTf#R|g-2+jD;P_KK2daAsLjjK_HhfWVxa#du-yD0puYta^03TiR))o9PKs_<|Xuv#8n|f=ZY<; zZN{>AO7p`2^4aLAB}(&v9j0C5@~h`nq6+uIWum9lYJY$jrh3+~>IEzL@m*W{SU@`3 zOm%ADx*iL#x1gvQ2OorYRKmzZgIdval;+=pkeWRMPpa-C{Nf>c)od$c&f+KL`~23E@Z{%}5TojhXI1x|D2c`4-_+X(_BagKCm7__eaD9b`}zLvMy_PNnT z*7EXsF8=eAsV7wj^ODG4Ck=DXG&zk9RXfbuw^QOXL5Km!jNm!yYjlh=Ww>37L!)a) zl~Hx@*X6yDOMsfOESI(1{1@{8L)mu<^P|Y(?;kBM=Nyk_LUFD=TaUcUjPBz)sK(vn z^a2r-#=4b$rsLZb$-mh?f3W8_9Tzj?ZM)dj&}wrk`;_`v?MBvl-j-5YZqYsvh&>(7 zt~=x0<`Uk?s|=YA9W*Xcw#h!OAE;AiAT3J-Z_@o#-U)s_XIH(Qc65?tb#C_2K=I+) zSxQ4MZ*!zPTz`HP;)(E|BiO1Vq@18KDM4_S8z^dK!-6<2Qu3~@7$cUhWo787S@_-; zYv)U6?H~)5+Op3zOTWd8e^d1Ow%xO|ybrcVv9(qx_+t*>M6LWVji6X8q1!K|gCc%7 zW@~x#|9Kqo!Hp3*T&;ZLM&C$uw2#1gS@TJFZz8@uO!Y&2woBZF0u)GPI&NKuQ zmlL-rClR<+a&UIGz_z^IHe$CobPT6$qn7Sg>?jDyAU+?U=Kxw&1p4Y^0Uyl*h}x(6{y@BiB`gu<}qcfA=w3otcgR zE9S|T2Y;shna0J<3y|J~p!kV$N!cs$yUrSsOt$NY%g{_8xI)^(=K9bGl z%u}8nFW7Ky-g!TAt*x!y5X!{!@u=v^f9#LR_1NzPj#Ozmu|b@v3Yg}e~i z6=n)b%5sYHIf-}g4(8rhrDaM>`h|woPQ5xGN8~->%6Omiei7j`6H5Go z#%v{6C$2j^UFEB9kW+Jk|71l$(TTB>npeY9H|>(Wx}MFA;WkIFGlf-#?)LOQ6HVl5pVBgl+qlaA-MhBl zRNy|EVUm!zc-*1?oo>l5dc+TLe_bKVK&LnMIDYTPxj}THlCx6-w&|I**T@Cyan_%> zDDqzl3UTFLW|}X94@+7Y4&u-g@ArHbcl&?hOAMMEQp0pi7jhksA9T}fv^KOF!{WY< z`V~5l941S4MY{&K5AF`UEO7|xHIO6s4-Qp3D~kDLpcBWhdY$p+f_Q=x5l5jDu}5<} zDET1QX*A%`@K+ykuK@Wfe=6tWoeYgU^TS=B9J#K$x77f#Je98vHrh`~Wx$2s_}?X&nkp^k4)tud5)8_?+n zGEe-%%dm5#D327yO1EP$%MkTrgW`*+!^&kws1XxMQ1`MNbeWqfyc_zYvBtfsrtJH} zD2*g$?3ZEk$Z{VMipUTg-b1 z5@=-sacimDCh?V2-cM{KFIcV-@zGR+GAOYU@7?^XxJMBk;rk6D%_dcV%X4vwijXVl zQY9IA8^(IKN`OT4>GCGaDUUX*)B@z0skp!w;MB7JEo!ZLjDfuJ3(!|h!$SJm*C&+2 zmYp=9Pc4MwLY(Rf!A05tPvf8_U(JJXS+6AXu2N{Uvr>1&M|Kj)D-t*fcXEQN?hsH3 zbc%uS&|ABsS<*bT6$V5WeB}?3ee}3+&9{1Qe06>N=q@0-tm9AQm%PqZu=+bk>UMH!(Td#p67>g-=+#h;O*CCiw=0G=RxY+( zXK*MSH(ABGJ3TsTvyO0@XC7_FWh`h>Ie*uxKP&MbmGrqUH7<3>{XCJ9Eai3W2&;^? z{}ik|yU+(w4t>ZuCJlc1ulK#ib>^|^ZRzh$Kp%;r_K^DU=eq0e@MkI zwHe0o`(3?hYBKOor|#ch7*t%|btpVMfe>BzP+h-&6_*t|l=UZ3>Ttr(J3v15G$(BI z>8tHFO37MC$@xZR`tuI#-NU)4b{(Zyjq39U@JE^L4G6+~Z(m$CseU}6`?jk^V}EeG zrOpQPkF~Y?c5xIZS~cg7k#1xBa}o!VhZh-nye^#PXhcDF^*g0AE9E?l6?Vs>^xdqd zJcK(G78%3v>dRF25}KWRPpGuUMiRL0!8LWt%@U7yNlGYcVIbhBc9;gz?INuNOO zfNsbK3B(kRk6Gya!8+;rz04jKh6Cc}3GMp!#yA*Ug`QWQpQUm3b$9=xYsWdgH zdYL)!R9raN&U`p-w7J~ihfDdOpG2Q@x`x13ACpMK-^s)o68Jh|``XT2al9ls(vtTp zxEt-0$5_z-aESe|hNd%`TkbbUQ~td2tn-q2+1 zu#_$tQ=Jwts?@1-v&YumPIafxF-W_P0J}gtBsi5u{K4@PM}^)Pc?02)iLlj|Qp%k2BbTCa6Fmg}WAfSh zhNONoU%$QVl)ppVyDzr=drob&kvDfS1yRs)X?^zX^i9xw#)jNS_u<1o1OaA0jXAN? z6F>V@c~%Ww{;p8`b8F>Z^2^`7R-tvpyKR$N85}21^v{OcS-g*V12T1&{)%tsUsmmX z$A+c6#!X&CuB-m@u$su{B)@vP@abE|HO(->XUfY>-XhSd?U>X?{duVnqcS-qrziM4IPCj-1 z#;oL}Xm0RDA9rxk3;mOezS)dx`M~Xitkq$Jl4Dq|rDHfTn>ZdxY+v8GCxH(jC$i)n z0c)TkBjCqqp8`fEYn*|YxGKW@LT4>c%{^#E6=s8@6>D7}yvAL}F0uRZ`$M zFC|-`g80uhfiE_#sdX-iPi8L>xNq;2ZH@VmKoI#oWwD`cD;c1qoCCU{AF6<0u(5LH`HWDpAGY z|IqV4%-vx9soZz>#`3@XZr|{Wi2IhYO7mZo|EEuu>2vjA- zsX{(%yXHTn{dZRW<*`pLX|?gRb#TSl2!js_iDVh_=NfCm7DASuNV@qATqb2K1+uflH;5Uz80|%HSOJt^gAsr9J8)# z;jC2IshdME#OlyvVgF=_*1dVB=Og}e^A9n*OVyquZpruNa~?xRb9P02?q_kfTbBte zcKGE;%N6ior*>RI<|$jr$FeoorMbe~`Xc&zf;`*`A~1no_c2EXIT8dU!ktYZh(cEj z#hUkvCG*emdSgc*JeH_YnqYu_Ig04i=FJOt$QXVIkt#z=A_!PTLGI8B2?gHhzD&?V z&H2RjkfoaNyR=ssWKdlnb2{4`BEQ7t3IWSpqEX>49bK9w?%oqp9R$2l_17=zjxFlz z%}N)2h)+X!A`~uVn@th(Ay1SwG=pMKD7=H1P6E<|Na^GYb$5B-6H4t=~JH*hwMzmH?=u-E{>?}y0q4r#^Pm(iWlt%DL5oa`m3{&}7g(8f1Q_ofTvRjSd z={C<9XGN{Kt~9^6h$^YyASmB7b}6^lL5Cb09U%+%SW>7Wr2JDuBkW+*5jrH@ zdnDZm5{-j|9LL^H@`z4BjZPJ!6iP(c3;$FXLfeym8n_$TMey5`LVB~}11vB8issbh zuD%Inccl6+BYEdffBatXt{|{Rjju$WQ63$;8iy>(Fzm8|i=y+)WXie0lo~iee;8Wx+wB0=ZELqYNLI|pG_sFhRXq5|#l03yUMYu%wawi1t%5ni?x$tD+;2<&X zhK~8j2Q;3%nf(64AZegK@(~x61!ZJrgvPW_qr1E~H&t>sw9g0bCV%ln{=!#2Se8Rw z8&1vSC1qKt>yV_I3-0d|diOes*5{Zk4RXsV_VsUCBgm~?Zh|tMzY&*YGjg}=SqQvi zUw6d5zK(s3f1e;lryY-s;)hN@*aLkj9SqPnJUy-70^jtXK1JRgSnxvl@7?7-Mc;j@ z(ALD?yD8k_aZjJ{r_ zRDvU#c0@NG23HSMcN32jIgtW{VMfek9TY@w94%>V8Hr}qst`(K4a8mBYIrl6ELMug z;a!XrQ(bruNGtOKeI>_osIJ{JG750mp~jHHTGjNIT~2tp19eHJ*V6K_OlSCK-aaxV z`Fx9J{~ChGS0~lZb2$8ii0)?R8JL)#Z~wj~Yy0jad_k`)l7n}C%i#BgmLPMEz*(Ds$y=XIqJo2Qd+1_D9Zv1$>8KkW)FMxmOr#gnZh0v zE(y#ndddoNEJ%v9sB%oBx_5oxG8`%(QghJc~sc$M3V%a7uYKn;N-sH zmt0uNRmPw1tSjx6rsX(%tDosE?z4D_{tb~0(z0;A-FCaUAnD3W-}$z(N<(duii~;c z_+IQ3qUiUkncfmZkSH^kVY|uMV6_T3K9?JdR0#pc_vI(4Kz2<>ekN8Xg_>o>$F?gQ zIREw)E3)AD9!vH9^~UP*n*6C9M=--i$UtD7JpqHrJ`D$T_X;i=o>tO6H)UzoA;%TU zKs~>L>w&`^usxP$)CRAsj^(-x3}1^gw#%3!rVvSgX@SPF{;Cw})Y-bzTN;>_IqK;Q z8(y4VMR@VW8X{ezl#`acb%}KN77{;Eczt|wxlIQR;!`R;)i)1m&m!x1fK(McHVVB~ zqNNggV-|9R9)_G2?fC2;=`N}~Hq9mfz#|Mw5ll~Bibpo?cq%stY?A2#?{swv1Uxno z2qM(J?`6C;^dj%3iFj^2(hYe$_bCfe0FDBONj2cDL zxP?Ev`Izg{l1=jpxA91D4(Fb8ETWX1eF?Q??)8UWXm0df6TU5lDUBu*{q?^9w|@dF diff --git a/packages/nvmedit/src/convert.ts b/packages/nvmedit/src/convert.ts index 4b0167d66079..d051ae6183a5 100644 --- a/packages/nvmedit/src/convert.ts +++ b/packages/nvmedit/src/convert.ts @@ -1,6 +1,7 @@ import { type CommandClasses, ControllerCapabilityFlags, + MAX_NODES, NodeIDType, type NodeProtocolInfo, NodeType, @@ -14,10 +15,25 @@ import { cloneDeep, num2hex, pick } from "@zwave-js/shared/safe"; import { isObject } from "alcalzone-shared/typeguards"; import semver from "semver"; import { MAX_PROTOCOL_FILE_FORMAT, SUC_MAX_UPDATES } from "./consts"; +import { NVM3, type NVM3Meta } from "./lib/NVM3"; +import { NVM500 } from "./lib/NVM500"; +import { + type Route, + type RouteCache, + getEmptyRoute, +} from "./lib/common/routeCache"; +import { type SUCUpdateEntry } from "./lib/common/sucUpdateEntry"; +import { NVMMemoryIO } from "./lib/io/NVMMemoryIO"; +import { NVM3Adapter } from "./lib/nvm3/adapter"; +import { + ZWAVE_APPLICATION_NVM_SIZE, + ZWAVE_PROTOCOL_NVM_SIZE, + ZWAVE_SHARED_NVM_SIZE, +} from "./lib/nvm3/consts"; import { ApplicationCCsFile, ApplicationCCsFileID, - ApplicationDataFile, + type ApplicationDataFile, ApplicationDataFileID, ApplicationRFConfigFile, ApplicationRFConfigFileID, @@ -31,77 +47,71 @@ import { ControllerInfoFileID, type ControllerInfoFileOptions, type LRNodeInfo, - LRNodeInfoFileV5, + type LRNodeInfoFileV5, NVMFile, type NodeInfo, - NodeInfoFileV0, - NodeInfoFileV1, - ProtocolAppRouteLockNodeMaskFile, + type NodeInfoFileV0, + type NodeInfoFileV1, + type ProtocolAppRouteLockNodeMaskFile, ProtocolAppRouteLockNodeMaskFileID, - ProtocolLRNodeListFile, + type ProtocolLRNodeListFile, ProtocolLRNodeListFileID, - ProtocolNodeListFile, + type ProtocolNodeListFile, ProtocolNodeListFileID, - ProtocolPendingDiscoveryNodeMaskFile, + type ProtocolPendingDiscoveryNodeMaskFile, ProtocolPendingDiscoveryNodeMaskFileID, - ProtocolPreferredRepeatersFile, + type ProtocolPreferredRepeatersFile, ProtocolPreferredRepeatersFileID, ProtocolRouteCacheExistsNodeMaskFile, ProtocolRouteCacheExistsNodeMaskFileID, - ProtocolRouteSlaveSUCNodeMaskFile, + type ProtocolRouteSlaveSUCNodeMaskFile, ProtocolRouteSlaveSUCNodeMaskFileID, - ProtocolSUCPendingUpdateNodeMaskFile, + type ProtocolSUCPendingUpdateNodeMaskFile, ProtocolSUCPendingUpdateNodeMaskFileID, ProtocolVersionFile, ProtocolVersionFileID, - ProtocolVirtualNodeMaskFile, + type ProtocolVirtualNodeMaskFile, ProtocolVirtualNodeMaskFileID, - type Route, - type RouteCache, - RouteCacheFileV0, - RouteCacheFileV1, + type RouteCacheFileV0, + type RouteCacheFileV1, SUCUpdateEntriesFileIDV0, - SUCUpdateEntriesFileV0, - SUCUpdateEntriesFileV5, - type SUCUpdateEntry, + type SUCUpdateEntriesFileV0, + type SUCUpdateEntriesFileV5, SUC_UPDATES_PER_FILE_V5, - getEmptyRoute, nodeIdToLRNodeInfoFileIDV5, nodeIdToNodeInfoFileIDV0, nodeIdToNodeInfoFileIDV1, nodeIdToRouteCacheFileIDV0, nodeIdToRouteCacheFileIDV1, sucUpdateIndexToSUCUpdateEntriesFileIDV5, -} from "./files"; +} from "./lib/nvm3/files"; import { - ApplicationNameFile, + type ApplicationNameFile, ApplicationNameFileID, -} from "./files/ApplicationNameFile"; -import { - type NVM3Objects, - type NVM3Pages, - type NVMMeta, - encodeNVM, - getNVMMeta, - parseNVM, -} from "./nvm3/nvm"; -import type { NVM3Object } from "./nvm3/object"; -import { mapToObject } from "./nvm3/utils"; +} from "./lib/nvm3/files/ApplicationNameFile"; +import type { NVM3Object } from "./lib/nvm3/object"; +import { dumpNVM, mapToObject } from "./lib/nvm3/utils"; +import { NVM500Adapter } from "./lib/nvm500/adapter"; +import { nvm500Impls } from "./lib/nvm500/impls"; +import { resolveLayout } from "./lib/nvm500/shared"; import { type NVM500JSON, - NVMSerializer, - createParser as createNVM500Parser, - nmvDetails500, + type NVM500JSONController, + type NVM500JSONNode, + type NVM500Meta, } from "./nvm500/NVMParser"; export interface NVMJSON { - format: number; - meta?: NVMMeta; + format: number; // protocol file format + applicationFileFormat?: number; + meta?: NVM3Meta; controller: NVMJSONController; nodes: Record; lrNodes?: Record; } +export type NVMJSONWithMeta = NVMJSON & { meta: NVM3Meta }; + export interface NVMJSONController { protocolVersion: string; applicationVersion: string; @@ -188,7 +198,7 @@ type ParsedNVM = } | { type: 700; - json: Required; + json: NVMJSONWithMeta; } | { type: "unknown"; @@ -285,7 +295,7 @@ export function nvmObjectsToJSON( fileVersion: string, ): T => { const obj = getObjectOrThrow(id); - return NVMFile.from(obj, fileVersion) as T; + return NVMFile.from(obj.key, obj.data!, fileVersion) as T; }; const getFile = ( @@ -293,8 +303,8 @@ export function nvmObjectsToJSON( fileVersion: string, ): T | undefined => { const obj = getObject(id); - if (!obj) return undefined; - return NVMFile.from(obj, fileVersion) as T; + if (!obj || !obj.data) return undefined; + return NVMFile.from(obj.key, obj.data, fileVersion) as T; }; // === Protocol NVM files === @@ -571,7 +581,8 @@ export function nvmObjectsToJSON( } : {}), sucUpdateEntries, - applicationData: applicationDataFile?.data.toString("hex") ?? null, + applicationData: applicationDataFile?.applicationData.toString("hex") + ?? null, applicationName: applicationNameFile?.name ?? null, }; @@ -685,293 +696,544 @@ function nvmJSONControllerToFileOptions( return ret; } -function serializeCommonApplicationObjects(nvm: NVMJSON): NVM3Object[] { - const ret: NVM3Object[] = []; - const applTypeFile = new ApplicationTypeFile({ - ...pick(nvm.controller, [ - "isListening", - "optionalFunctionality", - "genericDeviceClass", - "specificDeviceClass", - ]), - fileVersion: nvm.controller.applicationVersion, - }); - ret.push(applTypeFile.serialize()); +/** Reads an NVM buffer of a 700+ series stick and returns its JSON representation */ +export async function nvmToJSON( + buffer: Buffer, + debugLogs: boolean = false, +): Promise { + const io = new NVMMemoryIO(buffer); + const nvm3 = new NVM3(io); + const info = await nvm3.init(); - const applCCsFile = new ApplicationCCsFile({ - ...pick(nvm.controller.commandClasses, [ - "includedInsecurely", - "includedSecurelyInsecureCCs", - "includedSecurelySecureCCs", - ]), - fileVersion: nvm.controller.applicationVersion, - }); - ret.push(applCCsFile.serialize()); - - if (nvm.controller.rfConfig) { - const applRFConfigFile = new ApplicationRFConfigFile({ - ...pick(nvm.controller.rfConfig, [ - "rfRegion", - "txPower", - "measured0dBm", - ]), - enablePTI: nvm.controller.rfConfig.enablePTI ?? undefined, - maxTXPower: nvm.controller.rfConfig.maxTXPower ?? undefined, - nodeIdType: nvm.controller.rfConfig.nodeIdType ?? undefined, - fileVersion: nvm.controller.applicationVersion, - }); - ret.push(applRFConfigFile.serialize()); - } + const adapter = new NVM3Adapter(nvm3); - if (nvm.controller.applicationData) { - // TODO: ensure this is 512 bytes long - const applDataFile = new ApplicationDataFile({ - data: Buffer.from(nvm.controller.applicationData, "hex"), - fileVersion: nvm.controller.applicationVersion, - }); - ret.push(applDataFile.serialize()); + if (debugLogs) { + // Dump all pages, all raw objects in each page, and each object in its final state + await dumpNVM(nvm3); } - if (nvm.controller.applicationName && nvm.meta?.sharedFileSystem) { - // The application name only seems to be used with the shared file system - const applNameFile = new ApplicationNameFile({ - name: nvm.controller.applicationName, - fileVersion: nvm.controller.applicationVersion, - }); - ret.push(applNameFile.serialize()); - } - - return ret; -} + const firstPageHeader = info.isSharedFileSystem + ? info.sections.all.pages[0] + : info.sections.protocol.pages[0]; + + const meta: NVM3Meta = { + sharedFileSystem: info.isSharedFileSystem, + ...pick(firstPageHeader, [ + "pageSize", + "writeSize", + "memoryMapped", + "deviceFamily", + ]), + }; -function serializeCommonProtocolObjects(nvm: NVMJSON): NVM3Object[] { - const ret: NVM3Object[] = []; + const nodes = new Map(); + const getNode = (id: number): NVMJSONNode => { + if (!nodes.has(id)) nodes.set(id, createEmptyPhysicalNode()); + return nodes.get(id)!; + }; - const appRouteLock = new Set(); - const routeSlaveSUC = new Set(); - const sucPendingUpdate = new Set(); - const isVirtual = new Set(); - const pendingDiscovery = new Set(); + const lrNodes = new Map(); + const getLRNode = (id: number): NVMJSONLRNode => { + if (!lrNodes.has(id)) lrNodes.set(id, createEmptyLRNode()); + return lrNodes.get(id)!; + }; - for (const [id, node] of Object.entries(nvm.nodes)) { - const nodeId = parseInt(id); - if (!nodeHasInfo(node)) { - isVirtual.add(nodeId); - continue; - } else { - if (node.isVirtual) isVirtual.add(nodeId); - if (node.appRouteLock) appRouteLock.add(nodeId); - if (node.routeSlaveSUC) routeSlaveSUC.add(nodeId); - if (node.sucPendingUpdate) sucPendingUpdate.add(nodeId); - if (node.pendingDiscovery) pendingDiscovery.add(nodeId); - } - } + const protocolFileFormat = await adapter.get({ + domain: "controller", + type: "protocolFileFormat", + }, true); - ret.push( - new ControllerInfoFile( - nvmJSONControllerToFileOptions(nvm.controller), - ).serialize(), - ); - - ret.push( - new ProtocolAppRouteLockNodeMaskFile({ - nodeIds: [...appRouteLock], - fileVersion: nvm.controller.protocolVersion, - }).serialize(), - ); - ret.push( - new ProtocolRouteSlaveSUCNodeMaskFile({ - nodeIds: [...routeSlaveSUC], - fileVersion: nvm.controller.protocolVersion, - }).serialize(), - ); - ret.push( - new ProtocolSUCPendingUpdateNodeMaskFile({ - nodeIds: [...sucPendingUpdate], - fileVersion: nvm.controller.protocolVersion, - }).serialize(), - ); - ret.push( - new ProtocolVirtualNodeMaskFile({ - nodeIds: [...isVirtual], - fileVersion: nvm.controller.protocolVersion, - }).serialize(), - ); - ret.push( - new ProtocolPendingDiscoveryNodeMaskFile({ - nodeIds: [...pendingDiscovery], - fileVersion: nvm.controller.protocolVersion, - }).serialize(), - ); - - // TODO: format >= 2: { .key = FILE_ID_LRANGE_NODE_EXIST, .size = FILE_SIZE_LRANGE_NODE_EXIST, .name = "LRANGE_NODE_EXIST"}, - - if (nvm.controller.preferredRepeaters?.length) { - ret.push( - new ProtocolPreferredRepeatersFile({ - nodeIds: nvm.controller.preferredRepeaters, - fileVersion: nvm.controller.protocolVersion, - }).serialize(), + // Bail early if the NVM uses a protocol file format that's newer than we support + if (protocolFileFormat > MAX_PROTOCOL_FILE_FORMAT) { + throw new ZWaveError( + `Unsupported protocol file format: ${protocolFileFormat}`, + ZWaveErrorCodes.NVM_NotSupported, + { protocolFileFormat }, ); } - if (nvm.format < 5) { - ret.push( - new SUCUpdateEntriesFileV0({ - updateEntries: nvm.controller.sucUpdateEntries, - fileVersion: nvm.controller.protocolVersion, - }).serialize(), - ); - } else { - // V5 has split the SUC update entries into multiple files - for ( - let index = 0; - index < SUC_MAX_UPDATES; - index += SUC_UPDATES_PER_FILE_V5 - ) { - const slice = nvm.controller.sucUpdateEntries.slice( - index, - index + SUC_UPDATES_PER_FILE_V5, - ); - if (slice.length === 0) break; - const file = new SUCUpdateEntriesFileV5({ - updateEntries: slice, - fileVersion: nvm.controller.protocolVersion, - }); - file.fileId = sucUpdateIndexToSUCUpdateEntriesFileIDV5(index); - ret.push(file.serialize()); - } - } + const protocolVersion = await adapter.get({ + domain: "controller", + type: "protocolVersion", + }, true); - return ret; -} + // Read all flags for all nodes + const appRouteLock = new Set( + await adapter.get({ + domain: "controller", + type: "appRouteLock", + }, true), + ); + const routeSlaveSUC = new Set( + await adapter.get({ + domain: "controller", + type: "routeSlaveSUC", + }, true), + ); + const sucPendingUpdate = new Set( + await adapter.get({ + domain: "controller", + type: "sucPendingUpdate", + }, true), + ); + const virtualNodeIds = new Set( + await adapter.get({ + domain: "controller", + type: "virtualNodeIds", + }, true), + ); + const pendingDiscovery = new Set( + await adapter.get({ + domain: "controller", + type: "pendingDiscovery", + }, true), + ); -export function jsonToNVMObjects_v7_0_0( - json: NVMJSON, - targetSDKVersion: semver.SemVer, -): NVM3Objects { - const target = cloneDeep(json); + // Figure out which nodes exist + const nodeIds = await adapter.get({ + domain: "controller", + type: "nodeIds", + }, true); - target.controller.protocolVersion = "7.0.0"; - target.format = 0; - target.controller.applicationVersion = targetSDKVersion.format(); + // And create each node entry, including virtual ones + for (const id of nodeIds) { + const node = getNode(id) as NVMJSONNodeWithInfo; - const applicationObjects = new Map(); - const protocolObjects = new Map(); + // Find node info + const nodeInfo = await adapter.get({ + domain: "node", + nodeId: id, + type: "info", + }, true); - const addApplicationObjects = (...objects: NVM3Object[]) => { - for (const o of objects) { - applicationObjects.set(o.key, o); - } - }; - const addProtocolObjects = (...objects: NVM3Object[]) => { - for (const o of objects) { - protocolObjects.set(o.key, o); + Object.assign(node, nodeInfo); + + // Evaluate flags + node.isVirtual = virtualNodeIds.has(id); + node.appRouteLock = appRouteLock.has(id); + node.routeSlaveSUC = routeSlaveSUC.has(id); + node.sucPendingUpdate = sucPendingUpdate.has(id); + node.pendingDiscovery = pendingDiscovery.has(id); + + const routes = await adapter.get({ + domain: "node", + nodeId: id, + type: "routes", + }); + if (routes) { + node.lwr = routes.lwr; + node.nlwr = routes.nlwr; } - }; - // Application files - const applVersionFile = new ApplicationVersionFile({ - // The SDK compares 4-byte values where the format is set to 0 to determine whether a migration is needed - format: 0, - major: targetSDKVersion.major, - minor: targetSDKVersion.minor, - patch: targetSDKVersion.patch, - fileVersion: target.controller.applicationVersion, // does not matter for this file + // @ts-expect-error Some fields include a nodeId, but we don't need it + delete node.nodeId; + } + + // If they exist, read info about LR nodes + const lrNodeIds = await adapter.get({ + domain: "controller", + type: "lrNodeIds", }); - addApplicationObjects(applVersionFile.serialize()); + if (lrNodeIds) { + for (const id of lrNodeIds) { + const node = getLRNode(id); - addApplicationObjects(...serializeCommonApplicationObjects(target)); + // Find node info + const nodeInfo = await adapter.get({ + domain: "lrnode", + nodeId: id, + type: "info", + }, true); - // Protocol files + Object.assign(node, nodeInfo); + } + } - const protocolVersionFile = new ProtocolVersionFile({ - format: target.format, - major: 7, - minor: 0, - patch: 0, - fileVersion: target.controller.protocolVersion, // does not matter for this file + // Read info about the controller + const sucUpdateEntries = await adapter.get({ + domain: "controller", + type: "sucUpdateEntries", + }, true); + + const applicationVersion = await adapter.get({ + domain: "controller", + type: "applicationVersion", + }, true); + + const applicationFileFormat = await adapter.get({ + domain: "controller", + type: "applicationFileFormat", + }, true); + + const applicationData = await adapter.get({ + domain: "controller", + type: "applicationData", }); - addProtocolObjects(protocolVersionFile.serialize()); - const nodeInfoFiles = new Map(); - const routeCacheFiles = new Map(); - const nodeInfoExists = new Set(); - const routeCacheExists = new Set(); + const applicationName = await adapter.get({ + domain: "controller", + type: "applicationName", + }); - for (const [id, node] of Object.entries(target.nodes)) { - const nodeId = parseInt(id); - if (!nodeHasInfo(node)) continue; - - nodeInfoExists.add(nodeId); - - // Create/update node info file - const nodeInfoFileIndex = nodeIdToNodeInfoFileIDV0(nodeId); - nodeInfoFiles.set( - nodeInfoFileIndex, - new NodeInfoFileV0({ - nodeInfo: nvmJSONNodeToNodeInfo(nodeId, node), - fileVersion: target.controller.protocolVersion, - }), - ); + const preferredRepeaters = await adapter.get({ + domain: "controller", + type: "preferredRepeaters", + }); - // Create/update route cache file (if there is a route) - if (node.lwr || node.nlwr) { - routeCacheExists.add(nodeId); - - const routeCacheFileIndex = nodeIdToRouteCacheFileIDV0(nodeId); - routeCacheFiles.set( - routeCacheFileIndex, - new RouteCacheFileV0({ - routeCache: { - nodeId, - lwr: node.lwr ?? getEmptyRoute(), - nlwr: node.nlwr ?? getEmptyRoute(), - }, - fileVersion: target.controller.protocolVersion, - }), - ); - } + // The following are a bit awkward to read one by one, so we just take the files + const controllerInfoFile = await adapter.getFile( + ControllerInfoFileID, + true, + ); + const rfConfigFile = await adapter.getFile( + ApplicationRFConfigFileID, + ); + const applicationCCsFile = await adapter.getFile( + ApplicationCCsFileID, + true, + ); + const applicationTypeFile = await adapter.getFile( + ApplicationTypeFileID, + true, + ); + + const controller: NVMJSONController = { + protocolVersion, + applicationVersion, + homeId: `0x${controllerInfoFile.homeId.toString("hex")}`, + ...pick(controllerInfoFile, [ + "nodeId", + "lastNodeId", + "staticControllerNodeId", + "sucLastIndex", + "controllerConfiguration", + "sucAwarenessPushNeeded", + "maxNodeId", + "reservedId", + "systemState", + "lastNodeIdLR", + "maxNodeIdLR", + "reservedIdLR", + "primaryLongRangeChannelId", + "dcdcConfig", + ]), + ...pick(applicationTypeFile, [ + "isListening", + "optionalFunctionality", + "genericDeviceClass", + "specificDeviceClass", + ]), + commandClasses: pick(applicationCCsFile, [ + "includedInsecurely", + "includedSecurelyInsecureCCs", + "includedSecurelySecureCCs", + ]), + preferredRepeaters, + ...(rfConfigFile + ? { + rfConfig: { + rfRegion: rfConfigFile.rfRegion, + txPower: rfConfigFile.txPower, + measured0dBm: rfConfigFile.measured0dBm, + enablePTI: rfConfigFile.enablePTI ?? null, + maxTXPower: rfConfigFile.maxTXPower ?? null, + nodeIdType: rfConfigFile.nodeIdType ?? null, + }, + } + : {}), + sucUpdateEntries, + applicationData: applicationData?.toString("hex") ?? null, + applicationName: applicationName ?? null, + }; + + // Make sure all props are defined + const optionalControllerProps = [ + "sucAwarenessPushNeeded", + "lastNodeIdLR", + "maxNodeIdLR", + "reservedIdLR", + "primaryLongRangeChannelId", + "dcdcConfig", + "rfConfig", + "preferredRepeaters", + "applicationData", + ] as const; + for (const prop of optionalControllerProps) { + if (controller[prop] === undefined) controller[prop] = null; + } + + const ret: NVMJSONWithMeta = { + format: protocolFileFormat, + controller, + nodes: mapToObject(nodes), + meta, + }; + if (applicationFileFormat !== 0) { + ret.applicationFileFormat = applicationFileFormat; + } + if (lrNodes.size > 0) { + ret.lrNodes = mapToObject(lrNodes); } + return ret; +} - addProtocolObjects(...serializeCommonProtocolObjects(target)); +/** Reads an NVM buffer of a 500-series stick and returns its JSON representation */ +export async function nvm500ToJSON( + buffer: Buffer, +): Promise> { + const io = new NVMMemoryIO(buffer); + const nvm = new NVM500(io); + + const info = await nvm.init(); + const meta: NVM500Meta = { + library: info.library, + ...pick(info.nvmDescriptor, [ + "manufacturerID", + "firmwareID", + "productType", + "productID", + ]), + }; - addProtocolObjects( - new ProtocolNodeListFile({ - nodeIds: [...nodeInfoExists], - fileVersion: target.controller.protocolVersion, - }).serialize(), + const adapter = new NVM500Adapter(nvm); + + // Read all flags for all nodes + const appRouteLock = new Set( + await adapter.get({ + domain: "controller", + type: "appRouteLock", + }, true), ); - addProtocolObjects( - new ProtocolRouteCacheExistsNodeMaskFile({ - nodeIds: [...routeCacheExists], - fileVersion: target.controller.protocolVersion, - }).serialize(), + const routeSlaveSUC = new Set( + await adapter.get({ + domain: "controller", + type: "routeSlaveSUC", + }, true), + ); + const sucPendingUpdate = new Set( + await adapter.get({ + domain: "controller", + type: "sucPendingUpdate", + }, true), + ); + const virtualNodeIds = new Set( + await adapter.get({ + domain: "controller", + type: "virtualNodeIds", + }) ?? [], + ); + const pendingDiscovery = new Set( + await adapter.get({ + domain: "controller", + type: "pendingDiscovery", + }, true), ); - if (nodeInfoFiles.size > 0) { - addProtocolObjects( - ...[...nodeInfoFiles.values()].map((f) => f.serialize()), - ); + // Figure out which nodes exist along with their info + const nodes: Record = {}; + for (let nodeId = 1; nodeId <= MAX_NODES; nodeId++) { + const nodeInfo = await adapter.get({ + domain: "node", + nodeId, + type: "info", + }); + const isVirtual = virtualNodeIds.has(nodeId); + if (!nodeInfo) { + if (isVirtual) { + nodes[nodeId] = { isVirtual: true }; + } + continue; + } + + const routes = await adapter.get({ + domain: "node", + nodeId, + type: "routes", + }); + + // @ts-expect-error Some fields include a nodeId, but we don't need it + delete nodeInfo.nodeId; + + nodes[nodeId] = { + ...nodeInfo, + specificDeviceClass: nodeInfo.specificDeviceClass ?? null, + isVirtual, + + appRouteLock: appRouteLock.has(nodeId), + routeSlaveSUC: routeSlaveSUC.has(nodeId), + sucPendingUpdate: sucPendingUpdate.has(nodeId), + pendingDiscovery: pendingDiscovery.has(nodeId), + + lwr: routes?.lwr ?? null, + nlwr: routes?.nlwr ?? null, + }; } - if (routeCacheFiles.size > 0) { - addProtocolObjects( - ...[...routeCacheFiles.values()].map((f) => f.serialize()), - ); + + // Read info about the controller + const ownNodeId = await adapter.get({ + domain: "controller", + type: "nodeId", + }, true); + + const ownHomeId = await adapter.get({ + domain: "controller", + type: "homeId", + }, true); + + let learnedHomeId = await adapter.get({ + domain: "controller", + type: "learnedHomeId", + }); + if (learnedHomeId?.equals(Buffer.alloc(4, 0))) { + learnedHomeId = undefined; } + const lastNodeId = await adapter.get({ + domain: "controller", + type: "lastNodeId", + }, true); + + const maxNodeId = await adapter.get({ + domain: "controller", + type: "maxNodeId", + }, true); + + const reservedId = await adapter.get({ + domain: "controller", + type: "reservedId", + }, true); + + const staticControllerNodeId = await adapter.get({ + domain: "controller", + type: "staticControllerNodeId", + }, true); + + const sucLastIndex = await adapter.get({ + domain: "controller", + type: "sucLastIndex", + }, true); + + const controllerConfiguration = await adapter.get({ + domain: "controller", + type: "controllerConfiguration", + }, true); + + const commandClasses = await adapter.get({ + domain: "controller", + type: "commandClasses", + }, true); + + const sucUpdateEntries = await adapter.get({ + domain: "controller", + type: "sucUpdateEntries", + }, true); + + const applicationData = await adapter.get({ + domain: "controller", + type: "applicationData", + }); + + const preferredRepeaters = await adapter.get({ + domain: "controller", + type: "preferredRepeaters", + }, true); + + const systemState = await adapter.get({ + domain: "controller", + type: "systemState", + }, true); + + const watchdogStarted = await adapter.get({ + domain: "controller", + type: "watchdogStarted", + }, true); + + const powerLevelNormal = await adapter.get({ + domain: "controller", + type: "powerLevelNormal", + }, true); + const powerLevelLow = await adapter.get({ + domain: "controller", + type: "powerLevelLow", + }, true); + const powerMode = await adapter.get({ + domain: "controller", + type: "powerMode", + }, true); + const powerModeExtintEnable = await adapter.get({ + domain: "controller", + type: "powerModeExtintEnable", + }, true); + const powerModeWutTimeout = await adapter.get({ + domain: "controller", + type: "powerModeWutTimeout", + }, true); + + const controller: NVM500JSONController = { + protocolVersion: info.nvmDescriptor.protocolVersion, + applicationVersion: info.nvmDescriptor.firmwareVersion, + ownHomeId: `0x${ownHomeId.toString("hex")}`, + learnedHomeId: learnedHomeId + ? `0x${learnedHomeId.toString("hex")}` + : null, + nodeId: ownNodeId, + lastNodeId, + staticControllerNodeId, + sucLastIndex, + controllerConfiguration, + sucUpdateEntries, + maxNodeId, + reservedId, + systemState, + watchdogStarted, + rfConfig: { + powerLevelNormal, + powerLevelLow, + powerMode, + powerModeExtintEnable, + powerModeWutTimeout, + }, + preferredRepeaters, + commandClasses, + applicationData: applicationData?.toString("hex") ?? null, + }; + return { - applicationObjects, - protocolObjects, + format: 500, + meta, + controller, + nodes, }; } -export function jsonToNVMObjects_v7_11_0( +export async function jsonToNVM( json: NVMJSON, - targetSDKVersion: semver.SemVer, -): NVM3Objects { - const target = cloneDeep(json); + targetSDKVersion: string, +): Promise { + const parsedVersion = semver.parse(targetSDKVersion); + if (!parsedVersion) { + throw new ZWaveError( + `Invalid SDK version: ${targetSDKVersion}`, + ZWaveErrorCodes.Argument_Invalid, + ); + } + + // Erase the NVM + const sharedFileSystem = json.meta?.sharedFileSystem; + const nvmSize = sharedFileSystem + ? ZWAVE_SHARED_NVM_SIZE + : (ZWAVE_APPLICATION_NVM_SIZE + ZWAVE_PROTOCOL_NVM_SIZE); + const ret = Buffer.allocUnsafe(nvmSize); + const io = new NVMMemoryIO(ret); + const nvm3 = new NVM3(io); + await nvm3.erase(json.meta); + + const serializeFile = async (file: NVMFile) => { + const { key, data } = file.serialize(); + await nvm3.set(key, data); + }; + // Figure out which SDK version we are targeting let targetApplicationVersion: semver.SemVer; let targetProtocolVersion: semver.SemVer; let targetProtocolFormat: number; @@ -999,43 +1261,72 @@ export function jsonToNVMObjects_v7_11_0( } else if (semver.gte(targetSDKVersion, "7.12.0")) { targetProtocolVersion = semver.parse("7.12.0")!; targetProtocolFormat = 2; - } else { - // All versions below 7.11.0 are handled in the _v7_0_0 method + } else if (semver.gte(targetSDKVersion, "7.11.0")) { targetProtocolVersion = semver.parse("7.11.0")!; targetProtocolFormat = 1; + } else { + targetProtocolVersion = semver.parse("7.0.0")!; + targetProtocolFormat = 0; } - target.format = targetProtocolFormat; - target.controller.applicationVersion = targetApplicationVersion.format(); + const target = cloneDeep(json); target.controller.protocolVersion = targetProtocolVersion.format(); + target.format = targetProtocolFormat; + target.controller.applicationVersion = parsedVersion.format(); - const applicationObjects = new Map(); - const protocolObjects = new Map(); - - const addApplicationObjects = (...objects: NVM3Object[]) => { - for (const o of objects) { - applicationObjects.set(o.key, o); - } - }; - const addProtocolObjects = (...objects: NVM3Object[]) => { - for (const o of objects) { - protocolObjects.set(o.key, o); - } - }; - - // Application files - const ApplicationVersionConstructor = json.meta?.sharedFileSystem + // Write application and protocol version files, because they are required + // for the NVM3 adapter to work. + const ApplicationVersionConstructor = sharedFileSystem ? ApplicationVersionFile800 : ApplicationVersionFile; const applVersionFile = new ApplicationVersionConstructor({ - // The SDK compares 4-byte values where the format is set to 0 to determine whether a migration is needed format: 0, major: targetApplicationVersion.major, minor: targetApplicationVersion.minor, patch: targetApplicationVersion.patch, - fileVersion: target.controller.applicationVersion, // does not matter for this file + fileVersion: targetProtocolVersion.format(), // does not matter for this file }); - addApplicationObjects(applVersionFile.serialize()); + await serializeFile(applVersionFile); + + const protocolVersionFile = new ProtocolVersionFile({ + format: targetProtocolFormat, + major: targetProtocolVersion.major, + minor: targetProtocolVersion.minor, + patch: targetProtocolVersion.patch, + fileVersion: targetProtocolVersion.format(), // does not matter for this file + }); + await serializeFile(protocolVersionFile); + { + const { key, data } = protocolVersionFile.serialize(); + await nvm3.set(key, data); + } + + // Now use the adapter where possible. Some properties have to be set together though, + // so we set the files directly + const adapter = new NVM3Adapter(nvm3); + + // Start with the application data + + const applTypeFile = new ApplicationTypeFile({ + ...pick(target.controller, [ + "isListening", + "optionalFunctionality", + "genericDeviceClass", + "specificDeviceClass", + ]), + fileVersion: target.controller.applicationVersion, + }); + adapter.setFile(applTypeFile); + + const applCCsFile = new ApplicationCCsFile({ + ...pick(target.controller.commandClasses, [ + "includedInsecurely", + "includedSecurelyInsecureCCs", + "includedSecurelySecureCCs", + ]), + fileVersion: target.controller.applicationVersion, + }); + adapter.setFile(applCCsFile); // When converting it can be that the rfConfig doesn't exist. Make sure // that it is initialized with proper defaults. @@ -1058,93 +1349,104 @@ export function jsonToNVMObjects_v7_11_0( target.controller.rfConfig.nodeIdType ??= NodeIDType.Short; } - addApplicationObjects(...serializeCommonApplicationObjects(target)); + const applRFConfigFile = new ApplicationRFConfigFile({ + ...pick(target.controller.rfConfig, [ + "rfRegion", + "txPower", + "measured0dBm", + ]), + enablePTI: target.controller.rfConfig.enablePTI ?? undefined, + maxTXPower: target.controller.rfConfig.maxTXPower ?? undefined, + nodeIdType: target.controller.rfConfig.nodeIdType ?? undefined, + fileVersion: target.controller.applicationVersion, + }); + adapter.setFile(applRFConfigFile); - // Protocol files + if (target.controller.applicationData) { + await adapter.set( + { domain: "controller", type: "applicationData" }, + Buffer.from(target.controller.applicationData, "hex"), + ); + } - const protocolVersionFile = new ProtocolVersionFile({ - format: targetProtocolFormat, - major: targetProtocolVersion.major, - minor: targetProtocolVersion.minor, - patch: targetProtocolVersion.patch, - fileVersion: target.controller.protocolVersion, // does not matter for this file - }); - addProtocolObjects(protocolVersionFile.serialize()); + // The application name only seems to be used on 800 series with the shared file system + if (target.controller.applicationName && target.meta?.sharedFileSystem) { + await adapter.set( + { domain: "controller", type: "applicationName" }, + target.controller.applicationName, + ); + } + + // Now the protocol data - const nodeInfoFiles = new Map(); - const lrNodeInfoFiles = new Map(); - const routeCacheFiles = new Map(); + // TODO: node IDs and LR node IDs should probably be handled by the NVM adapter when + // setting the node info. But then we need to make sure here that the files are guaranteed to exist const nodeInfoExists = new Set(); const lrNodeInfoExists = new Set(); - const routeCacheExists = new Set(); + const virtualNodeIds = new Set(); + + const appRouteLock = new Set(); + const routeSlaveSUC = new Set(); + const sucPendingUpdate = new Set(); + const pendingDiscovery = new Set(); + + // Ensure that the route cache exists nodemask is written, even when no routes exist + adapter.setFile( + new ProtocolRouteCacheExistsNodeMaskFile({ + nodeIds: [], + fileVersion: target.controller.protocolVersion, + }), + ); for (const [id, node] of Object.entries(target.nodes)) { const nodeId = parseInt(id); - if (!nodeHasInfo(node)) continue; - - nodeInfoExists.add(nodeId); - - // Create/update node info file - const nodeInfoFileIndex = nodeIdToNodeInfoFileIDV1(nodeId); - if (!nodeInfoFiles.has(nodeInfoFileIndex)) { - nodeInfoFiles.set( - nodeInfoFileIndex, - new NodeInfoFileV1({ - nodeInfos: [], - fileVersion: target.controller.protocolVersion, - }), - ); + if (!nodeHasInfo(node)) { + virtualNodeIds.add(nodeId); + continue; + } else { + nodeInfoExists.add(nodeId); + if (node.isVirtual) virtualNodeIds.add(nodeId); + if (node.appRouteLock) appRouteLock.add(nodeId); + if (node.routeSlaveSUC) routeSlaveSUC.add(nodeId); + if (node.sucPendingUpdate) sucPendingUpdate.add(nodeId); + if (node.pendingDiscovery) pendingDiscovery.add(nodeId); } - const nodeInfoFile = nodeInfoFiles.get(nodeInfoFileIndex)!; - nodeInfoFile.nodeInfos.push(nvmJSONNodeToNodeInfo(nodeId, node)); + await adapter.set( + { domain: "node", nodeId, type: "info" }, + nvmJSONNodeToNodeInfo(nodeId, node), + ); - // Create/update route cache file (if there is a route) if (node.lwr || node.nlwr) { - routeCacheExists.add(nodeId); - const routeCacheFileIndex = nodeIdToRouteCacheFileIDV1(nodeId); - if (!routeCacheFiles.has(routeCacheFileIndex)) { - routeCacheFiles.set( - routeCacheFileIndex, - new RouteCacheFileV1({ - routeCaches: [], - fileVersion: target.controller.protocolVersion, - }), - ); - } - const routeCacheFile = routeCacheFiles.get(routeCacheFileIndex)!; - routeCacheFile.routeCaches.push({ - nodeId, - lwr: node.lwr ?? getEmptyRoute(), - nlwr: node.nlwr ?? getEmptyRoute(), - }); + await adapter.set( + { domain: "node", nodeId, type: "routes" }, + { + lwr: node.lwr ?? getEmptyRoute(), + nlwr: node.nlwr ?? getEmptyRoute(), + }, + ); } } + await adapter.set( + { domain: "controller", type: "nodeIds" }, + [...nodeInfoExists], + ); if (target.lrNodes) { for (const [id, node] of Object.entries(target.lrNodes)) { const nodeId = parseInt(id); - lrNodeInfoExists.add(nodeId); - // Create/update node info file - const nodeInfoFileIndex = nodeIdToLRNodeInfoFileIDV5(nodeId); - if (!lrNodeInfoFiles.has(nodeInfoFileIndex)) { - lrNodeInfoFiles.set( - nodeInfoFileIndex, - new LRNodeInfoFileV5({ - nodeInfos: [], - fileVersion: target.controller.protocolVersion, - }), - ); - } - const nodeInfoFile = lrNodeInfoFiles.get(nodeInfoFileIndex)!; - - nodeInfoFile.nodeInfos.push( + await adapter.set( + { domain: "lrnode", nodeId, type: "info" }, nvmJSONLRNodeToLRNodeInfo(nodeId, node), ); } } + await adapter.set( + { domain: "controller", type: "lrNodeIds" }, + [...lrNodeInfoExists], + ); // For v3+ targets, the ControllerInfoFile must contain the LongRange properties // or the controller will ignore the file and not have a home ID @@ -1155,129 +1457,57 @@ export function jsonToNVMObjects_v7_11_0( target.controller.primaryLongRangeChannelId ??= 0; target.controller.dcdcConfig ??= 255; } + adapter.setFile( + new ControllerInfoFile( + nvmJSONControllerToFileOptions(target.controller), + ), + ); - addProtocolObjects(...serializeCommonProtocolObjects(target)); - - addProtocolObjects( - new ProtocolNodeListFile({ - nodeIds: [...nodeInfoExists], - fileVersion: target.controller.protocolVersion, - }).serialize(), + await adapter.set( + { domain: "controller", type: "appRouteLock" }, + [...appRouteLock], ); - addProtocolObjects( - new ProtocolRouteCacheExistsNodeMaskFile({ - nodeIds: [...routeCacheExists], - fileVersion: target.controller.protocolVersion, - }).serialize(), + await adapter.set( + { domain: "controller", type: "routeSlaveSUC" }, + [...routeSlaveSUC], + ); + await adapter.set( + { domain: "controller", type: "sucPendingUpdate" }, + [...sucPendingUpdate], + ); + await adapter.set( + { domain: "controller", type: "virtualNodeIds" }, + [...virtualNodeIds], + ); + await adapter.set( + { domain: "controller", type: "pendingDiscovery" }, + [...pendingDiscovery], ); - if (nodeInfoFiles.size > 0) { - addProtocolObjects( - ...[...nodeInfoFiles.values()].map((f) => f.serialize()), - ); - } - if (routeCacheFiles.size > 0) { - addProtocolObjects( - ...[...routeCacheFiles.values()].map((f) => f.serialize()), - ); - } - - if (lrNodeInfoFiles.size > 0) { - addProtocolObjects( - new ProtocolLRNodeListFile({ - nodeIds: [...lrNodeInfoExists], - fileVersion: target.controller.protocolVersion, - }).serialize(), - ); - addProtocolObjects( - ...[...lrNodeInfoFiles.values()].map((f) => f.serialize()), - ); - } - - return { - applicationObjects, - protocolObjects, - }; -} - -/** Reads an NVM buffer and returns its JSON representation */ -export function nvmToJSON( - buffer: Buffer, - debugLogs: boolean = false, -): Required { - const nvm = parseNVM(buffer, debugLogs); - return parsedNVMToJSON(nvm); -} - -function parsedNVMToJSON( - nvm: NVM3Pages & NVM3Objects, -): Required { - const objects = new Map([ - ...nvm.applicationObjects, - ...nvm.protocolObjects, - ]); - // 800 series doesn't distinguish between the storage for application and protocol objects - const sharedFileSystem = nvm.applicationObjects.size > 0 - && nvm.protocolObjects.size === 0; - const ret = nvmObjectsToJSON(objects); - const firstPage = sharedFileSystem - ? nvm.applicationPages[0] - : nvm.protocolPages[0]; - ret.meta = getNVMMeta(firstPage, sharedFileSystem); - return ret as Required; -} - -/** Reads an NVM buffer of a 500-series stick and returns its JSON representation */ -export function nvm500ToJSON(buffer: Buffer): Required { - const parser = createNVM500Parser(buffer); - if (!parser) { - throw new ZWaveError( - "Did not find a matching NVM 500 parser implementation! Make sure that the NVM data belongs to a controller with Z-Wave SDK 6.61 or higher.", - ZWaveErrorCodes.NVM_NotSupported, - ); - } - return parser.toJSON(); -} - -/** Takes a JSON represented NVM and converts it to binary */ -export function jsonToNVM( - json: Required, - targetSDKVersion: string, -): Buffer { - const parsedVersion = semver.parse(targetSDKVersion); - if (!parsedVersion) { - throw new ZWaveError( - `Invalid SDK version: ${targetSDKVersion}`, - ZWaveErrorCodes.Argument_Invalid, - ); - } - - let objects: NVM3Objects; - if (semver.gte(parsedVersion, "7.11.0")) { - objects = jsonToNVMObjects_v7_11_0(json, parsedVersion); - } else if (semver.gte(parsedVersion, "7.0.0")) { - objects = jsonToNVMObjects_v7_0_0(json, parsedVersion); - } else { - throw new ZWaveError( - "jsonToNVM cannot convert to a pre-7.0 NVM version. Use jsonToNVM500 instead.", - ZWaveErrorCodes.Argument_Invalid, + if (target.controller.preferredRepeaters?.length) { + await adapter.set( + { domain: "controller", type: "preferredRepeaters" }, + target.controller.preferredRepeaters, ); } - return encodeNVM( - objects.applicationObjects, - objects.protocolObjects, - json.meta, + await adapter.set( + { domain: "controller", type: "sucUpdateEntries" }, + target.controller.sucUpdateEntries, ); + + await adapter.commit(); + await io.close(); + return ret; } /** Takes a JSON represented 500 series NVM and converts it to binary */ -export function jsonToNVM500( +export async function jsonToNVM500( json: Required, protocolVersion: string, -): Buffer { +): Promise { // Try to find a matching implementation - const impl = nmvDetails500.find( + const impl = nvm500Impls.find( (p) => p.protocolVersions.includes(protocolVersion) && p.name.toLowerCase().startsWith(json.meta.library), @@ -1290,9 +1520,190 @@ export function jsonToNVM500( ); } - const serializer = new NVMSerializer(impl); - serializer.parseJSON(json, protocolVersion); - return serializer.serialize(); + const { layout, nvmSize } = resolveLayout(impl.layout); + + // Erase the NVM and set some basic information + const ret = Buffer.allocUnsafe(nvmSize); + const io = new NVMMemoryIO(ret); + const nvm = new NVM500(io); + await nvm.erase({ + layout, + nvmSize, + library: impl.library, + nvmDescriptor: { + ...pick(json.meta, [ + "manufacturerID", + "productType", + "productID", + "firmwareID", + ]), + // Override the protocol version with the specified one + protocolVersion, + firmwareVersion: json.controller.applicationVersion, + }, + }); + + const adapter = new NVM500Adapter(nvm); + + // Set controller infos + const c = json.controller; + + await adapter.set( + { domain: "controller", type: "homeId" }, + Buffer.from(c.ownHomeId.replace(/^0x/, ""), "hex"), + ); + await adapter.set( + { domain: "controller", type: "learnedHomeId" }, + c.learnedHomeId + ? Buffer.from(c.learnedHomeId.replace(/^0x/, ""), "hex") + : undefined, + ); + + await adapter.set( + { domain: "controller", type: "nodeId" }, + c.nodeId, + ); + await adapter.set( + { domain: "controller", type: "lastNodeId" }, + c.lastNodeId, + ); + await adapter.set( + { domain: "controller", type: "maxNodeId" }, + c.maxNodeId, + ); + await adapter.set( + { domain: "controller", type: "reservedId" }, + c.reservedId, + ); + await adapter.set( + { domain: "controller", type: "staticControllerNodeId" }, + c.staticControllerNodeId, + ); + + await adapter.set( + { domain: "controller", type: "controllerConfiguration" }, + c.controllerConfiguration, + ); + + await adapter.set( + { domain: "controller", type: "sucUpdateEntries" }, + c.sucUpdateEntries, + ); + + await adapter.set( + { domain: "controller", type: "sucLastIndex" }, + c.sucLastIndex, + ); + + await adapter.set( + { domain: "controller", type: "systemState" }, + c.systemState, + ); + + await adapter.set( + { domain: "controller", type: "watchdogStarted" }, + c.watchdogStarted, + ); + + await adapter.set( + { domain: "controller", type: "powerLevelNormal" }, + c.rfConfig.powerLevelNormal, + ); + await adapter.set( + { domain: "controller", type: "powerLevelLow" }, + c.rfConfig.powerLevelLow, + ); + await adapter.set( + { domain: "controller", type: "powerMode" }, + c.rfConfig.powerMode, + ); + await adapter.set( + { domain: "controller", type: "powerModeExtintEnable" }, + c.rfConfig.powerModeExtintEnable, + ); + await adapter.set( + { domain: "controller", type: "powerModeWutTimeout" }, + c.rfConfig.powerModeWutTimeout, + ); + + await adapter.set( + { domain: "controller", type: "preferredRepeaters" }, + c.preferredRepeaters, + ); + + await adapter.set( + { domain: "controller", type: "commandClasses" }, + c.commandClasses, + ); + + if (c.applicationData) { + await adapter.set( + { domain: "controller", type: "applicationData" }, + Buffer.from(c.applicationData, "hex"), + ); + } + + // Set node infos + const appRouteLock: number[] = []; + const routeSlaveSUC: number[] = []; + const pendingDiscovery: number[] = []; + const sucPendingUpdate: number[] = []; + const virtualNodeIds: number[] = []; + + for (const [id, node] of Object.entries(json.nodes)) { + const nodeId = parseInt(id); + if (!nodeHasInfo(node)) { + virtualNodeIds.push(nodeId); + continue; + } + if (node.appRouteLock) appRouteLock.push(nodeId); + if (node.routeSlaveSUC) routeSlaveSUC.push(nodeId); + if (node.pendingDiscovery) pendingDiscovery.push(nodeId); + if (node.sucPendingUpdate) sucPendingUpdate.push(nodeId); + + await adapter.set( + { domain: "node", nodeId, type: "info" }, + { + nodeId, + ...node, + }, + ); + + if (node.lwr || node.nlwr) { + await adapter.set( + { domain: "node", nodeId, type: "routes" }, + { + lwr: node.lwr ?? undefined, + nlwr: node.nlwr ?? undefined, + }, + ); + } + } + + await adapter.set( + { domain: "controller", type: "appRouteLock" }, + [...appRouteLock], + ); + await adapter.set( + { domain: "controller", type: "routeSlaveSUC" }, + [...routeSlaveSUC], + ); + await adapter.set( + { domain: "controller", type: "sucPendingUpdate" }, + [...sucPendingUpdate], + ); + await adapter.set( + { domain: "controller", type: "virtualNodeIds" }, + [...virtualNodeIds], + ); + await adapter.set( + { domain: "controller", type: "pendingDiscovery" }, + [...pendingDiscovery], + ); + + await adapter.commit(); + await io.close(); + return ret; } export function json500To700( @@ -1487,30 +1898,27 @@ export function json700To500(json: NVMJSON): NVM500JSON { } /** Converts the given source NVM into a format that is compatible with the given target NVM */ -export function migrateNVM(sourceNVM: Buffer, targetNVM: Buffer): Buffer { +export async function migrateNVM( + sourceNVM: Buffer, + targetNVM: Buffer, +): Promise { let source: ParsedNVM; let target: ParsedNVM; - let sourceObjects: Map | undefined; let sourceProtocolFileFormat: number | undefined; let targetProtocolFileFormat: number | undefined; try { - const nvm = parseNVM(sourceNVM); source = { type: 700, - json: parsedNVMToJSON(nvm), + json: await nvmToJSON(sourceNVM), }; sourceProtocolFileFormat = source.json.format; - sourceObjects = new Map([ - ...nvm.applicationObjects, - ...nvm.protocolObjects, - ]); } catch (e) { if (isZWaveError(e) && e.code === ZWaveErrorCodes.NVM_InvalidFormat) { // This is not a 700 series NVM, maybe it is a 500 series one? source = { type: 500, - json: nvm500ToJSON(sourceNVM), + json: await nvm500ToJSON(sourceNVM), }; } else if ( isZWaveError(e) @@ -1529,7 +1937,7 @@ export function migrateNVM(sourceNVM: Buffer, targetNVM: Buffer): Buffer { try { target = { type: 700, - json: nvmToJSON(targetNVM), + json: await nvmToJSON(targetNVM), }; targetProtocolFileFormat = target.json.format; } catch (e) { @@ -1537,7 +1945,7 @@ export function migrateNVM(sourceNVM: Buffer, targetNVM: Buffer): Buffer { // This is not a 700 series NVM, maybe it is a 500 series one? target = { type: 500, - json: nvm500ToJSON(targetNVM), + json: await nvm500ToJSON(targetNVM), }; } else if ( isZWaveError(e) @@ -1597,7 +2005,7 @@ export function migrateNVM(sourceNVM: Buffer, targetNVM: Buffer): Buffer { && semver.lt(sourceApplicationVersion, "255.0.0") && semver.lt(targetApplicationVersion, "255.0.0") // and avoid restoring a backup with a shifted 800 series application version file - && (!sourceObjects || !hasShiftedAppVersion800File(sourceObjects)) + && (!hasShiftedAppVersion800File(source.json)) ) { return sourceNVM; } @@ -1647,7 +2055,7 @@ export function migrateNVM(sourceNVM: Buffer, targetNVM: Buffer): Buffer { return jsonToNVM500(json, target.json.controller.protocolVersion); } else if (source.type === 500 && target.type === 700) { // We need to upgrade the source to 700 series - const json: Required = { + const json: NVMJSONWithMeta = { lrNodes: {}, ...json500To700(source.json, true), meta: target.json.meta, @@ -1667,9 +2075,9 @@ export function migrateNVM(sourceNVM: Buffer, targetNVM: Buffer): Buffer { return jsonToNVM500(json, target.json.controller.protocolVersion); } else { // Both are 700, so we just need to update the metadata to match the target - const json: Required = { - ...(source.json as Required), - meta: (target.json as Required).meta, + const json: NVMJSONWithMeta = { + ...(source.json as NVMJSONWithMeta), + meta: (target.json as NVMJSONWithMeta).meta, }; // 700 series distinguishes the NVM format by the application version return jsonToNVM(json, target.json.controller.applicationVersion); @@ -1680,53 +2088,25 @@ export function migrateNVM(sourceNVM: Buffer, targetNVM: Buffer): Buffer { * Detects whether the app version file on a 800 series controller is shifted by 1 byte */ function hasShiftedAppVersion800File( - objects: Map, + json: NVMJSONWithMeta, ): boolean { - const getObject = ( - id: number | ((id: number) => boolean), - ): NVM3Object | undefined => { - if (typeof id === "number") { - return objects.get(id); - } else { - for (const [key, obj] of objects) { - if (id(key)) return obj; - } - } - }; + // We can only detect this on 800 series controllers with the shared FS + if (!json.meta.sharedFileSystem) return false; - const getFile = ( - id: number | ((id: number) => boolean), - fileVersion: string, - ): T | undefined => { - const obj = getObject(id); - if (!obj) return undefined; - return NVMFile.from(obj, fileVersion) as T; - }; - - const protocolVersionFile = getFile( - ProtocolVersionFileID, - "7.0.0", // We don't know the version here yet - ); - // File not found, cannot fix anything - if (!protocolVersionFile) return false; - - const protocolVersion = - `${protocolVersionFile.major}.${protocolVersionFile.minor}.${protocolVersionFile.patch}`; - - const applVersionFile800 = getFile( - ApplicationVersionFile800ID, - protocolVersion, - ); + const protocolVersion = semver.parse(json.controller.protocolVersion); + // Invalid protocol version, cannot fix anything + if (!protocolVersion) return false; - // File not found, cannot fix anything - if (!applVersionFile800) return false; + const applicationVersion = semver.parse(json.controller.applicationVersion); + // Invalid application version, cannot fix anything + if (!applicationVersion) return false; // We consider the version shifted if: // - the app version format is the major protocol version // - the app version major is the minor protocol version +/- 3 - if (applVersionFile800.format !== protocolVersionFile.major) return false; - if (Math.abs(applVersionFile800.major - protocolVersionFile.minor) > 3) { + if (json.applicationFileFormat !== protocolVersion.major) return false; + if (Math.abs(applicationVersion.major - protocolVersion.minor) > 3) { return false; } diff --git a/packages/nvmedit/src/files/ProtocolNodeMaskFiles.ts b/packages/nvmedit/src/files/ProtocolNodeMaskFiles.ts deleted file mode 100644 index 7c9b385b9604..000000000000 --- a/packages/nvmedit/src/files/ProtocolNodeMaskFiles.ts +++ /dev/null @@ -1,128 +0,0 @@ -import { NODE_ID_MAX, encodeBitMask, parseBitMask } from "@zwave-js/core/safe"; -import type { NVM3Object } from "../nvm3/object"; -import { - NVMFile, - type NVMFileCreationOptions, - type NVMFileDeserializationOptions, - getNVMFileIDStatic, - gotDeserializationOptions, - nvmFileID, -} from "./NVMFile"; - -export interface ProtocolNodeMaskFileOptions extends NVMFileCreationOptions { - nodeIds: number[]; -} - -export class ProtocolNodeMaskFile extends NVMFile { - public constructor( - options: NVMFileDeserializationOptions | ProtocolNodeMaskFileOptions, - ) { - super(options); - if (gotDeserializationOptions(options)) { - this.nodeIds = parseBitMask(this.payload); - } else { - this.nodeIds = options.nodeIds; - } - } - - public nodeIds: number[]; - - public serialize(): NVM3Object { - this.payload = encodeBitMask(this.nodeIds, NODE_ID_MAX); - return super.serialize(); - } - - // eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types - public toJSON() { - return { - ...super.toJSON(), - "node IDs": this.nodeIds.join(", "), - }; - } -} - -@nvmFileID(0x50002) -export class ProtocolPreferredRepeatersFile extends ProtocolNodeMaskFile {} -export const ProtocolPreferredRepeatersFileID = getNVMFileIDStatic( - ProtocolPreferredRepeatersFile, -); - -@nvmFileID(0x50005) -export class ProtocolNodeListFile extends ProtocolNodeMaskFile {} -export const ProtocolNodeListFileID = getNVMFileIDStatic(ProtocolNodeListFile); - -@nvmFileID(0x50006) -export class ProtocolAppRouteLockNodeMaskFile extends ProtocolNodeMaskFile {} -export const ProtocolAppRouteLockNodeMaskFileID = getNVMFileIDStatic( - ProtocolAppRouteLockNodeMaskFile, -); - -@nvmFileID(0x50007) -export class ProtocolRouteSlaveSUCNodeMaskFile extends ProtocolNodeMaskFile {} -export const ProtocolRouteSlaveSUCNodeMaskFileID = getNVMFileIDStatic( - ProtocolRouteSlaveSUCNodeMaskFile, -); - -@nvmFileID(0x50008) -export class ProtocolSUCPendingUpdateNodeMaskFile - extends ProtocolNodeMaskFile -{} -export const ProtocolSUCPendingUpdateNodeMaskFileID = getNVMFileIDStatic( - ProtocolSUCPendingUpdateNodeMaskFile, -); - -@nvmFileID(0x50009) -export class ProtocolVirtualNodeMaskFile extends ProtocolNodeMaskFile {} -export const ProtocolVirtualNodeMaskFileID = getNVMFileIDStatic( - ProtocolVirtualNodeMaskFile, -); - -@nvmFileID(0x5000a) -export class ProtocolPendingDiscoveryNodeMaskFile - extends ProtocolNodeMaskFile -{} -export const ProtocolPendingDiscoveryNodeMaskFileID = getNVMFileIDStatic( - ProtocolPendingDiscoveryNodeMaskFile, -); - -@nvmFileID(0x5000b) -export class ProtocolRouteCacheExistsNodeMaskFile - extends ProtocolNodeMaskFile -{} -export const ProtocolRouteCacheExistsNodeMaskFileID = getNVMFileIDStatic( - ProtocolRouteCacheExistsNodeMaskFile, -); - -@nvmFileID(0x5000c) -export class ProtocolLRNodeListFile extends NVMFile { - public constructor( - options: NVMFileDeserializationOptions | ProtocolNodeMaskFileOptions, - ) { - super(options); - if (gotDeserializationOptions(options)) { - this.nodeIds = parseBitMask(this.payload, 256); - } else { - this.nodeIds = options.nodeIds; - } - } - - public nodeIds: number[]; - - public serialize(): NVM3Object { - // There are only 128 bytes for the bitmask, so the LR node IDs only go up to 1279 - this.payload = encodeBitMask(this.nodeIds, 1279, 256); - return super.serialize(); - } - - // eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types - public toJSON() { - return { - ...super.toJSON(), - payload: this.payload.toString("hex"), - "node IDs": this.nodeIds.join(", "), - }; - } -} -export const ProtocolLRNodeListFileID = getNVMFileIDStatic( - ProtocolLRNodeListFile, -); diff --git a/packages/nvmedit/src/index.ts b/packages/nvmedit/src/index.ts index 733263ae845d..5b92de7b5d99 100644 --- a/packages/nvmedit/src/index.ts +++ b/packages/nvmedit/src/index.ts @@ -17,18 +17,39 @@ export type { NVMJSONNodeWithInfo, NVMJSONVirtualNode, } from "./convert"; +export { NVM3, type NVM3EraseOptions, type NVM3Meta } from "./lib/NVM3"; +export { NVM500, type NVM500EraseOptions, type NVM500Info } from "./lib/NVM500"; +export { NVMAccess } from "./lib/common/definitions"; +export type { + ControllerNVMProperty, + ControllerNVMPropertyToDataType, + LRNodeNVMProperty, + LRNodeNVMPropertyToDataType, + NVM, + NVMAdapter, + NVMIO, + NVMProperty, + NVMPropertyToDataType, + NodeNVMProperty, + NodeNVMPropertyToDataType, +} from "./lib/common/definitions"; +export { BufferedNVMReader } from "./lib/io/BufferedNVMReader"; +export { NVMFileIO } from "./lib/io/NVMFileIO"; +export { NVM3Adapter } from "./lib/nvm3/adapter"; export { FragmentType, ObjectType, PageStatus, PageWriteSize, -} from "./nvm3/consts"; -export type { NVMMeta } from "./nvm3/nvm"; -export type { NVM3Object as NVMObject } from "./nvm3/object"; -export type { - NVM3Page as NVMPage, - NVM3PageHeader as PageHeader, -} from "./nvm3/page"; +} from "./lib/nvm3/consts"; +export { + ControllerInfoFile, + ControllerInfoFileID, + NVMFile, +} from "./lib/nvm3/files"; +export type { NVM3Object } from "./lib/nvm3/object"; +export type { NVM3Page, NVM3PageHeader } from "./lib/nvm3/page"; +export { NVM500Adapter } from "./lib/nvm500/adapter"; export type { NVM500JSON, NVM500JSONController, diff --git a/packages/nvmedit/src/index_safe.ts b/packages/nvmedit/src/index_safe.ts index 9abfad738f4b..fcd7e330e671 100644 --- a/packages/nvmedit/src/index_safe.ts +++ b/packages/nvmedit/src/index_safe.ts @@ -10,18 +10,30 @@ export type { NVMJSONNodeWithInfo, NVMJSONVirtualNode, } from "./convert"; +export type { NVM3EraseOptions, NVM3Meta } from "./lib/NVM3"; +export type { NVM500EraseOptions, NVM500Info } from "./lib/NVM500"; +export { NVMAccess } from "./lib/common/definitions"; +export type { + ControllerNVMProperty, + ControllerNVMPropertyToDataType, + LRNodeNVMProperty, + LRNodeNVMPropertyToDataType, + NVM, + NVMAdapter, + NVMIO, + NVMProperty, + NVMPropertyToDataType, + NodeNVMProperty, + NodeNVMPropertyToDataType, +} from "./lib/common/definitions"; export { FragmentType, ObjectType, PageStatus, PageWriteSize, -} from "./nvm3/consts"; -export type { NVMMeta } from "./nvm3/nvm"; -export type { NVM3Object as NVMObject } from "./nvm3/object"; -export type { - NVM3Page as NVMPage, - NVM3PageHeader as PageHeader, -} from "./nvm3/page"; +} from "./lib/nvm3/consts"; +export type { NVM3Object } from "./lib/nvm3/object"; +export type { NVM3Page, NVM3PageHeader } from "./lib/nvm3/page"; export type { NVM500JSON, NVM500JSONController, diff --git a/packages/nvmedit/src/lib/NVM3.ts b/packages/nvmedit/src/lib/NVM3.ts new file mode 100644 index 000000000000..bb675ab15029 --- /dev/null +++ b/packages/nvmedit/src/lib/NVM3.ts @@ -0,0 +1,891 @@ +import { ZWaveError, ZWaveErrorCodes } from "@zwave-js/core"; +import { getEnumMemberName, num2hex } from "@zwave-js/shared"; +import { type NVM, NVMAccess, type NVMIO } from "./common/definitions"; +import { nvmReadBuffer, nvmReadUInt32LE, nvmWriteBuffer } from "./common/utils"; +import { + FLASH_MAX_PAGE_SIZE_700, + FLASH_MAX_PAGE_SIZE_800, + FragmentType, + NVM3_CODE_LARGE_SHIFT, + NVM3_CODE_SMALL_SHIFT, + NVM3_COUNTER_SIZE, + NVM3_MAX_OBJ_SIZE_SMALL, + NVM3_OBJ_FRAGTYPE_MASK, + NVM3_OBJ_FRAGTYPE_SHIFT, + NVM3_OBJ_HEADER_SIZE_LARGE, + NVM3_OBJ_KEY_MASK, + NVM3_OBJ_KEY_SHIFT, + NVM3_OBJ_LARGE_LEN_MASK, + NVM3_OBJ_TYPE_MASK, + NVM3_PAGE_COUNTER_MASK, + NVM3_PAGE_COUNTER_SIZE, + NVM3_PAGE_HEADER_SIZE, + NVM3_PAGE_MAGIC, + ObjectType, + PageStatus, + PageWriteSize, + ZWAVE_APPLICATION_NVM_SIZE, +} from "./nvm3/consts"; +import { + ApplicationVersionFile800ID, + type NVMSection, + getNVMSectionByFileID, +} from "./nvm3/files"; +import { + type NVM3Object, + type NVM3ObjectHeader, + fragmentLargeObject, + getAlignedSize, + getObjectHeader, + getRequiredSpace, + serializeObject, +} from "./nvm3/object"; +import { + type NVM3PageHeader, + pageSizeFromBits, + serializePageHeader, +} from "./nvm3/page"; +import { validateBergerCode, validateBergerCodeMulti } from "./nvm3/utils"; + +// TODO: Possible optimizations: +// Investigate if there is a better way to determine whether the NVM +// uses a shared FS or not. The current implementation scans all objects +// to find the 800 series application version file. +// Alternatively, we could simply check if each page starts with an object header. +// If yes, read the objects lazily when needed. If not, remember that the page is empty. + +export type NVM3PageInfo = NVM3PageHeader & { + objects: NVM3ObjectHeader[]; +}; + +export interface NVM3SectionInfo { + pages: NVM3PageInfo[]; + /** The index of the current page */ + currentPage: number; + /** The next byte to write in the current page */ + offsetInPage: number; + /** A map of file IDs and page indizes in which their last copy resides */ + objectLocations: Map; +} + +export type NVM3FileSystemInfo = { + isSharedFileSystem: true; + sections: Record<"all", NVM3SectionInfo>; +} | { + isSharedFileSystem: false; + sections: Record; +}; + +export interface NVM3Meta { + sharedFileSystem: boolean; + pageSize: number; + deviceFamily: number; + writeSize: PageWriteSize; + memoryMapped: boolean; +} + +export type NVM3EraseOptions = Partial; + +export class NVM3 implements NVM { + public constructor(io: NVMIO) { + this._io = io; + } + + private _io: NVMIO; + private _access: NVMAccess = NVMAccess.None; + + private _info: NVM3FileSystemInfo | undefined; + public get info(): NVM3FileSystemInfo | undefined { + return this._info; + } + + private async ensureReadable(): Promise { + if ( + this._access === NVMAccess.Read + || this._access === NVMAccess.ReadWrite + ) { + return; + } + if (this._access === NVMAccess.Write) { + await this._io.close(); + } + this._access = await this._io.open(NVMAccess.Read); + } + + private async ensureWritable(): Promise { + if ( + this._access === NVMAccess.Write + || this._access === NVMAccess.ReadWrite + ) { + return; + } + if (this._access === NVMAccess.Read) { + await this._io.close(); + } + this._access = await this._io.open(NVMAccess.Write); + } + + public async init(): Promise { + await this.ensureReadable(); + + let pageOffset = 0; + // Determine NVM size, scan pages + const pages: NVM3PageInfo[] = []; + let isSharedFileSystem = false; + while (pageOffset < this._io.size) { + // console.debug( + // `NVM3 init() - reading page header at offset ${ + // num2hex(pageOffset) + // }`, + // ); + const header = await readPageHeader(this._io, pageOffset); + pages.push({ + ...header, + objects: [], + }); + pageOffset += header.pageSize; + } + + // Scan each page for objects + for (const page of pages) { + // Scan objects in this page + let objectOffset = page.offset + NVM3_PAGE_HEADER_SIZE; + const nextPageOffset = page.offset + page.pageSize; + while (objectOffset < nextPageOffset) { + // console.debug( + // `NVM3 init() - reading object header. page offset ${ + // num2hex(page.offset) + // }, object offset ${num2hex(objectOffset)}`, + // ); + const objectHeader = await readObjectHeader( + this._io, + objectOffset, + ); + if (objectHeader) { + page.objects.push(objectHeader); + objectOffset += objectHeader.alignedSize; + + // Detect the 800 series shared protocol & application NVM file system + // by looking for the 800 series application version file + if (objectHeader.key === ApplicationVersionFile800ID) { + isSharedFileSystem = true; + } + } else { + // Reached the end of the data in this page + break; + } + } + } + + // By convention, we only use the applicationPages in that case + let applicationPages: NVM3PageInfo[]; + let protocolPages: NVM3PageInfo[]; + + if (isSharedFileSystem) { + applicationPages = pages; + protocolPages = []; + } else { + applicationPages = pages.filter( + (p) => p.offset < ZWAVE_APPLICATION_NVM_SIZE, + ); + protocolPages = pages.filter( + (p) => p.offset >= ZWAVE_APPLICATION_NVM_SIZE, + ); + } + + // NVM3 layouts pages in a ring buffer. Pages are written from front to back, then occupied pages + // are erased and overwritten. Pages at the start of the memory section may have an erase count that's 1 higher + // than the pages at the end. + const pageInfoToSectionInfo = ( + pages: NVM3PageInfo[], + ): NVM3SectionInfo => { + // Find the current page, which is either: + // - The last page with the high erase count that contains an object + const maxEraseCount = Math.max(...pages.map((p) => p.eraseCount)); + let currentPageIndex = pages.findLastIndex((p) => + p.eraseCount === maxEraseCount && p.objects.length > 0 + ); + // - or if there is none, the last page with the lower erase count that contains an object + if (currentPageIndex === -1) { + currentPageIndex = pages.findLastIndex((p) => + p.objects.length > 0 + ); + } + // - Or if no objects exist at all, the beginning of the section + if (currentPageIndex === -1) currentPageIndex = 0; + + // Find the next free byte of the current page + const currentPage = pages[currentPageIndex]; + let offset = NVM3_PAGE_HEADER_SIZE; + for (const object of currentPage.objects) { + offset += object.alignedSize; + } + + const objectLocations = new Map(); + for (let i = 0; i < pages.length; i++) { + const page = pages[i]; + for (const object of page.objects) { + const location = objectLocations.get(object.key); + if (location == undefined) { + // Object seen for the first time, remember the page it is in + objectLocations.set(object.key, i); + } else if ( + (object.fragmentType === FragmentType.None + || object.fragmentType === FragmentType.First) + && (page.eraseCount >= pages[location].eraseCount) + ) { + // Object was seen before. Only remember it if it is the only + // or first fragment and the object appears in a later location + // of the ring buffer + objectLocations.set(object.key, i); + } + } + } + + return { + pages, + offsetInPage: offset, + currentPage: currentPageIndex, + objectLocations, + }; + }; + + if (isSharedFileSystem) { + this._info = { + isSharedFileSystem: true, + sections: { + all: pageInfoToSectionInfo(applicationPages), + }, + }; + } else { + this._info = { + isSharedFileSystem: false, + sections: { + application: pageInfoToSectionInfo(applicationPages), + protocol: pageInfoToSectionInfo(protocolPages), + }, + }; + } + + return this._info; + } + + private getNVMSectionForFile(fileId: number): NVM3SectionInfo { + // Determine which ring buffer to read in + return this._info!.isSharedFileSystem + ? this._info!.sections.all + : this._info!.sections[getNVMSectionByFileID(fileId)]; + } + + public async has(fileId: number): Promise { + this._info ??= await this.init(); + + // Determine which ring buffer to read in + const section = this.getNVMSectionForFile(fileId); + + return section.objectLocations.has(fileId); + } + + public readObjectData(object: NVM3ObjectHeader): Promise { + return nvmReadBuffer( + this._io, + object.offset + object.headerSize, + object.fragmentSize, + ); + } + + public async get(fileId: number): Promise { + this._info ??= await this.init(); + + // Determine which ring buffer to read in + const section = this.getNVMSectionForFile(fileId); + + const pages = section.pages; + + // TODO: There should be no need for scanning, since we know the object locations after init(). + + // Start scanning backwards through the pages ring buffer, starting with the current page + let parts: Buffer[] | undefined; + let complete = false; + let objType: ObjectType | undefined; + const resetFragments = () => { + // if (parts?.length) { + // console.debug("Resetting fragmented object"); + // } + parts = undefined; + complete = false; + }; + pages: for (let offset = 0; offset < pages.length; offset++) { + const index = (section.currentPage - offset + pages.length) + % pages.length; + const page = pages[index]; + // console.debug( + // `NVM3.get(${fileId}): scanning page ${index} at offset ${ + // num2hex(page.offset) + // }`, + // ); + // Scan objects in this page, read backwards. + // The last non-deleted object wins + objects: for (let j = page.objects.length - 1; j >= 0; j--) { + const object = page.objects[j]; + + const readObject = () => this.readObjectData(object); + + if (object.key !== fileId) { + // Reset any fragmented objects when encountering a different key + resetFragments(); + continue objects; + } + + if (object.type === ObjectType.Deleted) { + // Last action for this object was a deletion. There is no data. + return; + } else if (object.fragmentType === FragmentType.None) { + // console.debug( + // `NVM3.get(${fileId}): found complete object - header offset ${ + // num2hex(object.offset) + // }, content offset ${ + // num2hex(object.offset + object.headerSize) + // }, length ${object.fragmentSize}`, + // ); + // This is a complete object + parts = [await readObject()]; + objType = object.type; + complete = true; + break pages; + } else if (object.fragmentType === FragmentType.Last) { + // console.debug( + // `NVM3.get(${fileId}): found LAST fragment - header offset ${ + // num2hex(object.offset) + // }, content offset ${ + // num2hex(object.offset + object.headerSize) + // }, length ${object.fragmentSize}`, + // ); + parts = [await readObject()]; + objType = object.type; + complete = false; + } else if (object.fragmentType === FragmentType.Next) { + if (parts?.length && objType === object.type) { + // console.debug( + // `NVM3.get(${fileId}): found NEXT fragment - header offset ${ + // num2hex(object.offset) + // }, content offset ${ + // num2hex(object.offset + object.headerSize) + // }, length ${object.fragmentSize}`, + // ); + parts.unshift(await readObject()); + } else { + // This shouldn't be here + resetFragments(); + } + } else if (object.fragmentType === FragmentType.First) { + if (parts?.length && objType === object.type) { + // console.debug( + // `NVM3.get(${fileId}): found FIRST fragment - header offset ${ + // num2hex(object.offset) + // }, content offset ${ + // num2hex(object.offset + object.headerSize) + // }, length ${object.fragmentSize}`, + // ); + parts.unshift(await readObject()); + complete = true; + break pages; + } else { + // This shouldn't be here + resetFragments(); + } + } + } + } + + if (!parts?.length || !complete || objType == undefined) return; + + return Buffer.concat(parts); + } + + private async writeObjects(objects: NVM3Object[]): Promise { + const section = this.getNVMSectionForFile(objects[0].key); + + let page = section.pages[section.currentPage]; + let remainingSpace = page.pageSize + - NVM3_PAGE_HEADER_SIZE + - section.offsetInPage; + + // TODO: See if we can avoid double writes on a page change + + /** Moves to the next page and erases it if necessary */ + const nextPage = async () => { + section.currentPage = (section.currentPage + 1) + % section.pages.length; + page = section.pages[section.currentPage]; + + // Find headers of objects that need to be preserved + const toPreserve = [...section.objectLocations].filter(( + [, pageIndex], + ) => pageIndex === section.currentPage) + .map(([fileID]) => + page.objects.findLast((h) => h.key === fileID) + ) + .filter((h) => h != undefined) + .filter((h) => h.type !== ObjectType.Deleted); + // And add the objects to the TODO list + for (const header of toPreserve) { + const data = await this.get(header.key); + console.error(`Need to preserve object ${num2hex(header.key)} + page index: ${section.currentPage} + object type: ${getEnumMemberName(ObjectType, header.type)} + data: ${data != undefined ? `${data.length} bytes` : "(no data)"}`); + objects.push({ + key: header.key, + type: header.type, + fragmentType: FragmentType.None, + data, + }); + } + + if (page.objects.length > 0) { + // The page needs to be erased + page.eraseCount++; + page.objects = []; + + const pageHeaderBuffer = serializePageHeader(page); + const pageBuffer = Buffer.alloc(page.pageSize, 0xff); + pageHeaderBuffer.copy(pageBuffer, 0); + + await nvmWriteBuffer(this._io, page.offset, pageBuffer); + } + + section.offsetInPage = NVM3_PAGE_HEADER_SIZE; + remainingSpace = page.pageSize - NVM3_PAGE_HEADER_SIZE; + }; + + // Go through the list of objects and write all of them to the NVM + for (const object of objects) { + const isLargeObject = object.type === ObjectType.DataLarge + || object.type === ObjectType.CounterLarge; + + let fragments: NVM3Object[] | undefined; + + if (isLargeObject) { + // Large objects may be fragmented + + // We need to start a new page, if the remaining space is not enough for + // the object header plus additional data + if (remainingSpace <= NVM3_OBJ_HEADER_SIZE_LARGE) { + await nextPage(); + } + + fragments = fragmentLargeObject( + object as any, + remainingSpace, + page.pageSize - NVM3_PAGE_HEADER_SIZE, + ); + } else { + // Small objects cannot be fragmented. If they don't fit, + // they need to go on the next page. + const requiredSpace = getRequiredSpace(object); + if (requiredSpace > remainingSpace) { + await nextPage(); + } + fragments = [object]; + } + + // Write each fragment to the NVM. If there are multiple fragments, + // each one but the first needs to be written at the beginning of a new page + for (let i = 0; i < fragments.length; i++) { + if (i > 0) await nextPage(); + const fragment = fragments[i]; + + const objBuffer = serializeObject(fragment); + const objOffset = page.offset + section.offsetInPage; + await this._io.write(objOffset, objBuffer); + const requiredSpace = getRequiredSpace(fragment); + section.offsetInPage += requiredSpace; + remainingSpace -= requiredSpace; + + // Remember which objects exist in this page + page.objects.push(getObjectHeader(object, objOffset)); + + // And remember where this object lives + if (object.type === ObjectType.Deleted) { + section.objectLocations.delete(object.key); + } else if ( + fragment.fragmentType === FragmentType.None + || fragment.fragmentType === FragmentType.First + ) { + section.objectLocations.set( + fragment.key, + section.currentPage, + ); + } + } + } + } + + public async set(property: number, value: Buffer): Promise { + if (!this._info) await this.init(); + await this.ensureWritable(); + + await this.writeObjects([{ + key: property, + type: value.length <= NVM3_MAX_OBJ_SIZE_SMALL + ? ObjectType.DataSmall + : ObjectType.DataLarge, + // writeObject deals with fragmentation + fragmentType: FragmentType.None, + data: value, + }]); + } + + /** Writes multiple values to the NVM at once. `null` / `undefined` cause the value to be deleted */ + public async setMany( + values: [number, Buffer | null | undefined][], + ): Promise { + if (!this._info) await this.init(); + await this.ensureWritable(); + + // Group objects by their NVM section + const objectsBySection = new Map< + number, /* offset */ + [number, Buffer | null | undefined][] + >(); + for (const [key, value] of values) { + const sectionOffset = + this.getNVMSectionForFile(key).pages[0].offset; + if (!objectsBySection.has(sectionOffset)) { + objectsBySection.set(sectionOffset, []); + } + objectsBySection.get(sectionOffset)!.push([key, value]); + } + + // And call writeObjects for each group + for (const objectGroups of objectsBySection.values()) { + await this.writeObjects( + objectGroups.map(([key, value]) => (value + ? { + key, + type: value.length <= NVM3_MAX_OBJ_SIZE_SMALL + ? ObjectType.DataSmall + : ObjectType.DataLarge, + // writeObject deals with fragmentation + fragmentType: FragmentType.None, + data: value, + } + : { + key, + type: ObjectType.Deleted, + fragmentType: FragmentType.None, + }) + ), + ); + } + } + + public async delete(property: number): Promise { + if (!this._info) await this.init(); + await this.ensureWritable(); + + await this.writeObjects([{ + key: property, + type: ObjectType.Deleted, + fragmentType: FragmentType.None, + }]); + } + + public async erase(options?: NVM3EraseOptions): Promise { + const { + deviceFamily = 2047, + writeSize = PageWriteSize.WRITE_SIZE_16, + memoryMapped = true, + sharedFileSystem = false, + } = options ?? {}; + const maxPageSize = sharedFileSystem + ? FLASH_MAX_PAGE_SIZE_800 + : FLASH_MAX_PAGE_SIZE_700; + const pageSize = Math.min( + options?.pageSize ?? maxPageSize, + maxPageSize, + ); + + // Make sure we won't be writing incomplete pages + if (this._io.size % pageSize !== 0) { + throw new ZWaveError( + `Invalid page size. NVM size ${this._io.size} must be a multiple of the page size ${pageSize}.`, + ZWaveErrorCodes.Argument_Invalid, + ); + } else if ( + !sharedFileSystem && ZWAVE_APPLICATION_NVM_SIZE % pageSize !== 0 + ) { + throw new ZWaveError( + `Invalid page size. The application NVM size ${ZWAVE_APPLICATION_NVM_SIZE} must be a multiple of the page size ${pageSize}.`, + ZWaveErrorCodes.Argument_Invalid, + ); + } else if ( + !sharedFileSystem + && (this._io.size - ZWAVE_APPLICATION_NVM_SIZE) % pageSize !== 0 + ) { + throw new ZWaveError( + `Invalid page size. The protocol NVM size ${ + this._io.size + - ZWAVE_APPLICATION_NVM_SIZE + } must be a multiple of the page size ${pageSize}.`, + ZWaveErrorCodes.Argument_Invalid, + ); + } + + await this.ensureWritable(); + + // Create empty pages, write them to the NVM + const applicationPages: NVM3PageInfo[] = []; + const protocolPages: NVM3PageInfo[] = []; + + const numPages = this._io.size / pageSize; + for (let i = 0; i < numPages; i++) { + const offset = i * pageSize; + const pageBuffer = Buffer.alloc(pageSize, 0xff); + const pageHeader: NVM3PageHeader = { + offset, + version: 0x01, + eraseCount: 0, + encrypted: false, + deviceFamily, + memoryMapped, + pageSize, + status: PageStatus.OK, + writeSize, + }; + serializePageHeader(pageHeader).copy(pageBuffer, 0); + await nvmWriteBuffer(this._io, offset, pageBuffer); + + if (sharedFileSystem || offset < ZWAVE_APPLICATION_NVM_SIZE) { + applicationPages.push({ ...pageHeader, objects: [] }); + } else { + protocolPages.push({ ...pageHeader, objects: [] }); + } + } + + // Remember the pages we just created for further use + this._info = sharedFileSystem + ? { + isSharedFileSystem: true, + sections: { + all: { + currentPage: 0, + objectLocations: new Map(), + offsetInPage: NVM3_PAGE_HEADER_SIZE, + pages: applicationPages, + }, + }, + } + : { + isSharedFileSystem: false, + sections: { + application: { + currentPage: 0, + objectLocations: new Map(), + offsetInPage: NVM3_PAGE_HEADER_SIZE, + pages: applicationPages, + }, + protocol: { + currentPage: 0, + objectLocations: new Map(), + offsetInPage: NVM3_PAGE_HEADER_SIZE, + pages: protocolPages, + }, + }, + }; + } +} + +async function readPageHeader( + io: NVMIO, + offset: number, +): Promise { + if (offset > io.size - NVM3_PAGE_HEADER_SIZE) { + throw new ZWaveError( + "Incomplete page in buffer!", + ZWaveErrorCodes.NVM_InvalidFormat, + ); + } + + const buffer = (await io.read(offset, NVM3_PAGE_HEADER_SIZE)).buffer; + + const { version, eraseCount } = tryGetVersionAndEraseCount(buffer); + + // Page status + const status = buffer.readUInt32LE(12); + + const devInfo = buffer.readUInt16LE(16); + const deviceFamily = devInfo & 0x7ff; + const writeSize = (devInfo >> 11) & 0b1; + const memoryMapped = !!((devInfo >> 12) & 0b1); + let pageSize = pageSizeFromBits((devInfo >> 13) & 0b111); + + if (pageSize > 0xffff) { + // Some controllers have no valid info in the page size bits, resulting + // in an impossibly large page size. To try and figure out the actual page + // size without knowing the hardware, we scan the buffer for the next valid + // page start. + for (let exponent = 0; exponent < 0b111; exponent++) { + const testPageSize = pageSizeFromBits(exponent); + const nextOffset = offset + testPageSize; + if ( + // exactly end of NVM OR + io.size === nextOffset + // next page + || await isValidPageHeaderAtOffset(io, nextOffset) + ) { + pageSize = testPageSize; + break; + } + } + } + if (pageSize > 0xffff) { + throw new ZWaveError( + "Could not determine page size!", + ZWaveErrorCodes.NVM_InvalidFormat, + ); + } + + if (io.size < offset + pageSize) { + throw new ZWaveError( + `NVM contains incomplete page at offset ${num2hex(offset)}!`, + ZWaveErrorCodes.NVM_InvalidFormat, + ); + } + + const formatInfo = buffer.readUInt16LE(18); + const encrypted = !(formatInfo & 0b1); + + return { + offset, + version, + eraseCount, + status, + encrypted, + pageSize, + writeSize, + memoryMapped, + deviceFamily, + }; +} + +function tryGetVersionAndEraseCount( + header: Buffer, +): { version: number; eraseCount: number } { + const version = header.readUInt16LE(0); + const magic = header.readUInt16LE(2); + if (magic !== NVM3_PAGE_MAGIC) { + throw new ZWaveError( + "Not a valid NVM3 page!", + ZWaveErrorCodes.NVM_InvalidFormat, + ); + } + if (version !== 0x01) { + throw new ZWaveError( + `Unsupported NVM3 page version: ${version}`, + ZWaveErrorCodes.NVM_NotSupported, + ); + } + + // The erase counter is saved twice, once normally, once inverted + let eraseCount = header.readUInt32LE(4); + const eraseCountCode = eraseCount >>> NVM3_PAGE_COUNTER_SIZE; + eraseCount &= NVM3_PAGE_COUNTER_MASK; + validateBergerCode(eraseCount, eraseCountCode, NVM3_PAGE_COUNTER_SIZE); + + let eraseCountInv = header.readUInt32LE(8); + const eraseCountInvCode = eraseCountInv >>> NVM3_PAGE_COUNTER_SIZE; + eraseCountInv &= NVM3_PAGE_COUNTER_MASK; + validateBergerCode( + eraseCountInv, + eraseCountInvCode, + NVM3_PAGE_COUNTER_SIZE, + ); + + if (eraseCount !== (~eraseCountInv & NVM3_PAGE_COUNTER_MASK)) { + throw new ZWaveError( + "Invalid erase count!", + ZWaveErrorCodes.NVM_InvalidFormat, + ); + } + + return { version, eraseCount }; +} + +async function isValidPageHeaderAtOffset( + io: NVMIO, + offset: number, +): Promise { + if (offset > io.size - NVM3_PAGE_HEADER_SIZE) { + return false; + } + + const { buffer } = await io.read(offset, NVM3_PAGE_HEADER_SIZE); + + try { + tryGetVersionAndEraseCount(buffer); + return true; + } catch { + return false; + } +} + +async function readObjectHeader( + io: NVMIO, + offset: number, +): Promise { + let headerSize = 4; + const hdr1 = await nvmReadUInt32LE(io, offset); + + // Skip over blank page areas + if (hdr1 === 0xffffffff) return; + + const key = (hdr1 >> NVM3_OBJ_KEY_SHIFT) & NVM3_OBJ_KEY_MASK; + let objType: ObjectType = hdr1 & NVM3_OBJ_TYPE_MASK; + let fragmentSize = 0; + let hdr2: number | undefined; + const isLarge = objType === ObjectType.DataLarge + || objType === ObjectType.CounterLarge; + if (isLarge) { + hdr2 = await nvmReadUInt32LE(io, offset + 4); + headerSize += 4; + fragmentSize = hdr2 & NVM3_OBJ_LARGE_LEN_MASK; + } else if (objType > ObjectType.DataSmall) { + // In small objects with data, the length and object type are stored in the same value + fragmentSize = objType - ObjectType.DataSmall; + objType = ObjectType.DataSmall; + } else if (objType === ObjectType.CounterSmall) { + fragmentSize = NVM3_COUNTER_SIZE; + } + + const fragmentType: FragmentType = isLarge + ? (hdr1 >>> NVM3_OBJ_FRAGTYPE_SHIFT) & NVM3_OBJ_FRAGTYPE_MASK + : FragmentType.None; + + if (isLarge) { + validateBergerCodeMulti([hdr1, hdr2!], 32 + NVM3_CODE_LARGE_SHIFT); + } else { + validateBergerCodeMulti([hdr1], NVM3_CODE_SMALL_SHIFT); + } + + if (io.size < offset + headerSize + fragmentSize) { + throw new ZWaveError( + `NVM contains incomplete object at offset ${num2hex(offset)}!`, + ZWaveErrorCodes.NVM_InvalidFormat, + ); + } + + const alignedFragmentSize = getAlignedSize(fragmentSize); + const alignedSize = headerSize + alignedFragmentSize; + + return { + key, + offset, + type: objType, + fragmentType, + headerSize, + fragmentSize, + alignedSize, + }; +} diff --git a/packages/nvmedit/src/lib/NVM500.ts b/packages/nvmedit/src/lib/NVM500.ts new file mode 100644 index 000000000000..23b6905f6371 --- /dev/null +++ b/packages/nvmedit/src/lib/NVM500.ts @@ -0,0 +1,612 @@ +import { + MAX_NODES, + ZWaveError, + ZWaveErrorCodes, + encodeBitMask, + parseBitMask, +} from "@zwave-js/core"; +import { type NVM, NVMAccess, type NVMIO } from "./common/definitions"; +import { type Route, encodeRoute, parseRoute } from "./common/routeCache"; +import { + type SUCUpdateEntry, + encodeSUCUpdateEntry, + parseSUCUpdateEntry, +} from "./common/sucUpdateEntry"; +import { nvmReadBuffer, nvmReadUInt16BE, nvmWriteBuffer } from "./common/utils"; +import { + type NVM500NodeInfo, + type NVMDescriptor, + type NVMModuleDescriptor, + encodeNVM500NodeInfo, + encodeNVMDescriptor, + encodeNVMModuleDescriptor, + parseNVM500NodeInfo, + parseNVMDescriptor, + parseNVMModuleDescriptor, +} from "./nvm500/EntryParsers"; +import { nvm500Impls } from "./nvm500/impls"; +import { + CONFIGURATION_VALID_0, + CONFIGURATION_VALID_1, + MAGIC_VALUE, + type NVM500Impl, + type NVMData, + type NVMEntryName, + NVMEntrySizes, + NVMEntryType, + NVMModuleType, + ROUTECACHE_VALID, + type ResolvedNVMEntry, + type ResolvedNVMLayout, +} from "./nvm500/shared"; + +export interface NVM500Info { + layout: ResolvedNVMLayout; + library: NVM500Impl["library"]; + moduleDescriptors: Map; + nvmDescriptor: NVMDescriptor; +} + +export type NVM500EraseOptions = { + layout: ResolvedNVMLayout; + nvmSize: number; + library: NVM500Impl["library"]; + nvmDescriptor: NVMDescriptor; +}; + +export class NVM500 implements NVM { + public constructor(io: NVMIO) { + this._io = io; + } + + private _io: NVMIO; + private _access: NVMAccess = NVMAccess.None; + + private _info: NVM500Info | undefined; + public get info(): NVM500Info | undefined { + return this._info; + } + + private async ensureReadable(): Promise { + if ( + this._access === NVMAccess.Read + || this._access === NVMAccess.ReadWrite + ) { + return; + } + if (this._access === NVMAccess.Write) { + await this._io.close(); + } + this._access = await this._io.open(NVMAccess.Read); + } + + private async ensureWritable(): Promise { + if ( + this._access === NVMAccess.Write + || this._access === NVMAccess.ReadWrite + ) { + return; + } + if (this._access === NVMAccess.Read) { + await this._io.close(); + } + this._access = await this._io.open(NVMAccess.Write); + } + + public async init(): Promise { + await this.ensureReadable(); + + // Try the different known layouts to find one that works + for (const impl of nvm500Impls) { + try { + const info = await this.resolveLayout(impl); + if (await this.isLayoutValid(info, impl.protocolVersions)) { + this._info = info; + } + break; + } catch { + continue; + } + } + + if (!this._info) { + throw new ZWaveError( + "Did not find a matching NVM 500 parser implementation! Make sure that the NVM data belongs to a controller with Z-Wave SDK 6.61 or higher.", + ZWaveErrorCodes.NVM_NotSupported, + ); + } + + return this._info; + } + + private async resolveLayout(impl: NVM500Impl): Promise { + const resolvedLayout = new Map(); + let nvmDescriptor: NVMDescriptor | undefined; + const moduleDescriptors = new Map(); + + let offset = 0; + let moduleStart = -1; + let moduleSize = -1; + const nvmEnd = await nvmReadUInt16BE(this._io, 0); + + for (const entry of impl.layout) { + const size = entry.size ?? NVMEntrySizes[entry.type]; + + if (entry.type === NVMEntryType.NVMModuleSize) { + if (moduleStart !== -1) { + // All following NVM modules must start at the last module's end + offset = moduleStart + moduleSize; + } + + moduleStart = offset; + moduleSize = await nvmReadUInt16BE(this._io, offset); + } else if (entry.type === NVMEntryType.NVMModuleDescriptor) { + // The module descriptor is always at the end of the module + offset = moduleStart + moduleSize - size; + } + + if (entry.offset != undefined && entry.offset !== offset) { + // The entry has a defined offset but is at the wrong location + throw new ZWaveError( + `${entry.name} is at wrong location in NVM buffer!`, + ZWaveErrorCodes.NVM_InvalidFormat, + ); + } + + const resolvedEntry: ResolvedNVMEntry = { + ...entry, + offset, + size, + }; + + if (entry.type === NVMEntryType.NVMDescriptor) { + const entryData = await this.readRawEntry(resolvedEntry); + // NVMDescriptor is always a single entry + nvmDescriptor = parseNVMDescriptor(entryData[0]); + } else if (entry.type === NVMEntryType.NVMModuleDescriptor) { + const entryData = await this.readRawEntry(resolvedEntry); + // NVMModuleDescriptor is always a single entry + const descriptor = parseNVMModuleDescriptor(entryData[0]); + if (descriptor.size !== moduleSize) { + throw new ZWaveError( + "NVM module descriptor size does not match module size!", + ZWaveErrorCodes.NVM_InvalidFormat, + ); + } + moduleDescriptors.set(entry.name, descriptor); + } + + resolvedLayout.set(entry.name, resolvedEntry); + + // Skip forward + offset += size * entry.count; + if (offset >= nvmEnd) break; + } + + if (!nvmDescriptor) { + throw new ZWaveError( + "NVM descriptor not found in NVM!", + ZWaveErrorCodes.NVM_InvalidFormat, + ); + } + + return { + layout: resolvedLayout, + library: impl.library, + moduleDescriptors, + nvmDescriptor, + }; + } + + private async isLayoutValid( + info: NVM500Info, + protocolVersions: string[], + ): Promise { + // Checking if an NVM is valid requires checking multiple bytes at different locations + const eeoffset_magic_entry = info.layout.get("EEOFFSET_MAGIC_far"); + if (!eeoffset_magic_entry) return false; + const eeoffset_magic = + (await this.readEntry(eeoffset_magic_entry))[0] as number; + + const configuration_valid_0_entry = info.layout.get( + "NVM_CONFIGURATION_VALID_far", + ); + if (!configuration_valid_0_entry) return false; + const configuration_valid_0 = + (await this.readEntry(configuration_valid_0_entry))[0] as number; + + const configuration_valid_1_entry = info.layout.get( + "NVM_CONFIGURATION_REALLYVALID_far", + ); + if (!configuration_valid_1_entry) return false; + const configuration_valid_1 = + (await this.readEntry(configuration_valid_1_entry))[0] as number; + + const routecache_valid_entry = info.layout.get( + "EX_NVM_ROUTECACHE_MAGIC_far", + ); + if (!routecache_valid_entry) return false; + const routecache_valid = + (await this.readEntry(routecache_valid_entry))[0] as number; + + const endMarker_entry = info.layout.get("nvmModuleSizeEndMarker"); + if (!endMarker_entry) return false; + const endMarker = (await this.readEntry(endMarker_entry))[0] as number; + + return ( + eeoffset_magic === MAGIC_VALUE + && configuration_valid_0 === CONFIGURATION_VALID_0 + && configuration_valid_1 === CONFIGURATION_VALID_1 + && routecache_valid === ROUTECACHE_VALID + && protocolVersions.includes(info.nvmDescriptor.protocolVersion) + && endMarker === 0 + ); + } + + async has(property: NVMEntryName): Promise { + this._info ??= await this.init(); + return this._info.layout.has(property); + } + + private async readSingleRawEntry( + entry: ResolvedNVMEntry, + index: number, + ): Promise { + if (index >= entry.count) { + throw new ZWaveError( + `Index out of range. Tried to read entry ${index} of ${entry.count}.`, + ZWaveErrorCodes.Argument_Invalid, + ); + } + return nvmReadBuffer( + this._io, + entry.offset + index * entry.size, + entry.size, + ); + } + + private async readRawEntry( + entry: ResolvedNVMEntry, + ): Promise { + const ret: Buffer[] = []; + const nvmData = await nvmReadBuffer( + this._io, + entry.offset, + entry.count * entry.size, + ); + for (let i = 0; i < entry.count; i++) { + ret.push( + nvmData.subarray(i * entry.size, (i + 1) * entry.size), + ); + } + return ret; + } + + private parseEntry(type: NVMEntryType, data: Buffer): NVMData { + switch (type) { + case NVMEntryType.Byte: + return data.readUInt8(0); + case NVMEntryType.Word: + case NVMEntryType.NVMModuleSize: + return data.readUInt16BE(0); + case NVMEntryType.DWord: + return data.readUInt32BE(0); + case NVMEntryType.NodeInfo: + if (data.every((byte) => byte === 0)) { + return undefined; + } + return parseNVM500NodeInfo(data, 0); + case NVMEntryType.NodeMask: + return parseBitMask(data); + case NVMEntryType.SUCUpdateEntry: + if (data.every((byte) => byte === 0)) { + return undefined; + } + return parseSUCUpdateEntry(data, 0); + case NVMEntryType.Route: + if (data.every((byte) => byte === 0)) { + return undefined; + } + return parseRoute(data, 0); + case NVMEntryType.NVMModuleDescriptor: { + return parseNVMModuleDescriptor(data); + } + case NVMEntryType.NVMDescriptor: + return parseNVMDescriptor(data); + default: + // This includes NVMEntryType.BUFFER + return data; + } + } + + private async readEntry( + entry: ResolvedNVMEntry, + ): Promise { + const data: Buffer[] = await this.readRawEntry(entry); + return data.map((buffer) => this.parseEntry(entry.type, buffer)); + } + + private async readSingleEntry( + entry: ResolvedNVMEntry, + index: number, + ): Promise { + const data: Buffer = await this.readSingleRawEntry(entry, index); + return this.parseEntry(entry.type, data); + } + + public async get(property: NVMEntryName): Promise { + this._info ??= await this.init(); + await this.ensureReadable(); + + const entry = this._info.layout.get(property); + if (!entry) return undefined; + + return this.readEntry(entry); + } + + public async getSingle( + property: NVMEntryName, + index: number, + ): Promise { + this._info ??= await this.init(); + await this.ensureReadable(); + + const entry = this._info.layout.get(property); + if (!entry) return undefined; + + return this.readSingleEntry(entry, index); + } + + private encodeEntry( + type: NVMEntryType, + data: NVMData, + entrySize?: number, + ): Buffer { + const size = entrySize ?? NVMEntrySizes[type]; + + switch (type) { + case NVMEntryType.Byte: + return Buffer.from([data as number]); + case NVMEntryType.Word: + case NVMEntryType.NVMModuleSize: { + const ret = Buffer.allocUnsafe(2); + ret.writeUInt16BE(data as number, 0); + return ret; + } + case NVMEntryType.DWord: { + const ret = Buffer.allocUnsafe(4); + ret.writeUInt32BE(data as number, 0); + return ret; + } + case NVMEntryType.NodeInfo: + return data + ? encodeNVM500NodeInfo(data as NVM500NodeInfo) + : Buffer.alloc(size, 0); + case NVMEntryType.NodeMask: { + const ret = Buffer.alloc(size, 0); + if (data) { + encodeBitMask(data as number[], MAX_NODES, 1).copy( + ret, + 0, + ); + } + return ret; + } + case NVMEntryType.SUCUpdateEntry: + return encodeSUCUpdateEntry(data as SUCUpdateEntry); + case NVMEntryType.Route: + return encodeRoute(data as Route); + case NVMEntryType.NVMModuleDescriptor: + return encodeNVMModuleDescriptor( + data as NVMModuleDescriptor, + ); + case NVMEntryType.NVMDescriptor: + return encodeNVMDescriptor(data as NVMDescriptor); + case NVMEntryType.Buffer: + return data as Buffer; + } + } + + private async writeSingleRawEntry( + entry: ResolvedNVMEntry, + index: number, + data: Buffer, + ): Promise { + if (index >= entry.count) { + throw new ZWaveError( + `Index out of range. Tried to write entry ${index} of ${entry.count}.`, + ZWaveErrorCodes.Argument_Invalid, + ); + } + return nvmWriteBuffer( + this._io, + entry.offset + index * entry.size, + data, + ); + } + + private async writeRawEntry( + entry: ResolvedNVMEntry, + data: Buffer[], + ): Promise { + await nvmWriteBuffer( + this._io, + entry.offset, + Buffer.concat(data), + ); + } + + private async writeEntry( + entry: ResolvedNVMEntry, + data: NVMData[], + ): Promise { + const buffers = data.map((d) => + this.encodeEntry(entry.type, d, entry.size) + ); + await this.writeRawEntry(entry, buffers); + } + + private async writeSingleEntry( + entry: ResolvedNVMEntry, + index: number, + data: NVMData, + ): Promise { + const buffer = this.encodeEntry(entry.type, data, entry.size); + await this.writeSingleRawEntry(entry, index, buffer); + } + + public async set(property: NVMEntryName, value: NVMData[]): Promise { + this._info ??= await this.init(); + await this.ensureWritable(); + + const entry = this._info.layout.get(property); + if (!entry) return; + + await this.writeEntry(entry, value); + } + + public async setSingle( + property: NVMEntryName, + index: number, + value: NVMData, + ): Promise { + this._info ??= await this.init(); + await this.ensureWritable(); + + const entry = this._info.layout.get(property); + if (!entry) return undefined; + + await this.writeSingleEntry(entry, index, value); + } + + private async fill(key: NVMEntryName, value: number) { + this._info ??= await this.init(); + await this.ensureWritable(); + + const entry = this._info.layout.get(key); + // Skip entries not present in this layout + if (!entry) return; + + const size = entry.size ?? NVMEntrySizes[entry.type]; + + const data: NVMData[] = []; + for (let i = 1; i <= entry.count; i++) { + switch (entry.type) { + case NVMEntryType.Byte: + case NVMEntryType.Word: + case NVMEntryType.DWord: + data.push(value); + break; + case NVMEntryType.Buffer: + data.push(Buffer.alloc(size, value)); + break; + case NVMEntryType.NodeMask: + data.push(new Array(size).fill(value)); + break; + case NVMEntryType.NodeInfo: + case NVMEntryType.Route: + data.push(undefined); + break; + default: + throw new Error( + `Cannot fill entry of type ${NVMEntryType[entry.type]}`, + ); + } + } + + await this.writeEntry(entry, data); + } + + // eslint-disable-next-line @typescript-eslint/require-await + public async delete(_property: NVMEntryName): Promise { + throw new Error( + "Deleting entries is not supported for 500 series NVMs", + ); + } + + public async erase( + options: NVM500EraseOptions, + ): Promise { + // Blank NVM with 0xff + await nvmWriteBuffer(this._io, 0, Buffer.alloc(options.nvmSize, 0xff)); + + // Compute module sizes + const layoutEntries = Array.from(options.layout.values()); + const moduleSizeEntries = layoutEntries + .filter((entry) => entry.type === NVMEntryType.NVMModuleSize); + const moduleDescriptorEntries = layoutEntries + .filter((entry) => entry.type === NVMEntryType.NVMModuleDescriptor); + const moduleDescriptors = new Map(); + // Each module starts with a size marker and ends with a descriptor + for (let i = 0; i < moduleSizeEntries.length; i++) { + const sizeEntry = moduleSizeEntries[i]; + const descriptorEntry = moduleDescriptorEntries[i]; + const size = descriptorEntry.offset + + descriptorEntry.size + - sizeEntry.offset; + + // Write each module size to their NVMModuleSize marker + await this.writeEntry(sizeEntry, [size]); + + // Write each module size, type and version to the NVMModuleDescriptor at the end + const moduleType = descriptorEntry.name === "nvmZWlibraryDescriptor" + ? NVMModuleType.ZW_LIBRARY + : descriptorEntry.name === "nvmApplicationDescriptor" + ? NVMModuleType.APPLICATION + : descriptorEntry.name === "nvmHostApplicationDescriptor" + ? NVMModuleType.HOST_APPLICATION + : descriptorEntry.name === "nvmDescriptorDescriptor" + ? NVMModuleType.NVM_DESCRIPTOR + : 0; + + const moduleDescriptor: NVMModuleDescriptor = { + size, + type: moduleType, + version: descriptorEntry.name === "nvmZWlibraryDescriptor" + ? options.nvmDescriptor.protocolVersion + : options.nvmDescriptor.firmwareVersion, + }; + moduleDescriptors.set(descriptorEntry.name, moduleDescriptor); + await this.writeEntry(descriptorEntry, [moduleDescriptor]); + } + + // Initialize this._info, so the following works + this._info = { + ...options, + moduleDescriptors, + }; + + // Write NVM size to nvmTotalEnd + // the value points to the last byte, therefore subtract 1 + await this.set("nvmTotalEnd", [options.nvmSize - 1]); + + // Set some entries that are always identical + await this.set("NVM_CONFIGURATION_VALID_far", [CONFIGURATION_VALID_0]); + await this.set("NVM_CONFIGURATION_REALLYVALID_far", [ + CONFIGURATION_VALID_1, + ]); + await this.set("EEOFFSET_MAGIC_far", [MAGIC_VALUE]); + await this.set("EX_NVM_ROUTECACHE_MAGIC_far", [ROUTECACHE_VALID]); + await this.set("nvmModuleSizeEndMarker", [0]); + + // Set NVM descriptor + await this.set("nvmDescriptor", [options.nvmDescriptor]); + + // Set dummy entries we're never going to fill + await this.fill("NVM_INTERNAL_RESERVED_1_far", 0); + await this.fill("NVM_INTERNAL_RESERVED_2_far", 0xff); + await this.fill("NVM_INTERNAL_RESERVED_3_far", 0); + await this.fill("NVM_RTC_TIMERS_far", 0); + await this.fill("EX_NVM_SUC_ACTIVE_START_far", 0); + await this.fill("EX_NVM_ZENSOR_TABLE_START_far", 0); + await this.fill("NVM_SECURITY0_KEY_far", 0); + + // And blank fields that are not supposed to be filled with 0xff + await this.fill("EX_NVM_SUC_CONTROLLER_LIST_START_far", 0xfe); + await this.fill("EX_NVM_NODE_TABLE_START_far", 0); + await this.fill("EX_NVM_ROUTING_TABLE_START_far", 0); + // For routes the value does not matter + await this.fill("EX_NVM_ROUTECACHE_START_far", 0); + await this.fill("EX_NVM_ROUTECACHE_NLWR_SR_START_far", 0); + } +} diff --git a/packages/nvmedit/src/lib/common/definitions.ts b/packages/nvmedit/src/lib/common/definitions.ts new file mode 100644 index 000000000000..ee104b5a1f0d --- /dev/null +++ b/packages/nvmedit/src/lib/common/definitions.ts @@ -0,0 +1,246 @@ +import { type CommandClasses } from "@zwave-js/core"; +import { type Expand } from "@zwave-js/shared"; +import { + type ApplicationCCsFile, + type ApplicationRFConfigFile, + type ApplicationTypeFile, + type ControllerInfoFile, + type LRNodeInfo, + type NodeInfo, +} from "../nvm3/files"; +import { type Route } from "./routeCache"; +import { type SUCUpdateEntry } from "./sucUpdateEntry"; + +export enum NVMAccess { + None, + Read, + Write, + ReadWrite, +} + +/** Provides an abstraction to access the contents of an NVM at the binary level */ +export interface NVMIO { + /** + * Opens the NVM for reading and/or writing. + * Since different NVM implementations may or may not allow reading and writing at the same time, + * the returned value indicates which access patterns are actually allowed. + */ + open(access: NVMAccess.Read | NVMAccess.Write): Promise; + + /** Returns the size of the NVM, after it has been opened */ + get size(): number; + /** Returns which access is currently allowed for this NVM implementation */ + get accessMode(): NVMAccess; + + /** + * Determines the size of the data chunks that can be used for writing. + * Requires the NVM to be readable. + */ + determineChunkSize(): Promise; + + /** + * Reads a chunk of data with the given length from the NVM. + * If the length is longer than the chunk size, or the end of the NVM is reached, + * the returned buffer will be shorter than the requested length. + */ + read( + offset: number, + length: number, + ): Promise<{ buffer: Buffer; endOfFile: boolean }>; + + /** + * Writes a chunk of data with the given length from the NVM. + * The returned value indicates how many bytes were actually written. + */ + write( + offset: number, + data: Buffer, + ): Promise<{ bytesWritten: number; endOfFile: boolean }>; + + /** Closes the NVM */ + close(): Promise; +} + +/** A specific NVM implementation */ +export interface NVM { + /** Checks if a property exists in the NVM */ + has(property: ID): Promise; + + /** Reads a property from the NVM */ + get(property: ID): Promise; + + /** Writes a property to the NVM */ + set(property: ID, value: Data): Promise; + + /** Deletes the property from the NVM */ + delete(property: ID): Promise; +} + +/** + * Provides an application-level abstraction over an NVM implementation + */ +export interface NVMAdapter { + /** Reads a property from the NVM */ + get( + property: T, + required?: R, + ): Promise< + R extends true ? NVMPropertyToDataType + : (NVMPropertyToDataType | undefined) + >; + + /** + * Changes a property to be written to the NVM later + */ + set( + property: T, + value: NVMPropertyToDataType, + ): Promise; + + /** + * Marks a property for deletion from the NVM. In some implementations, + * deleting one property may delete multiple properties that are stored together. + */ + delete(property: NVMProperty): Promise; + + /** Returns whether there are pending changes that weren't written to the NVM yet */ + hasPendingChanges(): boolean; + + /** Writes all pending changes to the NVM */ + commit(): Promise; +} + +export type ControllerNVMPropertyTypes = Expand< + & { + protocolVersion: string; + protocolFileFormat: number; + applicationVersion: string; + applicationData: Buffer; + preferredRepeaters?: number[]; + sucUpdateEntries: SUCUpdateEntry[]; + appRouteLock: number[]; + routeSlaveSUC: number[]; + sucPendingUpdate: number[]; + pendingDiscovery: number[]; + virtualNodeIds: number[]; + nodeIds: number[]; + } + // 700+ series only + & Partial<{ + applicationFileFormat: number; + applicationName: string; + lrNodeIds: number[]; + }> + // 500 series only + & Partial<{ + learnedHomeId: Buffer; + commandClasses: CommandClasses[]; + systemState: number; + watchdogStarted: number; + powerLevelNormal: number[]; + powerLevelLow: number[]; + powerMode: number; + powerModeExtintEnable: number; + powerModeWutTimeout: number; + }> + & Pick< + ControllerInfoFile, + | "homeId" + | "nodeId" + | "lastNodeId" + | "staticControllerNodeId" + | "sucLastIndex" + | "controllerConfiguration" + | "sucAwarenessPushNeeded" + | "maxNodeId" + | "reservedId" + | "systemState" + | "lastNodeIdLR" + | "maxNodeIdLR" + | "reservedIdLR" + | "primaryLongRangeChannelId" + | "dcdcConfig" + > + // 700+ series only + & Partial< + Pick< + ApplicationCCsFile, + | "includedInsecurely" + | "includedSecurelyInsecureCCs" + | "includedSecurelySecureCCs" + > + > + // 700+ series only + & Partial< + Pick< + ApplicationRFConfigFile, + | "rfRegion" + | "txPower" + | "measured0dBm" + | "enablePTI" + | "maxTXPower" + | "nodeIdType" + > + > + // 700+ series only + & Partial< + Pick< + ApplicationTypeFile, + | "isListening" + | "optionalFunctionality" + | "genericDeviceClass" + | "specificDeviceClass" + > + > +>; + +export interface NodeNVMPropertyTypes { + info: NodeInfo; + routes: { lwr?: Route; nlwr?: Route }; +} + +export interface LRNodeNVMPropertyTypes { + info: LRNodeInfo; +} + +export type ControllerNVMProperty = { + domain: "controller"; + type: keyof ControllerNVMPropertyTypes; + nodeId?: undefined; +}; + +export type ControllerNVMPropertyToDataType

= + ControllerNVMPropertyTypes[P["type"]]; + +export type NodeNVMProperty = { + domain: "node"; + type: keyof NodeNVMPropertyTypes; + nodeId: number; +}; + +export type NodeNVMPropertyToDataType

= + P["type"] extends keyof NodeNVMPropertyTypes + ? NodeNVMPropertyTypes[P["type"]] + : never; + +export type LRNodeNVMProperty = { + domain: "lrnode"; + type: keyof LRNodeNVMPropertyTypes; + nodeId: number; +}; + +export type LRNodeNVMPropertyToDataType

= + P["type"] extends keyof LRNodeNVMPropertyTypes + ? LRNodeNVMPropertyTypes[P["type"]] + : never; + +export type NVMProperty = + | ControllerNVMProperty + | NodeNVMProperty + | LRNodeNVMProperty; + +export type NVMPropertyToDataType

= P extends + ControllerNVMProperty ? ControllerNVMPropertyToDataType

+ : P extends NodeNVMProperty ? NodeNVMPropertyToDataType

+ : P extends LRNodeNVMProperty ? LRNodeNVMPropertyToDataType

+ : never; diff --git a/packages/nvmedit/src/lib/common/routeCache.ts b/packages/nvmedit/src/lib/common/routeCache.ts new file mode 100644 index 000000000000..2e78f1c62bbd --- /dev/null +++ b/packages/nvmedit/src/lib/common/routeCache.ts @@ -0,0 +1,75 @@ +import { + type FLiRS, + MAX_REPEATERS, + RouteProtocolDataRate, + protocolDataRateMask, +} from "@zwave-js/core/safe"; + +const ROUTE_SIZE = MAX_REPEATERS + 1; +export const ROUTECACHE_SIZE = 2 * ROUTE_SIZE; +export const EMPTY_ROUTECACHE_FILL = 0xff; +export const emptyRouteCache = Buffer.alloc( + ROUTECACHE_SIZE, + EMPTY_ROUTECACHE_FILL, +); + +enum Beaming { + "1000ms" = 0x40, + "250ms" = 0x20, +} + +export interface Route { + beaming: FLiRS; + protocolRate: RouteProtocolDataRate; + repeaterNodeIDs?: number[]; +} + +export interface RouteCache { + nodeId: number; + lwr: Route; + nlwr: Route; +} + +export function parseRoute(buffer: Buffer, offset: number): Route { + const routeConf = buffer[offset + MAX_REPEATERS]; + const ret: Route = { + beaming: (Beaming[routeConf & 0x60] ?? false) as FLiRS, + protocolRate: routeConf & protocolDataRateMask, + repeaterNodeIDs: [ + ...buffer.subarray(offset, offset + MAX_REPEATERS), + ].filter((id) => id !== 0), + }; + if (ret.repeaterNodeIDs![0] === 0xfe) delete ret.repeaterNodeIDs; + return ret; +} + +export function encodeRoute(route: Route | undefined): Buffer { + const ret = Buffer.alloc(ROUTE_SIZE, 0); + if (route) { + if (route.repeaterNodeIDs) { + for ( + let i = 0; + i < MAX_REPEATERS && i < route.repeaterNodeIDs.length; + i++ + ) { + ret[i] = route.repeaterNodeIDs[i]; + } + } else { + ret[0] = 0xfe; + } + let routeConf = 0; + if (route.beaming) routeConf |= Beaming[route.beaming] ?? 0; + routeConf |= route.protocolRate & protocolDataRateMask; + ret[ROUTE_SIZE - 1] = routeConf; + } + + return ret; +} + +export function getEmptyRoute(): Route { + return { + beaming: false, + protocolRate: RouteProtocolDataRate.ZWave_40k, + repeaterNodeIDs: undefined, + }; +} diff --git a/packages/nvmedit/src/lib/common/sucUpdateEntry.ts b/packages/nvmedit/src/lib/common/sucUpdateEntry.ts new file mode 100644 index 000000000000..f9ad86cce429 --- /dev/null +++ b/packages/nvmedit/src/lib/common/sucUpdateEntry.ts @@ -0,0 +1,55 @@ +import { + type CommandClasses, + ZWaveError, + ZWaveErrorCodes, + encodeCCList, + parseCCList, +} from "@zwave-js/core/safe"; +import { SUC_UPDATE_ENTRY_SIZE, SUC_UPDATE_NODEPARM_MAX } from "../../consts"; + +export interface SUCUpdateEntry { + nodeId: number; + changeType: number; // TODO: This is some kind of enum + supportedCCs: CommandClasses[]; + controlledCCs: CommandClasses[]; +} + +export function parseSUCUpdateEntry( + buffer: Buffer, + offset: number, +): SUCUpdateEntry | undefined { + const slice = buffer.subarray(offset, offset + SUC_UPDATE_ENTRY_SIZE); + if (slice.every((b) => b === 0x00 || b === 0xff)) { + return; + } + const nodeId = slice[0]; + const changeType = slice[1]; + const { supportedCCs, controlledCCs } = parseCCList( + slice.subarray(2, SUC_UPDATE_ENTRY_SIZE), + ); + return { + nodeId, + changeType, + supportedCCs: supportedCCs.filter((cc) => cc > 0), + controlledCCs: controlledCCs.filter((cc) => cc > 0), + }; +} + +export function encodeSUCUpdateEntry( + entry: SUCUpdateEntry | undefined, +): Buffer { + const ret = Buffer.alloc(SUC_UPDATE_ENTRY_SIZE, 0); + if (entry) { + ret[0] = entry.nodeId; + ret[1] = entry.changeType; + const ccList = encodeCCList(entry.supportedCCs, entry.controlledCCs); + if (ccList.length > SUC_UPDATE_NODEPARM_MAX) { + throw new ZWaveError( + "Cannot encode SUC update entry, too many CCs", + ZWaveErrorCodes.Argument_Invalid, + ); + } + ccList.copy(ret, 2); + } + return ret; +} diff --git a/packages/nvmedit/src/lib/common/utils.ts b/packages/nvmedit/src/lib/common/utils.ts new file mode 100644 index 000000000000..c1ecbf171cfa --- /dev/null +++ b/packages/nvmedit/src/lib/common/utils.ts @@ -0,0 +1,75 @@ +import type { NVMIO } from "./definitions"; + +export async function nvmReadUInt32LE( + io: NVMIO, + position: number, +): Promise { + const { buffer } = await io.read(position, 4); + return buffer.readUInt32LE(0); +} + +export async function nvmReadUInt16LE( + io: NVMIO, + position: number, +): Promise { + const { buffer } = await io.read(position, 2); + return buffer.readUInt16LE(0); +} + +export async function nvmReadUInt32BE( + io: NVMIO, + position: number, +): Promise { + const { buffer } = await io.read(position, 4); + return buffer.readUInt32BE(0); +} + +export async function nvmReadUInt16BE( + io: NVMIO, + position: number, +): Promise { + const { buffer } = await io.read(position, 2); + return buffer.readUInt16BE(0); +} + +export async function nvmReadUInt8( + io: NVMIO, + position: number, +): Promise { + const { buffer } = await io.read(position, 1); + return buffer.readUInt8(0); +} + +export async function nvmWriteBuffer( + io: NVMIO, + position: number, + buffer: Buffer, +): Promise { + const chunkSize = await io.determineChunkSize(); + let offset = 0; + while (offset < buffer.length) { + const chunk = buffer.subarray(offset, offset + chunkSize); + const { bytesWritten } = await io.write(position + offset, chunk); + offset += bytesWritten; + } +} + +export async function nvmReadBuffer( + io: NVMIO, + position: number, + length: number, +): Promise { + const ret = Buffer.allocUnsafe(length); + const chunkSize = await io.determineChunkSize(); + let offset = 0; + while (offset < length) { + const { buffer, endOfFile } = await io.read( + position + offset, + Math.min(chunkSize, length - offset), + ); + buffer.copy(ret, offset); + offset += buffer.length; + if (endOfFile) break; + } + return ret.subarray(0, offset); +} diff --git a/packages/nvmedit/src/lib/io/BufferedNVMReader.ts b/packages/nvmedit/src/lib/io/BufferedNVMReader.ts new file mode 100644 index 000000000000..84fa990773ad --- /dev/null +++ b/packages/nvmedit/src/lib/io/BufferedNVMReader.ts @@ -0,0 +1,111 @@ +import { type NVMAccess, type NVMIO } from "../common/definitions"; + +interface BufferedChunk { + offset: number; + data: Buffer; +} + +export class BufferedNVMReader implements NVMIO { + public constructor(inner: NVMIO) { + this._inner = inner; + } + + private _inner: NVMIO; + // Already-read chunks. There are a few rules to follow: + // - Offsets MUST be multiples of the chunk size + // - The size of each chunk must be exactly the chunk size + private _buffer: BufferedChunk[] = []; + + open(access: NVMAccess.Read | NVMAccess.Write): Promise { + return this._inner.open(access); + } + get size(): number { + return this._inner.size; + } + get accessMode(): NVMAccess { + return this._inner.accessMode; + } + determineChunkSize(): Promise { + return this._inner.determineChunkSize(); + } + + private async readBuffered( + alignedOffset: number, + chunkSize: number, + ): Promise { + let buffered = this._buffer.find((chunk) => + chunk.offset === alignedOffset + ); + if (!buffered) { + const { buffer: data } = await this._inner.read( + alignedOffset, + chunkSize, + ); + buffered = { data, offset: alignedOffset }; + this._buffer.push(buffered); + } + return buffered.data; + } + + async read( + offset: number, + length: number, + ): Promise<{ buffer: Buffer; endOfFile: boolean }> { + // Limit the read size to the chunk size. This ensures we have to deal with maximum 2 chunks or read requests + const chunkSize = await this.determineChunkSize(); + length = Math.min(length, chunkSize); + + // Figure out at which offsets to read + const firstChunkStart = offset - offset % chunkSize; + const secondChunkStart = (offset + length) + - (offset + length) % chunkSize; + + // Read one or two chunks, depending on how many are needed + const chunks: Buffer[] = []; + chunks.push(await this.readBuffered(firstChunkStart, chunkSize)); + if (secondChunkStart > firstChunkStart) { + chunks.push(await this.readBuffered(secondChunkStart, chunkSize)); + } + const alignedBuffer = Buffer.concat(chunks); + + // Then slice out the section we need + const endOfFile = offset + length >= this.size; + const buffer = alignedBuffer.subarray( + offset - firstChunkStart, + offset - firstChunkStart + length, + ); + + return { + buffer, + endOfFile, + }; + } + + async write( + offset: number, + data: Buffer, + ): Promise<{ bytesWritten: number; endOfFile: boolean }> { + const ret = await this._inner.write(offset, data); + + // Invalidate cached chunks + const chunkSize = await this.determineChunkSize(); + // Figure out at which offsets to read + const firstChunkStart = offset - offset % chunkSize; + const lastChunkStart = (offset + ret.bytesWritten) + - (offset + ret.bytesWritten) % chunkSize; + + // TODO: We should update existing chunks where possible + for (let i = firstChunkStart; i <= lastChunkStart; i += chunkSize) { + const index = this._buffer.findIndex((chunk) => chunk.offset === i); + if (index !== -1) { + this._buffer.splice(index, 1); + } + } + + return ret; + } + + close(): Promise { + return this._inner.close(); + } +} diff --git a/packages/nvmedit/src/lib/io/NVMFileIO.ts b/packages/nvmedit/src/lib/io/NVMFileIO.ts new file mode 100644 index 000000000000..8c683b351c64 --- /dev/null +++ b/packages/nvmedit/src/lib/io/NVMFileIO.ts @@ -0,0 +1,112 @@ +import { ZWaveError, ZWaveErrorCodes } from "@zwave-js/core"; +import fs, { type FileHandle } from "node:fs/promises"; +import { NVMAccess, type NVMIO } from "../common/definitions"; + +/** An implementation of NVMIO for the filesystem */ +export class NVMFileIO implements NVMIO { + public constructor(path: string) { + this._path = path; + this._accessMode = NVMAccess.None; + } + + private _path: string; + private _handle: FileHandle | undefined; + private _chunkSize = 16 * 1024; // We could read more, but 16 KB chunks are more than enough for reading NVM contents + + async open(access: NVMAccess): Promise { + let flags: string; + switch (access) { + case NVMAccess.Read: + flags = "r"; + break; + case NVMAccess.Write: + case NVMAccess.ReadWrite: + // Read/Write, don't create, don't truncate + flags = "r+"; + access = NVMAccess.ReadWrite; + break; + default: + throw new Error("Invalid access mode"); + } + this._handle = await fs.open(this._path, flags); + this._size = (await this._handle.stat()).size; + + this._accessMode = access; + return access; + } + + private _size: number | undefined; + get size(): number { + if (this._size == undefined) { + throw new ZWaveError( + "The NVM file is not open", + ZWaveErrorCodes.NVM_NotOpen, + ); + } + return this._size; + } + + private _accessMode: NVMAccess; + get accessMode(): NVMAccess { + return this._accessMode; + } + + determineChunkSize(): Promise { + return Promise.resolve(this._chunkSize); + } + + async read( + offset: number, + length: number, + ): Promise<{ buffer: Buffer; endOfFile: boolean }> { + if (this._handle == undefined) { + throw new ZWaveError( + "The NVM file is not open", + ZWaveErrorCodes.NVM_NotOpen, + ); + } + const readResult = await this._handle.read({ + buffer: Buffer.alloc(length), + position: offset, + }); + + const endOfFile = offset + readResult.bytesRead >= this.size; + return { + buffer: readResult.buffer.subarray(0, readResult.bytesRead), + endOfFile, + }; + } + + async write( + offset: number, + data: Buffer, + ): Promise<{ bytesWritten: number; endOfFile: boolean }> { + if (this._handle == undefined) { + throw new ZWaveError( + "The NVM file is not open", + ZWaveErrorCodes.NVM_NotOpen, + ); + } + if (offset + data.length > this.size) { + throw new ZWaveError( + "Write would exceed the NVM size", + ZWaveErrorCodes.NVM_NoSpace, + ); + } + const writeResult = await this._handle.write( + data, + 0, + data.length, + offset, + ); + const endOfFile = offset + writeResult.bytesWritten >= this.size; + return { bytesWritten: writeResult.bytesWritten, endOfFile }; + } + + async close(): Promise { + await this._handle?.close(); + this._handle = undefined; + this._accessMode = NVMAccess.None; + this._size = undefined; + } +} diff --git a/packages/nvmedit/src/lib/io/NVMMemoryIO.ts b/packages/nvmedit/src/lib/io/NVMMemoryIO.ts new file mode 100644 index 000000000000..01f34a88ada0 --- /dev/null +++ b/packages/nvmedit/src/lib/io/NVMMemoryIO.ts @@ -0,0 +1,62 @@ +import { ZWaveError, ZWaveErrorCodes } from "@zwave-js/core"; +import { NVMAccess, type NVMIO } from "../common/definitions"; + +/** An im-memory implementation of NVMIO */ +export class NVMMemoryIO implements NVMIO { + public constructor(buffer: Buffer) { + this._buffer = buffer; + } + + private _buffer: Buffer; + + open(_access: NVMAccess.Read | NVMAccess.Write): Promise { + // Nothing to do + return Promise.resolve(NVMAccess.ReadWrite); + } + + get size(): number { + return this._buffer.length; + } + + get accessMode(): NVMAccess { + return NVMAccess.ReadWrite; + } + + determineChunkSize(): Promise { + // We can read the entire buffer at once + return Promise.resolve(this._buffer.length); + } + + read( + offset: number, + length: number, + ): Promise<{ buffer: Buffer; endOfFile: boolean }> { + return Promise.resolve({ + buffer: this._buffer.subarray(offset, offset + length), + endOfFile: offset + length >= this._buffer.length, + }); + } + + write( + offset: number, + data: Buffer, + ): Promise<{ bytesWritten: number; endOfFile: boolean }> { + if (offset + data.length > this.size) { + throw new ZWaveError( + "Write would exceed the NVM size", + ZWaveErrorCodes.NVM_NoSpace, + ); + } + + data.copy(this._buffer, offset, 0, data.length); + return Promise.resolve({ + bytesWritten: data.length, + endOfFile: offset + data.length >= this._buffer.length, + }); + } + + close(): Promise { + // Nothing to do + return Promise.resolve(); + } +} diff --git a/packages/nvmedit/src/lib/nvm3/adapter.ts b/packages/nvmedit/src/lib/nvm3/adapter.ts new file mode 100644 index 000000000000..ed5e6a13da04 --- /dev/null +++ b/packages/nvmedit/src/lib/nvm3/adapter.ts @@ -0,0 +1,1289 @@ +import { ZWaveError, ZWaveErrorCodes } from "@zwave-js/core"; +import { num2hex } from "@zwave-js/shared"; +import { assertNever } from "alcalzone-shared/helpers"; +import { SUC_MAX_UPDATES } from "../../consts"; +import { type NVM3 } from "../NVM3"; +import { + type ControllerNVMProperty, + type LRNodeNVMProperty, + type NVMAdapter, + type NVMProperty, + type NVMPropertyToDataType, + type NodeNVMProperty, +} from "../common/definitions"; +import { type RouteCache } from "../common/routeCache"; +import { + type ApplicationCCsFile, + ApplicationCCsFileID, + ApplicationDataFile, + ApplicationDataFileID, + ApplicationNameFile, + ApplicationNameFileID, + type ApplicationRFConfigFile, + ApplicationRFConfigFileID, + type ApplicationTypeFile, + ApplicationTypeFileID, + type ApplicationVersionFile, + type ApplicationVersionFile800, + ApplicationVersionFile800ID, + ApplicationVersionFileID, + type ControllerInfoFile, + ControllerInfoFileID, + LRNodeInfoFileV5, + NVMFile, + NodeInfoFileV0, + NodeInfoFileV1, + ProtocolAppRouteLockNodeMaskFile, + ProtocolAppRouteLockNodeMaskFileID, + ProtocolLRNodeListFile, + ProtocolLRNodeListFileID, + ProtocolNodeListFile, + ProtocolNodeListFileID, + ProtocolPendingDiscoveryNodeMaskFile, + ProtocolPendingDiscoveryNodeMaskFileID, + ProtocolPreferredRepeatersFile, + ProtocolPreferredRepeatersFileID, + ProtocolRouteCacheExistsNodeMaskFile, + ProtocolRouteCacheExistsNodeMaskFileID, + ProtocolRouteSlaveSUCNodeMaskFile, + ProtocolRouteSlaveSUCNodeMaskFileID, + ProtocolSUCPendingUpdateNodeMaskFile, + ProtocolSUCPendingUpdateNodeMaskFileID, + type ProtocolVersionFile, + ProtocolVersionFileID, + ProtocolVirtualNodeMaskFile, + ProtocolVirtualNodeMaskFileID, + RouteCacheFileV0, + RouteCacheFileV1, + SUCUpdateEntriesFileIDV0, + SUCUpdateEntriesFileV0, + SUCUpdateEntriesFileV5, + SUCUpdateEntriesFileV5IDBase, + SUCUpdateEntriesFileV5IDMax, + SUC_UPDATES_PER_FILE_V5, + getNVMSectionByFileID, + nodeIdToLRNodeInfoFileIDV5, + nodeIdToNodeInfoFileIDV0, + nodeIdToNodeInfoFileIDV1, + nodeIdToRouteCacheFileIDV0, + nodeIdToRouteCacheFileIDV1, + sucUpdateIndexToSUCUpdateEntriesFileIDV5, +} from "./files"; + +const DEFAULT_FILE_VERSION = "7.0.0"; + +export class NVM3Adapter implements NVMAdapter { + public constructor(nvm: NVM3) { + this._nvm = nvm; + } + + private _nvm: NVM3; + private _initialized: boolean = false; + + private _protocolInfo: { + version: string; + format: number; + } | undefined; + private _applicationInfo: { + version: string; + format: number; + } | undefined; + + /** A list of pending changes that haven't been written to the NVM yet. `null` indicates a deleted entry. */ + private _pendingChanges: Map = new Map(); + + private getFileVersion(fileId: number): string { + if ( + fileId === ProtocolVersionFileID + || fileId === ApplicationVersionFileID + || fileId === ApplicationVersionFile800ID + ) { + return DEFAULT_FILE_VERSION; + } + const section = getNVMSectionByFileID(fileId); + if (section === "application") { + return this._applicationInfo?.version ?? DEFAULT_FILE_VERSION; + } else if (section === "protocol") { + return this._protocolInfo?.version ?? DEFAULT_FILE_VERSION; + } + + return DEFAULT_FILE_VERSION; + } + + private async init(): Promise { + if (!this._protocolInfo) { + const protocolVersionFile = await this._getFile< + ProtocolVersionFile + >( + ProtocolVersionFileID, + true, + ); + if (protocolVersionFile) { + const version = + `${protocolVersionFile.major}.${protocolVersionFile.minor}.${protocolVersionFile.patch}`; + this._protocolInfo = { + version, + format: protocolVersionFile.format, + }; + } + } + + if (!this._applicationInfo) { + const applicationVersionFile700 = await this._getFile< + ApplicationVersionFile + >(ApplicationVersionFileID, true); + const applicationVersionFile800 = await this._getFile< + ApplicationVersionFile800 + >(ApplicationVersionFile800ID, true); + const applicationVersionFile = applicationVersionFile700 + ?? applicationVersionFile800; + + if (applicationVersionFile) { + const version = + `${applicationVersionFile.major}.${applicationVersionFile.minor}.${applicationVersionFile.patch}`; + this._applicationInfo = { + version, + format: applicationVersionFile.format, + }; + } + } + + this._initialized = true; + } + + /** Adds a complete file to the list of pending changes */ + public setFile(file: NVMFile): void { + const { key, data } = file.serialize(); + this._pendingChanges.set(key, data); + } + + public async hasFile(fileId: number): Promise { + if (!this._initialized) await this.init(); + + if (this._pendingChanges.has(fileId)) { + return this._pendingChanges.get(fileId) !== null; + } else { + return this._nvm.has(fileId); + } + } + + private async _getFile( + fileId: number, + skipInit: boolean = false, + ): Promise { + if (!skipInit && !this._initialized) await this.init(); + + // Prefer pending changes over the actual NVM, so changes can be composed + let data: Buffer | null | undefined; + if (this._pendingChanges.has(fileId)) { + data = this._pendingChanges.get(fileId); + } else { + data = await this._nvm.get(fileId); + } + if (!data) return; + + const fileVersion = this.getFileVersion(fileId); + return NVMFile.from(fileId, data, fileVersion) as T; + } + + private async _expectFile( + fileId: number, + skipInit: boolean = false, + ): Promise { + const file = await this._getFile(fileId, skipInit); + if (!file) { + throw new ZWaveError( + `NVM file ${num2hex(fileId)} not found`, + ZWaveErrorCodes.NVM_ObjectNotFound, + ); + } + return file; + } + + public getFile( + fileId: number, + required: true, + ): Promise; + + public getFile( + fileId: number, + required?: false, + ): Promise; + + public getFile( + fileId: number, + required?: boolean, + ): Promise { + if (required) { + return this._expectFile(fileId) as any; + } else { + return this._getFile(fileId) as any; + } + } + + public get( + property: T, + required?: R, + ): Promise< + R extends true ? NVMPropertyToDataType + : (NVMPropertyToDataType | undefined) + > { + if (property.domain === "controller") { + return this.getControllerNVMProperty(property, !!required) as any; + } else if (property.domain === "lrnode") { + return this.getLRNodeNVMProperty(property, !!required) as any; + } else { + return this.getNodeNVMProperty(property, !!required) as any; + } + } + + private async getControllerNVMProperty( + property: ControllerNVMProperty, + required: boolean, + ): Promise { + const getFile = (fileId: number) => { + if (required) { + return this._expectFile(fileId); + } else { + return this._getFile(fileId); + } + }; + + switch (property.type) { + case "protocolVersion": { + const file = await getFile( + ProtocolVersionFileID, + ); + if (!file) return; + return `${file.major}.${file.minor}.${file.patch}`; + } + case "protocolFileFormat": { + const file = await getFile( + ProtocolVersionFileID, + ); + return file?.format; + } + case "applicationVersion": + case "applicationFileFormat": { + const file700 = await this._getFile( + ApplicationVersionFileID, + ); + const file800 = await this._getFile( + ApplicationVersionFile800ID, + ); + const file = file700 ?? file800; + + if (!file) { + if (required) { + throw new ZWaveError( + "ApplicationVersionFile not found!", + ZWaveErrorCodes.NVM_ObjectNotFound, + ); + } else { + return; + } + } + + if (property.type === "applicationVersion") { + return `${file.major}.${file.minor}.${file.patch}`; + } else if (property.type === "applicationFileFormat") { + return file?.format; + } + } + + case "applicationData": { + const file = await getFile( + ApplicationDataFileID, + ); + return file?.applicationData; + } + + case "applicationName": { + const file = await getFile( + ApplicationNameFileID, + ); + return file?.name; + } + + case "homeId": + case "nodeId": + case "lastNodeId": + case "staticControllerNodeId": + case "sucLastIndex": + case "controllerConfiguration": + case "sucAwarenessPushNeeded": + case "maxNodeId": + case "reservedId": + case "systemState": + case "lastNodeIdLR": + case "maxNodeIdLR": + case "reservedIdLR": + case "primaryLongRangeChannelId": + case "dcdcConfig": { + const file = await getFile( + ControllerInfoFileID, + ); + return file?.[property.type]; + } + + case "includedInsecurely": + case "includedSecurelyInsecureCCs": + case "includedSecurelySecureCCs": { + const file = await getFile( + ApplicationCCsFileID, + ); + return file?.[property.type]; + } + + case "rfRegion": + case "txPower": + case "measured0dBm": + case "enablePTI": + case "maxTXPower": + case "nodeIdType": { + const file = await getFile( + ApplicationRFConfigFileID, + ); + return file?.[property.type]; + } + + case "isListening": + case "optionalFunctionality": + case "genericDeviceClass": + case "specificDeviceClass": { + const file = await getFile( + ApplicationTypeFileID, + ); + return file?.[property.type]; + } + + case "preferredRepeaters": { + const file = await getFile( + ProtocolPreferredRepeatersFileID, + ); + return file?.nodeIds; + } + + case "appRouteLock": { + const file = await getFile< + ProtocolAppRouteLockNodeMaskFile + >( + ProtocolAppRouteLockNodeMaskFileID, + ); + return file?.nodeIds; + } + case "routeSlaveSUC": { + const file = await getFile< + ProtocolRouteSlaveSUCNodeMaskFile + >( + ProtocolRouteSlaveSUCNodeMaskFileID, + ); + return file?.nodeIds; + } + case "sucPendingUpdate": { + const file = await getFile< + ProtocolSUCPendingUpdateNodeMaskFile + >( + ProtocolSUCPendingUpdateNodeMaskFileID, + ); + return file?.nodeIds; + } + case "pendingDiscovery": { + const file = await getFile< + ProtocolPendingDiscoveryNodeMaskFile + >( + ProtocolPendingDiscoveryNodeMaskFileID, + ); + return file?.nodeIds; + } + + case "nodeIds": { + const file = await getFile( + ProtocolNodeListFileID, + ); + return file?.nodeIds; + } + + case "lrNodeIds": { + const file = await getFile( + ProtocolLRNodeListFileID, + ); + return file?.nodeIds; + } + + case "virtualNodeIds": { + const file = await getFile( + ProtocolVirtualNodeMaskFileID, + ); + return file?.nodeIds; + } + + case "sucUpdateEntries": { + if (this._protocolInfo!.format < 5) { + const file = await getFile( + SUCUpdateEntriesFileIDV0, + ); + return file?.updateEntries; + } else { + // V5 has split the entries into multiple files + const updateEntries = []; + for ( + let index = 0; + index < SUC_MAX_UPDATES; + index += SUC_UPDATES_PER_FILE_V5 + ) { + // None of the files are required + const file = await this._getFile< + SUCUpdateEntriesFileV5 + >( + sucUpdateIndexToSUCUpdateEntriesFileIDV5(index), + ); + if (!file) break; + updateEntries.push(...file.updateEntries); + } + return updateEntries; + } + } + + case "learnedHomeId": + case "commandClasses": + case "watchdogStarted": + case "powerLevelNormal": + case "powerLevelLow": + case "powerMode": + case "powerModeExtintEnable": + case "powerModeWutTimeout": + // 500 series only, not supported on 700+ + return; + + default: + assertNever(property.type); + } + } + + private async getNodeNVMProperty( + property: NodeNVMProperty, + required: boolean, + ): Promise { + const getFile = (fileId: number) => { + if (required) { + return this._expectFile(fileId); + } else { + return this._getFile(fileId); + } + }; + + switch (property.type) { + case "info": { + if (this._protocolInfo!.format < 1) { + const file = await getFile( + nodeIdToNodeInfoFileIDV0( + property.nodeId, + ), + ); + return file?.nodeInfo; + } else { + const file = await getFile( + nodeIdToNodeInfoFileIDV1( + property.nodeId, + ), + ); + return file?.nodeInfos.find((info) => + info.nodeId === property.nodeId + ); + } + } + + case "routes": { + // The existence of routes is stored separately + const nodeMaskFile = await this.getFile< + ProtocolRouteCacheExistsNodeMaskFile + >(ProtocolRouteCacheExistsNodeMaskFileID); + + // If the node is not marked as having routes, don't try to read them + if (!nodeMaskFile) return; + if (!nodeMaskFile.nodeIdSet.has(property.nodeId)) return; + + let routeCache: RouteCache | undefined; + if (this._protocolInfo!.format < 1) { + const file = await getFile( + nodeIdToRouteCacheFileIDV0(property.nodeId), + ); + routeCache = file?.routeCache; + } else { + const file = await getFile( + nodeIdToRouteCacheFileIDV1(property.nodeId), + ); + routeCache = file?.routeCaches.find((route) => + route.nodeId === property.nodeId + ); + } + if (!routeCache) return; + return { + lwr: routeCache.lwr, + nlwr: routeCache.nlwr, + }; + } + + default: + assertNever(property.type); + } + } + + private async getLRNodeNVMProperty( + property: LRNodeNVMProperty, + required: boolean, + ): Promise { + const getFile = (fileId: number) => { + if (required) { + return this._expectFile(fileId); + } else { + return this._getFile(fileId); + } + }; + + switch (property.type) { + case "info": { + const file = await getFile( + nodeIdToLRNodeInfoFileIDV5(property.nodeId), + ); + return file?.nodeInfos.find((info) => + info.nodeId === property.nodeId + ); + } + + default: + assertNever(property.type); + } + } + + public async set( + property: T, + value: NVMPropertyToDataType, + ): Promise { + if (!this._initialized) await this.init(); + + if (property.domain === "controller") { + return this.setControllerNVMProperty(property, value); + } else if (property.domain === "lrnode") { + return this.setLRNodeNVMProperty(property, value); + } else { + return this.setNodeNVMProperty(property, value); + } + } + + private async setControllerNVMProperty( + property: ControllerNVMProperty, + value: any, + ): Promise { + const failFileMissing = (): never => { + throw new ZWaveError( + "Cannot set property in NVM for non-existing file", + ZWaveErrorCodes.NVM_ObjectNotFound, + ); + }; + + const expectFile = async ( + fileId: number, + ): Promise => { + const file = await this._getFile(fileId); + if (!file) throw failFileMissing(); + return file; + }; + + const changedFiles: NVMFile[] = []; + const deletedFiles: number[] = []; + + switch (property.type) { + case "protocolVersion": { + const file = await expectFile( + ProtocolVersionFileID, + ); + const [major, minor, patch] = (value as string).split(".") + .map((part) => parseInt(part, 10)); + file.major = major; + file.minor = minor; + file.patch = patch; + changedFiles.push(file); + break; + } + case "protocolFileFormat": { + const file = await expectFile( + ProtocolVersionFileID, + ); + file.format = value; + changedFiles.push(file); + break; + } + case "applicationVersion": { + const file700 = await this._getFile( + ApplicationVersionFileID, + ); + const file800 = await this._getFile( + ApplicationVersionFile800ID, + ); + const file = file700 ?? file800; + if (!file) { + throw new ZWaveError( + "ApplicationVersionFile not found!", + ZWaveErrorCodes.NVM_ObjectNotFound, + ); + } + + const [major, minor, patch] = (value as string).split(".") + .map((part) => parseInt(part, 10)); + file.major = major; + file.minor = minor; + file.patch = patch; + changedFiles.push(file); + break; + } + case "applicationFileFormat": { + const file = await expectFile( + ApplicationVersionFileID, + ); + file.format = value; + changedFiles.push(file); + break; + } + + case "applicationData": { + const file = new ApplicationDataFile({ + applicationData: value, + fileVersion: this.getFileVersion(ApplicationDataFileID), + }); + file.applicationData = value; + changedFiles.push(file); + break; + } + + case "applicationName": { + const file = new ApplicationNameFile({ + name: value, + fileVersion: this.getFileVersion(ApplicationNameFileID), + }); + changedFiles.push(file); + break; + } + + case "homeId": + case "nodeId": + case "lastNodeId": + case "staticControllerNodeId": + case "sucLastIndex": + case "controllerConfiguration": + case "sucAwarenessPushNeeded": + case "maxNodeId": + case "reservedId": + case "systemState": + case "lastNodeIdLR": + case "maxNodeIdLR": + case "reservedIdLR": + case "primaryLongRangeChannelId": + case "dcdcConfig": { + const file = await expectFile( + ControllerInfoFileID, + ); + file[property.type] = value; + changedFiles.push(file); + break; + } + + case "includedInsecurely": + case "includedSecurelyInsecureCCs": + case "includedSecurelySecureCCs": { + const file = await expectFile( + ApplicationCCsFileID, + ); + file[property.type] = value; + changedFiles.push(file); + break; + } + + case "rfRegion": + case "txPower": + case "measured0dBm": + case "enablePTI": + case "maxTXPower": + case "nodeIdType": { + const file = await expectFile( + ApplicationRFConfigFileID, + ); + (file as any)[property.type] = value; + changedFiles.push(file); + break; + } + + case "isListening": + case "optionalFunctionality": + case "genericDeviceClass": + case "specificDeviceClass": { + const file = await expectFile( + ApplicationTypeFileID, + ); + (file as any)[property.type] = value; + changedFiles.push(file); + break; + } + + case "nodeIds": { + const file = await this._getFile( + ProtocolNodeListFileID, + ) ?? new ProtocolNodeListFile({ + nodeIds: [], + fileVersion: this.getFileVersion(ProtocolNodeListFileID), + }); + file.nodeIds = value; + changedFiles.push(file); + break; + } + + case "lrNodeIds": { + const file = await this._getFile( + ProtocolLRNodeListFileID, + ) ?? new ProtocolLRNodeListFile({ + nodeIds: [], + fileVersion: this.getFileVersion(ProtocolLRNodeListFileID), + }); + file.nodeIds = value; + changedFiles.push(file); + break; + } + + case "virtualNodeIds": { + const file = await this._getFile( + ProtocolVirtualNodeMaskFileID, + ) ?? new ProtocolVirtualNodeMaskFile({ + nodeIds: [], + fileVersion: this.getFileVersion( + ProtocolVirtualNodeMaskFileID, + ), + }); + file.nodeIds = value; + changedFiles.push(file); + break; + } + + case "preferredRepeaters": { + const file = new ProtocolPreferredRepeatersFile({ + nodeIds: value, + fileVersion: this.getFileVersion( + ProtocolPreferredRepeatersFileID, + ), + }); + changedFiles.push(file); + break; + } + + case "appRouteLock": { + const file = new ProtocolAppRouteLockNodeMaskFile({ + nodeIds: value, + fileVersion: this.getFileVersion( + ProtocolAppRouteLockNodeMaskFileID, + ), + }); + changedFiles.push(file); + break; + } + case "routeSlaveSUC": { + const file = new ProtocolRouteSlaveSUCNodeMaskFile({ + nodeIds: value, + fileVersion: this.getFileVersion( + ProtocolRouteSlaveSUCNodeMaskFileID, + ), + }); + changedFiles.push(file); + break; + } + case "sucPendingUpdate": { + const file = new ProtocolSUCPendingUpdateNodeMaskFile({ + nodeIds: value, + fileVersion: this.getFileVersion( + ProtocolSUCPendingUpdateNodeMaskFileID, + ), + }); + changedFiles.push(file); + break; + } + case "pendingDiscovery": { + const file = new ProtocolPendingDiscoveryNodeMaskFile({ + nodeIds: value, + fileVersion: this.getFileVersion( + ProtocolPendingDiscoveryNodeMaskFileID, + ), + }); + changedFiles.push(file); + break; + } + + case "sucUpdateEntries": { + if (this._protocolInfo!.format < 5) { + const file = new SUCUpdateEntriesFileV0({ + updateEntries: value, + fileVersion: this.getFileVersion( + SUCUpdateEntriesFileIDV0, + ), + }); + changedFiles.push(file); + break; + } else { + // V5 has split the entries into multiple files + for ( + let index = 0; + index < SUC_MAX_UPDATES; + index += SUC_UPDATES_PER_FILE_V5 + ) { + const fileId = sucUpdateIndexToSUCUpdateEntriesFileIDV5( + index, + ); + const fileExists = await this.hasFile(fileId); + const fileVersion = this.getFileVersion(fileId); + const slice = value.slice( + index, + index + SUC_UPDATES_PER_FILE_V5, + ); + if (slice.length > 0) { + const file = new SUCUpdateEntriesFileV5({ + updateEntries: slice, + fileVersion, + }); + changedFiles.push(file); + } else if (fileExists) { + deletedFiles.push(fileId); + } + } + } + break; + } + + case "learnedHomeId": + case "commandClasses": + case "watchdogStarted": + case "powerLevelNormal": + case "powerLevelLow": + case "powerMode": + case "powerModeExtintEnable": + case "powerModeWutTimeout": + // 500 series only, not supported on 700+ + return; + + default: + assertNever(property.type); + } + + for (const file of changedFiles) { + const { key, data } = file.serialize(); + this._pendingChanges.set(key, data); + } + for (const file of deletedFiles) { + this._pendingChanges.set(file, null); + } + } + + private async setLRNodeNVMProperty( + property: LRNodeNVMProperty, + value: any, + ): Promise { + const changedFiles: NVMFile[] = []; + const deletedFiles: number[] = []; + + switch (property.type) { + case "info": { + const fileId = nodeIdToLRNodeInfoFileIDV5(property.nodeId); + let file = await this._getFile( + fileId, + ); + if (value) { + // Info added or modified + file ??= new LRNodeInfoFileV5({ + nodeInfos: [], + fileVersion: this.getFileVersion(fileId), + }); + const existingIndex = file.nodeInfos.findIndex( + (info) => info.nodeId === property.nodeId, + ); + if (existingIndex !== -1) { + file.nodeInfos[existingIndex] = value; + } else { + file.nodeInfos.push(value); + } + changedFiles.push(file); + } else if (file) { + // info deleted + const existingIndex = file.nodeInfos.findIndex( + (info) => info.nodeId === property.nodeId, + ); + if (existingIndex !== -1) { + file.nodeInfos.splice(existingIndex, 1); + if (file.nodeInfos.length === 0) { + deletedFiles.push(fileId); + } else { + changedFiles.push(file); + } + } + } + + break; + } + + default: + assertNever(property.type); + } + + for (const file of changedFiles) { + const { key, data } = file.serialize(); + this._pendingChanges.set(key, data); + } + for (const file of deletedFiles) { + this._pendingChanges.set(file, null); + } + } + + private async setNodeNVMProperty( + property: NodeNVMProperty, + value: any, + ): Promise { + const changedFiles: NVMFile[] = []; + const deletedFiles: number[] = []; + + switch (property.type) { + case "info": { + if (this._protocolInfo!.format < 1) { + // V0, single node info per file + const fileId = nodeIdToNodeInfoFileIDV0(property.nodeId); + let file = await this._getFile(fileId); + if (value) { + // Info added or modified + file ??= new NodeInfoFileV0({ + nodeInfo: undefined as any, + fileVersion: this.getFileVersion(fileId), + }); + file.nodeInfo = value; + changedFiles.push(file); + } else { + // info deleted + deletedFiles.push(fileId); + } + } else { + // V1+, multiple node infos per file + const fileId = nodeIdToNodeInfoFileIDV1(property.nodeId); + let file = await this._getFile( + fileId, + ); + if (value) { + // Info added or modified + file ??= new NodeInfoFileV1({ + nodeInfos: [], + fileVersion: this.getFileVersion(fileId), + }); + const existingIndex = file.nodeInfos.findIndex( + (info) => info.nodeId === property.nodeId, + ); + if (existingIndex !== -1) { + file.nodeInfos[existingIndex] = value; + } else { + file.nodeInfos.push(value); + } + changedFiles.push(file); + } else if (file) { + // info deleted + const existingIndex = file.nodeInfos.findIndex( + (info) => info.nodeId === property.nodeId, + ); + if (existingIndex !== -1) { + file.nodeInfos.splice(existingIndex, 1); + if (file.nodeInfos.length === 0) { + deletedFiles.push(fileId); + } else { + changedFiles.push(file); + } + } + } + } + + break; + } + + case "routes": { + if (this._protocolInfo!.format < 1) { + // V0, single route per file + const fileId = nodeIdToRouteCacheFileIDV0(property.nodeId); + let file = await this._getFile(fileId); + if (value) { + // Route added or modified + file ??= new RouteCacheFileV0({ + routeCache: undefined as any, + fileVersion: this.getFileVersion(fileId), + }); + file.routeCache = { + nodeId: property.nodeId, + lwr: value.lwr, + nlwr: value.nlwr, + }; + changedFiles.push(file); + } else if (file) { + // Route deleted + deletedFiles.push(fileId); + } + } else { + // V1+, multiple routes per file + const fileId = nodeIdToRouteCacheFileIDV1(property.nodeId); + const file = await this._getFile( + fileId, + ) ?? new RouteCacheFileV1({ + routeCaches: [], + fileVersion: this.getFileVersion(fileId), + }); + const existingIndex = file.routeCaches.findIndex( + (route) => route.nodeId === property.nodeId, + ); + const newRoute: RouteCache = { + nodeId: property.nodeId, + lwr: value.lwr, + nlwr: value.nlwr, + }; + if (existingIndex !== -1) { + file.routeCaches[existingIndex] = newRoute; + } else { + file.routeCaches.push(newRoute); + } + changedFiles.push(file); + } + + // The existence of routes is stored separately + const nodeMaskFile = await this._getFile< + ProtocolRouteCacheExistsNodeMaskFile + >(ProtocolRouteCacheExistsNodeMaskFileID) + ?? new ProtocolRouteCacheExistsNodeMaskFile({ + nodeIds: [], + fileVersion: this.getFileVersion( + ProtocolRouteCacheExistsNodeMaskFileID, + ), + }); + + if (!value && nodeMaskFile.nodeIdSet.has(property.nodeId)) { + nodeMaskFile.nodeIdSet.delete(property.nodeId); + changedFiles.push(nodeMaskFile); + } else if ( + value && !nodeMaskFile.nodeIdSet.has(property.nodeId) + ) { + nodeMaskFile.nodeIdSet.add(property.nodeId); + changedFiles.push(nodeMaskFile); + } + + break; + } + + default: + assertNever(property.type); + } + + for (const file of changedFiles) { + const { key, data } = file.serialize(); + this._pendingChanges.set(key, data); + } + for (const file of deletedFiles) { + this._pendingChanges.set(file, null); + } + } + + public async delete( + property: NVMProperty, + ): Promise { + if (property.domain === "controller") { + switch (property.type) { + case "protocolVersion": + case "protocolFileFormat": { + this._pendingChanges.set(ProtocolVersionFileID, null); + return; + } + + case "applicationVersion": + case "applicationFileFormat": { + if (await this.hasFile(ApplicationVersionFileID)) { + this._pendingChanges.set( + ApplicationVersionFileID, + null, + ); + } + if (await this.hasFile(ApplicationVersionFile800ID)) { + this._pendingChanges.set( + ApplicationVersionFile800ID, + null, + ); + } + return; + } + + case "applicationData": { + this._pendingChanges.set(ApplicationDataFileID, null); + return; + } + + case "applicationName": { + this._pendingChanges.set(ApplicationNameFileID, null); + return; + } + + case "homeId": + case "nodeId": + case "lastNodeId": + case "staticControllerNodeId": + case "sucLastIndex": + case "controllerConfiguration": + case "sucAwarenessPushNeeded": + case "maxNodeId": + case "reservedId": + case "systemState": + case "lastNodeIdLR": + case "maxNodeIdLR": + case "reservedIdLR": + case "primaryLongRangeChannelId": + case "dcdcConfig": { + this._pendingChanges.set(ControllerInfoFileID, null); + return; + } + + case "includedInsecurely": + case "includedSecurelyInsecureCCs": + case "includedSecurelySecureCCs": { + this._pendingChanges.set(ApplicationCCsFileID, null); + return; + } + + case "rfRegion": + case "txPower": + case "measured0dBm": + case "enablePTI": + case "maxTXPower": + case "nodeIdType": { + this._pendingChanges.set(ApplicationRFConfigFileID, null); + return; + } + + case "isListening": + case "optionalFunctionality": + case "genericDeviceClass": + case "specificDeviceClass": { + this._pendingChanges.set(ApplicationTypeFileID, null); + return; + } + + case "nodeIds": { + this._pendingChanges.set( + ProtocolNodeListFileID, + null, + ); + return; + } + + case "lrNodeIds": { + this._pendingChanges.set( + ProtocolLRNodeListFileID, + null, + ); + return; + } + + case "virtualNodeIds": { + this._pendingChanges.set( + ProtocolVirtualNodeMaskFileID, + null, + ); + return; + } + + case "preferredRepeaters": { + this._pendingChanges.set( + ProtocolPreferredRepeatersFileID, + null, + ); + return; + } + + case "appRouteLock": { + this._pendingChanges.set( + ProtocolAppRouteLockNodeMaskFileID, + null, + ); + return; + } + case "routeSlaveSUC": { + this._pendingChanges.set( + ProtocolRouteSlaveSUCNodeMaskFileID, + null, + ); + return; + } + case "sucPendingUpdate": { + this._pendingChanges.set( + ProtocolSUCPendingUpdateNodeMaskFileID, + null, + ); + return; + } + case "pendingDiscovery": { + this._pendingChanges.set( + ProtocolPendingDiscoveryNodeMaskFileID, + null, + ); + return; + } + + case "sucUpdateEntries": { + if (this._protocolInfo!.format < 5) { + this._pendingChanges.set( + SUCUpdateEntriesFileIDV0, + null, + ); + } else { + for ( + let id = SUCUpdateEntriesFileV5IDBase; + id <= SUCUpdateEntriesFileV5IDMax; + id++ + ) { + if (await this.hasFile(id)) { + this._pendingChanges.set(id, null); + } + } + } + return; + } + + case "learnedHomeId": + case "commandClasses": + case "watchdogStarted": + case "powerLevelNormal": + case "powerLevelLow": + case "powerMode": + case "powerModeExtintEnable": + case "powerModeWutTimeout": + // 500 series only, not supported on 700+ + return; + + default: + assertNever(property); + } + } else if ( + property.domain === "lrnode" + ) { + // Node properties are handled by set(..., undefined) because + // it requires both modifying and deleting files + return this.setLRNodeNVMProperty(property, undefined); + } else if ( + property.domain === "node" + ) { + // Node properties are handled by set(..., undefined) because + // it requires both modifying and deleting files + return this.setNodeNVMProperty(property, undefined); + } + } + + public hasPendingChanges(): boolean { + return this._pendingChanges.size > 0; + } + + public async commit(): Promise { + await this._nvm.setMany([...this._pendingChanges]); + } +} diff --git a/packages/nvmedit/src/nvm3/consts.ts b/packages/nvmedit/src/lib/nvm3/consts.ts similarity index 100% rename from packages/nvmedit/src/nvm3/consts.ts rename to packages/nvmedit/src/lib/nvm3/consts.ts diff --git a/packages/nvmedit/src/files/ApplicationCCsFile.ts b/packages/nvmedit/src/lib/nvm3/files/ApplicationCCsFile.ts similarity index 91% rename from packages/nvmedit/src/files/ApplicationCCsFile.ts rename to packages/nvmedit/src/lib/nvm3/files/ApplicationCCsFile.ts index e6b8b9ac3e98..fc8cb797c5c0 100644 --- a/packages/nvmedit/src/files/ApplicationCCsFile.ts +++ b/packages/nvmedit/src/lib/nvm3/files/ApplicationCCsFile.ts @@ -1,12 +1,12 @@ import { CommandClasses } from "@zwave-js/core/safe"; -import type { NVM3Object } from "../nvm3/object"; +import type { NVM3Object } from "../object"; import { NVMFile, type NVMFileCreationOptions, type NVMFileDeserializationOptions, - getNVMFileIDStatic, gotDeserializationOptions, nvmFileID, + nvmSection, } from "./NVMFile"; export interface ApplicationCCsFileOptions extends NVMFileCreationOptions { @@ -17,7 +17,10 @@ export interface ApplicationCCsFileOptions extends NVMFileCreationOptions { const MAX_CCs = 35; -@nvmFileID(103) +export const ApplicationCCsFileID = 103; + +@nvmFileID(ApplicationCCsFileID) +@nvmSection("application") export class ApplicationCCsFile extends NVMFile { public constructor( options: NVMFileDeserializationOptions | ApplicationCCsFileOptions, @@ -52,7 +55,7 @@ export class ApplicationCCsFile extends NVMFile { public includedSecurelyInsecureCCs: CommandClasses[]; public includedSecurelySecureCCs: CommandClasses[]; - public serialize(): NVM3Object { + public serialize(): NVM3Object & { data: Buffer } { this.payload = Buffer.alloc((1 + MAX_CCs) * 3); let offset = 0; for ( @@ -85,4 +88,3 @@ export class ApplicationCCsFile extends NVMFile { }; } } -export const ApplicationCCsFileID = getNVMFileIDStatic(ApplicationCCsFile); diff --git a/packages/nvmedit/src/files/ApplicationDataFile.ts b/packages/nvmedit/src/lib/nvm3/files/ApplicationDataFile.ts similarity index 65% rename from packages/nvmedit/src/files/ApplicationDataFile.ts rename to packages/nvmedit/src/lib/nvm3/files/ApplicationDataFile.ts index f1e5a2c52f2a..031d0c240779 100644 --- a/packages/nvmedit/src/files/ApplicationDataFile.ts +++ b/packages/nvmedit/src/lib/nvm3/files/ApplicationDataFile.ts @@ -2,32 +2,34 @@ import { NVMFile, type NVMFileCreationOptions, type NVMFileDeserializationOptions, - getNVMFileIDStatic, gotDeserializationOptions, nvmFileID, + nvmSection, } from "./NVMFile"; export interface ApplicationDataFileOptions extends NVMFileCreationOptions { - data: Buffer; + applicationData: Buffer; } -@nvmFileID(200) +export const ApplicationDataFileID = 200; + +@nvmFileID(ApplicationDataFileID) +@nvmSection("application") export class ApplicationDataFile extends NVMFile { public constructor( options: NVMFileDeserializationOptions | ApplicationDataFileOptions, ) { super(options); if (!gotDeserializationOptions(options)) { - this.payload = options.data; + this.payload = options.applicationData; } } // Just binary data - public get data(): Buffer { + public get applicationData(): Buffer { return this.payload; } - public set data(value: Buffer) { + public set applicationData(value: Buffer) { this.payload = value; } } -export const ApplicationDataFileID = getNVMFileIDStatic(ApplicationDataFile); diff --git a/packages/nvmedit/src/files/ApplicationNameFile.ts b/packages/nvmedit/src/lib/nvm3/files/ApplicationNameFile.ts similarity index 80% rename from packages/nvmedit/src/files/ApplicationNameFile.ts rename to packages/nvmedit/src/lib/nvm3/files/ApplicationNameFile.ts index a40bcf0f855a..db5ba967aa8d 100644 --- a/packages/nvmedit/src/files/ApplicationNameFile.ts +++ b/packages/nvmedit/src/lib/nvm3/files/ApplicationNameFile.ts @@ -1,19 +1,22 @@ import { cpp2js } from "@zwave-js/shared"; -import { type NVMObject } from ".."; +import { type NVM3Object } from "../object"; import { NVMFile, type NVMFileCreationOptions, type NVMFileDeserializationOptions, - getNVMFileIDStatic, gotDeserializationOptions, nvmFileID, + nvmSection, } from "./NVMFile"; export interface ApplicationNameFileOptions extends NVMFileCreationOptions { name: string; } -@nvmFileID(0x4100c) +export const ApplicationNameFileID = 0x4100c; + +@nvmFileID(ApplicationNameFileID) +@nvmSection("application") export class ApplicationNameFile extends NVMFile { public constructor( options: NVMFileDeserializationOptions | ApplicationNameFileOptions, @@ -28,7 +31,7 @@ export class ApplicationNameFile extends NVMFile { public name: string; - public serialize(): NVMObject { + public serialize(): NVM3Object & { data: Buffer } { // Return a zero-terminated string with a fixed length of 30 bytes const nameAsString = Buffer.from(this.name, "utf8"); this.payload = Buffer.alloc(30, 0); @@ -36,4 +39,3 @@ export class ApplicationNameFile extends NVMFile { return super.serialize(); } } -export const ApplicationNameFileID = getNVMFileIDStatic(ApplicationNameFile); diff --git a/packages/nvmedit/src/files/ApplicationRFConfigFile.ts b/packages/nvmedit/src/lib/nvm3/files/ApplicationRFConfigFile.ts similarity index 94% rename from packages/nvmedit/src/files/ApplicationRFConfigFile.ts rename to packages/nvmedit/src/lib/nvm3/files/ApplicationRFConfigFile.ts index 5c824be842b4..9a096d3639cb 100644 --- a/packages/nvmedit/src/files/ApplicationRFConfigFile.ts +++ b/packages/nvmedit/src/lib/nvm3/files/ApplicationRFConfigFile.ts @@ -6,14 +6,14 @@ import { } from "@zwave-js/core/safe"; import { type AllOrNone, getEnumMemberName } from "@zwave-js/shared/safe"; import semver from "semver"; -import type { NVM3Object } from "../nvm3/object"; +import type { NVM3Object } from "../object"; import { NVMFile, type NVMFileCreationOptions, type NVMFileDeserializationOptions, - getNVMFileIDStatic, gotDeserializationOptions, nvmFileID, + nvmSection, } from "./NVMFile"; export type ApplicationRFConfigFileOptions = @@ -31,7 +31,10 @@ export type ApplicationRFConfigFileOptions = nodeIdType?: number; }; -@nvmFileID(104) +export const ApplicationRFConfigFileID = 104; + +@nvmFileID(ApplicationRFConfigFileID) +@nvmSection("application") export class ApplicationRFConfigFile extends NVMFile { public constructor( options: NVMFileDeserializationOptions | ApplicationRFConfigFileOptions, @@ -82,7 +85,7 @@ export class ApplicationRFConfigFile extends NVMFile { public maxTXPower?: number; public nodeIdType?: NodeIDType; - public serialize(): NVM3Object { + public serialize(): NVM3Object & { data: Buffer } { if (semver.lt(this.fileVersion, "7.18.1")) { this.payload = Buffer.alloc( semver.gte(this.fileVersion, "7.15.3") ? 6 : 3, @@ -137,6 +140,3 @@ export class ApplicationRFConfigFile extends NVMFile { return ret; } } -export const ApplicationRFConfigFileID = getNVMFileIDStatic( - ApplicationRFConfigFile, -); diff --git a/packages/nvmedit/src/files/ApplicationTypeFile.ts b/packages/nvmedit/src/lib/nvm3/files/ApplicationTypeFile.ts similarity index 88% rename from packages/nvmedit/src/files/ApplicationTypeFile.ts rename to packages/nvmedit/src/lib/nvm3/files/ApplicationTypeFile.ts index c67da1e5c0af..112a79cedcb6 100644 --- a/packages/nvmedit/src/files/ApplicationTypeFile.ts +++ b/packages/nvmedit/src/lib/nvm3/files/ApplicationTypeFile.ts @@ -1,11 +1,11 @@ -import type { NVM3Object } from "../nvm3/object"; +import type { NVM3Object } from "../object"; import { NVMFile, type NVMFileCreationOptions, type NVMFileDeserializationOptions, - getNVMFileIDStatic, gotDeserializationOptions, nvmFileID, + nvmSection, } from "./NVMFile"; export interface ApplicationTypeFileOptions extends NVMFileCreationOptions { @@ -15,7 +15,10 @@ export interface ApplicationTypeFileOptions extends NVMFileCreationOptions { specificDeviceClass: number; } -@nvmFileID(102) +export const ApplicationTypeFileID = 102; + +@nvmFileID(ApplicationTypeFileID) +@nvmSection("application") export class ApplicationTypeFile extends NVMFile { public constructor( options: NVMFileDeserializationOptions | ApplicationTypeFileOptions, @@ -39,7 +42,7 @@ export class ApplicationTypeFile extends NVMFile { public genericDeviceClass: number; public specificDeviceClass: number; - public serialize(): NVM3Object { + public serialize(): NVM3Object & { data: Buffer } { this.payload = Buffer.from([ (this.isListening ? 0b1 : 0) | (this.optionalFunctionality ? 0b10 : 0), @@ -60,4 +63,3 @@ export class ApplicationTypeFile extends NVMFile { }; } } -export const ApplicationTypeFileID = getNVMFileIDStatic(ApplicationTypeFile); diff --git a/packages/nvmedit/src/files/ControllerInfoFile.ts b/packages/nvmedit/src/lib/nvm3/files/ControllerInfoFile.ts similarity index 96% rename from packages/nvmedit/src/files/ControllerInfoFile.ts rename to packages/nvmedit/src/lib/nvm3/files/ControllerInfoFile.ts index e8e92e935948..c1a4bfd0b102 100644 --- a/packages/nvmedit/src/files/ControllerInfoFile.ts +++ b/packages/nvmedit/src/lib/nvm3/files/ControllerInfoFile.ts @@ -4,14 +4,14 @@ import { stripUndefined, } from "@zwave-js/core/safe"; import { buffer2hex } from "@zwave-js/shared"; -import type { NVM3Object } from "../nvm3/object"; +import type { NVM3Object } from "../object"; import { NVMFile, type NVMFileCreationOptions, type NVMFileDeserializationOptions, - getNVMFileIDStatic, gotDeserializationOptions, nvmFileID, + nvmSection, } from "./NVMFile"; export type ControllerInfoFileOptions = @@ -40,7 +40,10 @@ export type ControllerInfoFileOptions = } ); -@nvmFileID(0x50004) +export const ControllerInfoFileID = 0x50004; + +@nvmFileID(ControllerInfoFileID) +@nvmSection("protocol") export class ControllerInfoFile extends NVMFile { public constructor( options: NVMFileDeserializationOptions | ControllerInfoFileOptions, @@ -117,7 +120,7 @@ export class ControllerInfoFile extends NVMFile { public primaryLongRangeChannelId?: number; public dcdcConfig?: number; - public serialize(): NVM3Object { + public serialize(): NVM3Object & { data: Buffer } { if (this.lastNodeIdLR != undefined) { this.payload = Buffer.allocUnsafe(22); this.homeId.copy(this.payload, 0); @@ -176,4 +179,3 @@ export class ControllerInfoFile extends NVMFile { }); } } -export const ControllerInfoFileID = getNVMFileIDStatic(ControllerInfoFile); diff --git a/packages/nvmedit/src/files/NVMFile.ts b/packages/nvmedit/src/lib/nvm3/files/NVMFile.ts similarity index 62% rename from packages/nvmedit/src/files/NVMFile.ts rename to packages/nvmedit/src/lib/nvm3/files/NVMFile.ts index 2db10d1a3e29..4717bf6792b4 100644 --- a/packages/nvmedit/src/files/NVMFile.ts +++ b/packages/nvmedit/src/lib/nvm3/files/NVMFile.ts @@ -1,24 +1,22 @@ +import { createSimpleReflectionDecorator } from "@zwave-js/core"; import { ZWaveError, ZWaveErrorCodes } from "@zwave-js/core/safe"; -import type { TypedClassDecorator } from "@zwave-js/shared"; -import { - FragmentType, - NVM3_MAX_OBJ_SIZE_SMALL, - ObjectType, -} from "../nvm3/consts"; -import type { NVM3Object } from "../nvm3/object"; +import { type TypedClassDecorator, num2hex } from "@zwave-js/shared"; +import { FragmentType, NVM3_MAX_OBJ_SIZE_SMALL, ObjectType } from "../consts"; +import type { NVM3Object } from "../object"; export interface NVMFileBaseOptions { fileId?: number; fileVersion: string; } export interface NVMFileDeserializationOptions extends NVMFileBaseOptions { - object: NVM3Object; + fileId: number; + data: Buffer; } export function gotDeserializationOptions( options: NVMFileOptions, ): options is NVMFileDeserializationOptions { - return "object" in options; + return "data" in options && Buffer.isBuffer(options.data); } export interface NVMFileCreationOptions extends NVMFileBaseOptions {} @@ -32,61 +30,54 @@ export class NVMFile { this.fileVersion = options.fileVersion; if (gotDeserializationOptions(options)) { - this.fileId = options.object.key; - this.object = options.object; + this.fileId = options.fileId; + this.payload = options.data; } else { const fileId = getNVMFileID(this); if (typeof fileId === "number") { this.fileId = fileId; } - - this.object = { - key: this.fileId, - fragmentType: FragmentType.None, - type: ObjectType.DataLarge, - }; + this.payload = Buffer.allocUnsafe(0); } - - this.payload = this.object.data ?? Buffer.allocUnsafe(0); } - protected object: NVM3Object; protected payload: Buffer; public fileId: number = 0; public fileVersion: string; /** - * Creates an instance of the CC that is serialized in the given buffer + * Creates an instance of the NVM file that is contained in the given NVM object */ - public static from(object: NVM3Object, fileVersion: string): NVMFile { - // Fall back to unspecified command class in case we receive one that is not implemented - const Constructor = getNVMFileConstructor(object.key)!; + public static from( + fileId: number, + data: Buffer, + fileVersion: string, + ): NVMFile { + const Constructor = getNVMFileConstructor(fileId)!; return new Constructor({ - fileId: object.key, + fileId, fileVersion, - object, + data, }); } /** * Serializes this NVMFile into an NVM Object */ - public serialize(): NVM3Object { + public serialize(): NVM3Object & { data: Buffer } { if (!this.fileId) { throw new Error("The NVM file ID must be set before serializing"); } - this.object.key = this.fileId; - this.object.data = this.payload; - // We only support large and small data objects for now - if (this.payload.length <= NVM3_MAX_OBJ_SIZE_SMALL) { - this.object.type = ObjectType.DataSmall; - } else { - this.object.type = ObjectType.DataLarge; - } - // By default output unfragmented objects, they will be split later - this.object.fragmentType = FragmentType.None; - - return this.object; + return { + key: this.fileId, + data: this.payload, + // We only support large and small data objects for now + type: this.payload.length <= NVM3_MAX_OBJ_SIZE_SMALL + ? ObjectType.DataSmall + : ObjectType.DataLarge, + // By default output unfragmented objects, they will be split later + fragmentType: FragmentType.None, + }; } public toJSON(): Record { @@ -183,3 +174,38 @@ export function getNVMFileIDStatic>( } return ret; } + +export type NVMSection = "application" | "protocol"; + +const nvmSectionDecorator = createSimpleReflectionDecorator< + NVMFile, + [section: NVMSection] +>({ + name: "nvmSection", +}); + +/** Defines in which section an NVM file is stored */ +export const nvmSection = nvmSectionDecorator.decorator; + +/** Returns in which section an NVM file is stored (using an instance of the file) */ +export const getNVMSection = nvmSectionDecorator.lookupValue; + +/** Returns in which section an NVM file is stored (using the constructor of the file) */ +export const getNVMSectionStatic = nvmSectionDecorator.lookupValueStatic; + +/** Returns in which NVM section the file with the given ID resides in */ +export function getNVMSectionByFileID(fileId: number): NVMSection { + const File = getNVMFileConstructor(fileId); + let ret: NVMSection | undefined; + if (File) { + ret = getNVMSectionStatic(File); + } + if (ret) return ret; + + throw new ZWaveError( + `NVM section for file with ID ${ + num2hex(fileId) + } could not be determined`, + ZWaveErrorCodes.Argument_Invalid, + ); +} diff --git a/packages/nvmedit/src/files/NodeInfoFiles.ts b/packages/nvmedit/src/lib/nvm3/files/NodeInfoFiles.ts similarity index 97% rename from packages/nvmedit/src/files/NodeInfoFiles.ts rename to packages/nvmedit/src/lib/nvm3/files/NodeInfoFiles.ts index 7d79b8da5f94..a49d39698eb5 100644 --- a/packages/nvmedit/src/files/NodeInfoFiles.ts +++ b/packages/nvmedit/src/lib/nvm3/files/NodeInfoFiles.ts @@ -12,13 +12,14 @@ import { parseNodeProtocolInfo, } from "@zwave-js/core/safe"; import { pick } from "@zwave-js/shared/safe"; -import type { NVM3Object } from "../nvm3/object"; +import type { NVM3Object } from "../object"; import { NVMFile, type NVMFileCreationOptions, type NVMFileDeserializationOptions, gotDeserializationOptions, nvmFileID, + nvmSection, } from "./NVMFile"; export const NODEINFOS_PER_FILE_V1 = 4; @@ -195,6 +196,7 @@ export function nodeIdToNodeInfoFileIDV0(nodeId: number): number { @nvmFileID( (id) => id >= NodeInfoFileV0IDBase && id < NodeInfoFileV0IDBase + MAX_NODES, ) +@nvmSection("protocol") export class NodeInfoFileV0 extends NVMFile { public constructor( options: NVMFileDeserializationOptions | NodeInfoFileV0Options, @@ -213,7 +215,7 @@ export class NodeInfoFileV0 extends NVMFile { public nodeInfo: NodeInfo; - public serialize(): NVM3Object { + public serialize(): NVM3Object & { data: Buffer } { this.fileId = nodeIdToNodeInfoFileIDV0(this.nodeInfo.nodeId); this.payload = encodeNodeInfo(this.nodeInfo); return super.serialize(); @@ -244,6 +246,7 @@ export function nodeIdToNodeInfoFileIDV1(nodeId: number): number { id >= NodeInfoFileV1IDBase && id < NodeInfoFileV1IDBase + MAX_NODES / NODEINFOS_PER_FILE_V1, ) +@nvmSection("protocol") export class NodeInfoFileV1 extends NVMFile { public constructor( options: NVMFileDeserializationOptions | NodeInfoFileV1Options, @@ -277,7 +280,7 @@ export class NodeInfoFileV1 extends NVMFile { public nodeInfos: NodeInfo[]; - public serialize(): NVM3Object { + public serialize(): NVM3Object & { data: Buffer } { // The infos must be sorted by node ID this.nodeInfos.sort((a, b) => a.nodeId - b.nodeId); const minNodeId = this.nodeInfos[0].nodeId; @@ -329,6 +332,7 @@ export function nodeIdToLRNodeInfoFileIDV5(nodeId: number): number { && id < LRNodeInfoFileV5IDBase + MAX_NODES_LR / LR_NODEINFOS_PER_FILE_V5, ) +@nvmSection("protocol") export class LRNodeInfoFileV5 extends NVMFile { public constructor( options: NVMFileDeserializationOptions | LRNodeInfoFileV5Options, @@ -362,7 +366,7 @@ export class LRNodeInfoFileV5 extends NVMFile { public nodeInfos: LRNodeInfo[]; - public serialize(): NVM3Object { + public serialize(): NVM3Object & { data: Buffer } { // The infos must be sorted by node ID this.nodeInfos.sort((a, b) => a.nodeId - b.nodeId); const minNodeId = this.nodeInfos[0].nodeId; diff --git a/packages/nvmedit/src/lib/nvm3/files/ProtocolNodeMaskFiles.ts b/packages/nvmedit/src/lib/nvm3/files/ProtocolNodeMaskFiles.ts new file mode 100644 index 000000000000..a9e0b2eee6d0 --- /dev/null +++ b/packages/nvmedit/src/lib/nvm3/files/ProtocolNodeMaskFiles.ts @@ -0,0 +1,141 @@ +import { NODE_ID_MAX, encodeBitMask, parseBitMask } from "@zwave-js/core/safe"; +import type { NVM3Object } from "../object"; +import { + NVMFile, + type NVMFileCreationOptions, + type NVMFileDeserializationOptions, + gotDeserializationOptions, + nvmFileID, + nvmSection, +} from "./NVMFile"; + +export interface ProtocolNodeMaskFileOptions extends NVMFileCreationOptions { + nodeIds: number[]; +} + +export class ProtocolNodeMaskFile extends NVMFile { + public constructor( + options: NVMFileDeserializationOptions | ProtocolNodeMaskFileOptions, + ) { + super(options); + if (gotDeserializationOptions(options)) { + this.nodeIdSet = new Set(parseBitMask(this.payload)); + } else { + this.nodeIdSet = new Set(options.nodeIds); + } + } + + public nodeIdSet: Set; + public get nodeIds(): number[] { + return [...this.nodeIdSet]; + } + public set nodeIds(value: number[]) { + this.nodeIdSet = new Set(value); + } + + public serialize(): NVM3Object & { data: Buffer } { + this.payload = encodeBitMask([...this.nodeIdSet], NODE_ID_MAX); + return super.serialize(); + } + + // eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types + public toJSON() { + return { + ...super.toJSON(), + "node IDs": [...this.nodeIdSet].join(", "), + }; + } +} + +export const ProtocolPreferredRepeatersFileID = 0x50002; + +@nvmFileID(ProtocolPreferredRepeatersFileID) +@nvmSection("protocol") +export class ProtocolPreferredRepeatersFile extends ProtocolNodeMaskFile {} + +export const ProtocolNodeListFileID = 0x50005; + +@nvmFileID(ProtocolNodeListFileID) +@nvmSection("protocol") +export class ProtocolNodeListFile extends ProtocolNodeMaskFile {} + +export const ProtocolAppRouteLockNodeMaskFileID = 0x50006; + +@nvmFileID(ProtocolAppRouteLockNodeMaskFileID) +@nvmSection("protocol") +export class ProtocolAppRouteLockNodeMaskFile extends ProtocolNodeMaskFile {} + +export const ProtocolRouteSlaveSUCNodeMaskFileID = 0x50007; + +@nvmFileID(ProtocolRouteSlaveSUCNodeMaskFileID) +@nvmSection("protocol") +export class ProtocolRouteSlaveSUCNodeMaskFile extends ProtocolNodeMaskFile {} + +export const ProtocolSUCPendingUpdateNodeMaskFileID = 0x50008; + +@nvmFileID(ProtocolSUCPendingUpdateNodeMaskFileID) +@nvmSection("protocol") +export class ProtocolSUCPendingUpdateNodeMaskFile + extends ProtocolNodeMaskFile +{} + +export const ProtocolVirtualNodeMaskFileID = 0x50009; + +@nvmFileID(ProtocolVirtualNodeMaskFileID) +@nvmSection("protocol") +export class ProtocolVirtualNodeMaskFile extends ProtocolNodeMaskFile {} + +export const ProtocolPendingDiscoveryNodeMaskFileID = 0x5000a; + +@nvmFileID(ProtocolPendingDiscoveryNodeMaskFileID) +@nvmSection("protocol") +export class ProtocolPendingDiscoveryNodeMaskFile + extends ProtocolNodeMaskFile +{} + +export const ProtocolRouteCacheExistsNodeMaskFileID = 0x5000b; + +@nvmFileID(ProtocolRouteCacheExistsNodeMaskFileID) +@nvmSection("protocol") +export class ProtocolRouteCacheExistsNodeMaskFile + extends ProtocolNodeMaskFile +{} + +export const ProtocolLRNodeListFileID = 0x5000c; + +@nvmFileID(ProtocolLRNodeListFileID) +@nvmSection("protocol") +export class ProtocolLRNodeListFile extends NVMFile { + public constructor( + options: NVMFileDeserializationOptions | ProtocolNodeMaskFileOptions, + ) { + super(options); + if (gotDeserializationOptions(options)) { + this.nodeIdSet = new Set(parseBitMask(this.payload, 256)); + } else { + this.nodeIdSet = new Set(options.nodeIds); + } + } + + public nodeIdSet: Set; + public get nodeIds(): number[] { + return [...this.nodeIdSet]; + } + public set nodeIds(value: number[]) { + this.nodeIdSet = new Set(value); + } + + public serialize(): NVM3Object & { data: Buffer } { + // There are only 128 bytes for the bitmask, so the LR node IDs only go up to 1279 + this.payload = encodeBitMask([...this.nodeIdSet], 1279, 256); + return super.serialize(); + } + + // eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types + public toJSON() { + return { + ...super.toJSON(), + "node IDs": [...this.nodeIdSet].join(", "), + }; + } +} diff --git a/packages/nvmedit/src/files/RouteCacheFiles.ts b/packages/nvmedit/src/lib/nvm3/files/RouteCacheFiles.ts similarity index 67% rename from packages/nvmedit/src/files/RouteCacheFiles.ts rename to packages/nvmedit/src/lib/nvm3/files/RouteCacheFiles.ts index 116c7b367c3a..cb3963258365 100644 --- a/packages/nvmedit/src/files/RouteCacheFiles.ts +++ b/packages/nvmedit/src/lib/nvm3/files/RouteCacheFiles.ts @@ -1,85 +1,23 @@ +import { MAX_NODES, MAX_REPEATERS } from "@zwave-js/core/safe"; import { - type FLiRS, - MAX_NODES, - MAX_REPEATERS, - RouteProtocolDataRate, - protocolDataRateMask, -} from "@zwave-js/core/safe"; -import type { NVM3Object } from "../nvm3/object"; + EMPTY_ROUTECACHE_FILL, + ROUTECACHE_SIZE, + type RouteCache, + emptyRouteCache, + encodeRoute, + parseRoute, +} from "../../common/routeCache"; +import type { NVM3Object } from "../object"; import { NVMFile, type NVMFileCreationOptions, type NVMFileDeserializationOptions, gotDeserializationOptions, nvmFileID, + nvmSection, } from "./NVMFile"; export const ROUTECACHES_PER_FILE_V1 = 8; -const ROUTE_SIZE = MAX_REPEATERS + 1; -const ROUTECACHE_SIZE = 2 * ROUTE_SIZE; -const EMPTY_ROUTECACHE_FILL = 0xff; -const emptyRouteCache = Buffer.alloc(ROUTECACHE_SIZE, EMPTY_ROUTECACHE_FILL); - -enum Beaming { - "1000ms" = 0x40, - "250ms" = 0x20, -} - -export interface Route { - beaming: FLiRS; - protocolRate: RouteProtocolDataRate; - repeaterNodeIDs?: number[]; -} - -export interface RouteCache { - nodeId: number; - lwr: Route; - nlwr: Route; -} - -export function parseRoute(buffer: Buffer, offset: number): Route { - const routeConf = buffer[offset + MAX_REPEATERS]; - const ret: Route = { - beaming: (Beaming[routeConf & 0x60] ?? false) as FLiRS, - protocolRate: routeConf & protocolDataRateMask, - repeaterNodeIDs: [ - ...buffer.subarray(offset, offset + MAX_REPEATERS), - ].filter((id) => id !== 0), - }; - if (ret.repeaterNodeIDs![0] === 0xfe) delete ret.repeaterNodeIDs; - return ret; -} - -export function encodeRoute(route: Route | undefined): Buffer { - const ret = Buffer.alloc(ROUTE_SIZE, 0); - if (route) { - if (route.repeaterNodeIDs) { - for ( - let i = 0; - i < MAX_REPEATERS && i < route.repeaterNodeIDs.length; - i++ - ) { - ret[i] = route.repeaterNodeIDs[i]; - } - } else { - ret[0] = 0xfe; - } - let routeConf = 0; - if (route.beaming) routeConf |= Beaming[route.beaming] ?? 0; - routeConf |= route.protocolRate & protocolDataRateMask; - ret[ROUTE_SIZE - 1] = routeConf; - } - - return ret; -} - -export function getEmptyRoute(): Route { - return { - beaming: false, - protocolRate: RouteProtocolDataRate.ZWave_40k, - repeaterNodeIDs: undefined, - }; -} export interface RouteCacheFileV0Options extends NVMFileCreationOptions { routeCache: RouteCache; @@ -94,6 +32,7 @@ export function nodeIdToRouteCacheFileIDV0(nodeId: number): number { (id) => id >= RouteCacheFileV0IDBase && id < RouteCacheFileV0IDBase + MAX_NODES, ) +@nvmSection("protocol") export class RouteCacheFileV0 extends NVMFile { public constructor( options: NVMFileDeserializationOptions | RouteCacheFileV0Options, @@ -111,7 +50,7 @@ export class RouteCacheFileV0 extends NVMFile { public routeCache: RouteCache; - public serialize(): NVM3Object { + public serialize(): NVM3Object & { data: Buffer } { this.fileId = nodeIdToRouteCacheFileIDV0(this.routeCache.nodeId); this.payload = Buffer.concat([ encodeRoute(this.routeCache.lwr), @@ -146,6 +85,7 @@ export function nodeIdToRouteCacheFileIDV1(nodeId: number): number { id >= RouteCacheFileV1IDBase && id < RouteCacheFileV1IDBase + MAX_NODES / ROUTECACHES_PER_FILE_V1, ) +@nvmSection("protocol") export class RouteCacheFileV1 extends NVMFile { public constructor( options: NVMFileDeserializationOptions | RouteCacheFileV1Options, @@ -180,7 +120,7 @@ export class RouteCacheFileV1 extends NVMFile { public routeCaches: RouteCache[]; - public serialize(): NVM3Object { + public serialize(): NVM3Object & { data: Buffer } { // The route infos must be sorted by node ID this.routeCaches.sort((a, b) => a.nodeId - b.nodeId); const minNodeId = this.routeCaches[0].nodeId; diff --git a/packages/nvmedit/src/files/SUCUpdateEntriesFile.ts b/packages/nvmedit/src/lib/nvm3/files/SUCUpdateEntriesFile.ts similarity index 61% rename from packages/nvmedit/src/files/SUCUpdateEntriesFile.ts rename to packages/nvmedit/src/lib/nvm3/files/SUCUpdateEntriesFile.ts index 49ef6c6d3f20..07a44d7c86b6 100644 --- a/packages/nvmedit/src/files/SUCUpdateEntriesFile.ts +++ b/packages/nvmedit/src/lib/nvm3/files/SUCUpdateEntriesFile.ts @@ -1,23 +1,17 @@ +import { SUC_MAX_UPDATES, SUC_UPDATE_ENTRY_SIZE } from "../../../consts"; import { - type CommandClasses, - ZWaveError, - ZWaveErrorCodes, - encodeCCList, - parseCCList, -} from "@zwave-js/core/safe"; -import { - SUC_MAX_UPDATES, - SUC_UPDATE_ENTRY_SIZE, - SUC_UPDATE_NODEPARM_MAX, -} from "../consts"; -import type { NVM3Object } from "../nvm3/object"; + type SUCUpdateEntry, + encodeSUCUpdateEntry, + parseSUCUpdateEntry, +} from "../../common/sucUpdateEntry"; +import type { NVM3Object } from "../object"; import { NVMFile, type NVMFileCreationOptions, type NVMFileDeserializationOptions, - getNVMFileIDStatic, gotDeserializationOptions, nvmFileID, + nvmSection, } from "./NVMFile"; export const SUC_UPDATES_PER_FILE_V5 = 8; @@ -26,54 +20,10 @@ export interface SUCUpdateEntriesFileOptions extends NVMFileCreationOptions { updateEntries: SUCUpdateEntry[]; } -export interface SUCUpdateEntry { - nodeId: number; - changeType: number; // TODO: This is some kind of enum - supportedCCs: CommandClasses[]; - controlledCCs: CommandClasses[]; -} - -export function parseSUCUpdateEntry( - buffer: Buffer, - offset: number, -): SUCUpdateEntry | undefined { - const slice = buffer.subarray(offset, offset + SUC_UPDATE_ENTRY_SIZE); - if (slice.every((b) => b === 0x00 || b === 0xff)) { - return; - } - const nodeId = slice[0]; - const changeType = slice[1]; - const { supportedCCs, controlledCCs } = parseCCList( - slice.subarray(2, SUC_UPDATE_ENTRY_SIZE), - ); - return { - nodeId, - changeType, - supportedCCs: supportedCCs.filter((cc) => cc > 0), - controlledCCs: controlledCCs.filter((cc) => cc > 0), - }; -} +export const SUCUpdateEntriesFileIDV0 = 0x50003; -export function encodeSUCUpdateEntry( - entry: SUCUpdateEntry | undefined, -): Buffer { - const ret = Buffer.alloc(SUC_UPDATE_ENTRY_SIZE, 0); - if (entry) { - ret[0] = entry.nodeId; - ret[1] = entry.changeType; - const ccList = encodeCCList(entry.supportedCCs, entry.controlledCCs); - if (ccList.length > SUC_UPDATE_NODEPARM_MAX) { - throw new ZWaveError( - "Cannot encode SUC update entry, too many CCs", - ZWaveErrorCodes.Argument_Invalid, - ); - } - ccList.copy(ret, 2); - } - return ret; -} - -@nvmFileID(0x50003) +@nvmFileID(SUCUpdateEntriesFileIDV0) +@nvmSection("protocol") export class SUCUpdateEntriesFileV0 extends NVMFile { public constructor( options: NVMFileDeserializationOptions | SUCUpdateEntriesFileOptions, @@ -93,7 +43,7 @@ export class SUCUpdateEntriesFileV0 extends NVMFile { public updateEntries: SUCUpdateEntry[]; - public serialize(): NVM3Object { + public serialize(): NVM3Object & { data: Buffer } { this.payload = Buffer.alloc(SUC_MAX_UPDATES * SUC_UPDATE_ENTRY_SIZE, 0); for (let i = 0; i < this.updateEntries.length; i++) { const offset = i * SUC_UPDATE_ENTRY_SIZE; @@ -112,11 +62,10 @@ export class SUCUpdateEntriesFileV0 extends NVMFile { } } -export const SUCUpdateEntriesFileIDV0 = getNVMFileIDStatic( - SUCUpdateEntriesFileV0, -); - export const SUCUpdateEntriesFileV5IDBase = 0x54000; +export const SUCUpdateEntriesFileV5IDMax = SUCUpdateEntriesFileV5IDBase + + SUC_MAX_UPDATES / SUC_UPDATES_PER_FILE_V5 + - 1; export function sucUpdateIndexToSUCUpdateEntriesFileIDV5( index: number, ): number { @@ -129,10 +78,9 @@ export function sucUpdateIndexToSUCUpdateEntriesFileIDV5( @nvmFileID( (id) => id >= SUCUpdateEntriesFileV5IDBase - && id - < SUCUpdateEntriesFileV5IDBase - + SUC_MAX_UPDATES / SUC_UPDATES_PER_FILE_V5, + && id <= SUCUpdateEntriesFileV5IDMax, ) +@nvmSection("protocol") export class SUCUpdateEntriesFileV5 extends NVMFile { public constructor( options: NVMFileDeserializationOptions | SUCUpdateEntriesFileOptions, @@ -152,7 +100,7 @@ export class SUCUpdateEntriesFileV5 extends NVMFile { public updateEntries: SUCUpdateEntry[]; - public serialize(): NVM3Object { + public serialize(): NVM3Object & { data: Buffer } { this.payload = Buffer.alloc( SUC_UPDATES_PER_FILE_V5 * SUC_UPDATE_ENTRY_SIZE, 0xff, diff --git a/packages/nvmedit/src/files/VersionFiles.ts b/packages/nvmedit/src/lib/nvm3/files/VersionFiles.ts similarity index 76% rename from packages/nvmedit/src/files/VersionFiles.ts rename to packages/nvmedit/src/lib/nvm3/files/VersionFiles.ts index 6ef0d0467c21..7a8d12adbb60 100644 --- a/packages/nvmedit/src/files/VersionFiles.ts +++ b/packages/nvmedit/src/lib/nvm3/files/VersionFiles.ts @@ -1,11 +1,11 @@ -import type { NVM3Object } from "../nvm3/object"; +import type { NVM3Object } from "../object"; import { NVMFile, type NVMFileCreationOptions, type NVMFileDeserializationOptions, - getNVMFileIDStatic, gotDeserializationOptions, nvmFileID, + nvmSection, } from "./NVMFile"; export interface VersionFileOptions extends NVMFileCreationOptions { @@ -38,7 +38,7 @@ export class VersionFile extends NVMFile { public minor: number; public patch: number; - public serialize(): NVM3Object { + public serialize(): NVM3Object & { data: Buffer } { this.payload = Buffer.from([ this.patch, this.minor, @@ -58,20 +58,22 @@ export class VersionFile extends NVMFile { } } -@nvmFileID(0x51000) +export const ApplicationVersionFileID = 0x51000; + +@nvmFileID(ApplicationVersionFileID) +@nvmSection("application") export class ApplicationVersionFile extends VersionFile {} -export const ApplicationVersionFileID = getNVMFileIDStatic( - ApplicationVersionFile, -); // The 800 series has a shared application/protocol file system // and uses a different ID for the application version file -@nvmFileID(0x41000) +export const ApplicationVersionFile800ID = 0x41000; + +@nvmFileID(ApplicationVersionFile800ID) +@nvmSection("application") export class ApplicationVersionFile800 extends VersionFile {} -export const ApplicationVersionFile800ID = getNVMFileIDStatic( - ApplicationVersionFile800, -); -@nvmFileID(0x50000) +export const ProtocolVersionFileID = 0x50000; + +@nvmFileID(ProtocolVersionFileID) +@nvmSection("protocol") export class ProtocolVersionFile extends VersionFile {} -export const ProtocolVersionFileID = getNVMFileIDStatic(ProtocolVersionFile); diff --git a/packages/nvmedit/src/files/index.ts b/packages/nvmedit/src/lib/nvm3/files/index.ts similarity index 91% rename from packages/nvmedit/src/files/index.ts rename to packages/nvmedit/src/lib/nvm3/files/index.ts index 510f8185d0bc..5cc62c2c61a8 100644 --- a/packages/nvmedit/src/files/index.ts +++ b/packages/nvmedit/src/lib/nvm3/files/index.ts @@ -2,6 +2,7 @@ import "reflect-metadata"; export * from "./ApplicationCCsFile"; export * from "./ApplicationDataFile"; +export * from "./ApplicationNameFile"; export * from "./ApplicationRFConfigFile"; export * from "./ApplicationTypeFile"; export * from "./ControllerInfoFile"; diff --git a/packages/nvmedit/src/lib/nvm3/object.ts b/packages/nvmedit/src/lib/nvm3/object.ts new file mode 100644 index 000000000000..3eea81b06364 --- /dev/null +++ b/packages/nvmedit/src/lib/nvm3/object.ts @@ -0,0 +1,172 @@ +import { + FragmentType, + NVM3_CODE_LARGE_SHIFT, + NVM3_CODE_SMALL_SHIFT, + NVM3_COUNTER_SIZE, + NVM3_OBJ_FRAGTYPE_MASK, + NVM3_OBJ_FRAGTYPE_SHIFT, + NVM3_OBJ_HEADER_SIZE_LARGE, + NVM3_OBJ_HEADER_SIZE_SMALL, + NVM3_OBJ_KEY_MASK, + NVM3_OBJ_KEY_SHIFT, + NVM3_OBJ_LARGE_LEN_MASK, + NVM3_OBJ_TYPE_MASK, + NVM3_WORD_SIZE, + ObjectType, +} from "./consts"; +import { computeBergerCode, computeBergerCodeMulti } from "./utils"; + +export interface NVM3ObjectHeader { + offset: number; + type: ObjectType; + key: number; + fragmentType: FragmentType; + /** The length of the header */ + headerSize: number; + /** The length of the object data */ + fragmentSize: number; + /** The total length of the object in the NVM */ + alignedSize: number; +} + +export interface NVM3Object { + type: ObjectType; + fragmentType: FragmentType; + key: number; + data?: Buffer; +} + +export function serializeObject(obj: NVM3Object): Buffer { + const isLarge = obj.type === ObjectType.DataLarge + || obj.type === ObjectType.CounterLarge; + const headerSize = isLarge + ? NVM3_OBJ_HEADER_SIZE_LARGE + : NVM3_OBJ_HEADER_SIZE_SMALL; + const dataLength = obj.data?.length ?? 0; + const ret = Buffer.allocUnsafe(dataLength + headerSize); + + // Write header + if (isLarge) { + let hdr2 = dataLength & NVM3_OBJ_LARGE_LEN_MASK; + + const hdr1 = (obj.type & NVM3_OBJ_TYPE_MASK) + | ((obj.key & NVM3_OBJ_KEY_MASK) << NVM3_OBJ_KEY_SHIFT) + | ((obj.fragmentType & NVM3_OBJ_FRAGTYPE_MASK) + << NVM3_OBJ_FRAGTYPE_SHIFT); + + const bergerCode = computeBergerCodeMulti( + [hdr1, hdr2], + 32 + NVM3_CODE_LARGE_SHIFT, + ); + hdr2 |= bergerCode << NVM3_CODE_LARGE_SHIFT; + + ret.writeInt32LE(hdr1, 0); + ret.writeInt32LE(hdr2, 4); + } else { + let typeAndLen = obj.type; + if (typeAndLen === ObjectType.DataSmall && dataLength > 0) { + typeAndLen += dataLength; + } + let hdr1 = (typeAndLen & NVM3_OBJ_TYPE_MASK) + | ((obj.key & NVM3_OBJ_KEY_MASK) << NVM3_OBJ_KEY_SHIFT); + const bergerCode = computeBergerCode(hdr1, NVM3_CODE_SMALL_SHIFT); + hdr1 |= bergerCode << NVM3_CODE_SMALL_SHIFT; + + ret.writeInt32LE(hdr1, 0); + } + + // Write data + if (obj.data) { + obj.data.copy(ret, headerSize); + } + return ret; +} + +export function fragmentLargeObject( + obj: NVM3Object & { type: ObjectType.DataLarge | ObjectType.CounterLarge }, + maxFirstFragmentSizeWithHeader: number, + maxFragmentSizeWithHeader: number, +): NVM3Object[] { + const ret: NVM3Object[] = []; + + if ( + obj.data!.length + NVM3_OBJ_HEADER_SIZE_LARGE + <= maxFirstFragmentSizeWithHeader + ) { + return [obj]; + } + + let offset = 0; + while (offset < obj.data!.length) { + const fragmentSize = offset === 0 + ? maxFirstFragmentSizeWithHeader - NVM3_OBJ_HEADER_SIZE_LARGE + : maxFragmentSizeWithHeader - NVM3_OBJ_HEADER_SIZE_LARGE; + const data = obj.data!.subarray(offset, offset + fragmentSize); + + ret.push({ + type: obj.type, + key: obj.key, + fragmentType: offset === 0 + ? FragmentType.First + : data.length + NVM3_OBJ_HEADER_SIZE_LARGE + < maxFragmentSizeWithHeader + ? FragmentType.Last + : FragmentType.Next, + data, + }); + + offset += fragmentSize; + } + + return ret; +} + +export function getAlignedSize(size: number): number { + return (size + NVM3_WORD_SIZE - 1) & ~(NVM3_WORD_SIZE - 1); +} + +export function getHeaderSize(obj: NVM3Object): number { + switch (obj.type) { + case ObjectType.Deleted: + case ObjectType.CounterSmall: + case ObjectType.DataSmall: + return NVM3_OBJ_HEADER_SIZE_SMALL; + case ObjectType.CounterLarge: + case ObjectType.DataLarge: + return NVM3_OBJ_HEADER_SIZE_LARGE; + } +} + +export function getFragmentSize(obj: NVM3Object): number { + switch (obj.type) { + case ObjectType.Deleted: + return 0; + case ObjectType.CounterSmall: + return NVM3_COUNTER_SIZE; + case ObjectType.DataSmall: + case ObjectType.DataLarge: + case ObjectType.CounterLarge: + return obj.data?.length ?? 0; + } +} + +export function getRequiredSpace(obj: NVM3Object): number { + return getHeaderSize(obj) + getAlignedSize(getFragmentSize(obj)); +} + +export function getObjectHeader( + obj: NVM3Object, + offset: number, +): NVM3ObjectHeader { + const headerSize = getHeaderSize(obj); + const fragmentSize = getFragmentSize(obj); + return { + offset, + key: obj.key, + type: obj.type, + fragmentType: obj.fragmentType, + headerSize, + fragmentSize, + alignedSize: headerSize + getAlignedSize(fragmentSize), + }; +} diff --git a/packages/nvmedit/src/lib/nvm3/page.ts b/packages/nvmedit/src/lib/nvm3/page.ts new file mode 100644 index 000000000000..21880a02521b --- /dev/null +++ b/packages/nvmedit/src/lib/nvm3/page.ts @@ -0,0 +1,75 @@ +import { + NVM3_MIN_PAGE_SIZE, + NVM3_PAGE_COUNTER_MASK, + NVM3_PAGE_COUNTER_SIZE, + NVM3_PAGE_HEADER_SIZE, + NVM3_PAGE_MAGIC, + type PageStatus, + type PageWriteSize, +} from "./consts"; +import { type NVM3Object } from "./object"; +import { computeBergerCode } from "./utils"; + +export interface NVM3PageHeader { + offset: number; + version: number; + eraseCount: number; + status: PageStatus; + encrypted: boolean; + pageSize: number; + writeSize: PageWriteSize; + memoryMapped: boolean; + deviceFamily: number; +} + +export interface NVM3Page { + header: NVM3PageHeader; + objects: NVM3Object[]; +} + +// The page size field has a value from 0 to 7 describing page sizes from 512 to 65536 bytes +export function pageSizeToBits(pageSize: number): number { + return Math.ceil(Math.log2(pageSize) - Math.log2(NVM3_MIN_PAGE_SIZE)); +} + +export function pageSizeFromBits(bits: number): number { + return NVM3_MIN_PAGE_SIZE * Math.pow(2, bits); +} + +export function serializePageHeader( + header: Omit, +): Buffer { + const ret = Buffer.alloc(NVM3_PAGE_HEADER_SIZE); + + ret.writeUInt16LE(header.version, 0); + ret.writeUInt16LE(NVM3_PAGE_MAGIC, 2); + + let eraseCount = header.eraseCount & NVM3_PAGE_COUNTER_MASK; + const eraseCountCode = computeBergerCode( + eraseCount, + NVM3_PAGE_COUNTER_SIZE, + ); + eraseCount |= eraseCountCode << NVM3_PAGE_COUNTER_SIZE; + ret.writeInt32LE(eraseCount, 4); + + let eraseCountInv = ~header.eraseCount & NVM3_PAGE_COUNTER_MASK; + const eraseCountInvCode = computeBergerCode( + eraseCountInv, + NVM3_PAGE_COUNTER_SIZE, + ); + eraseCountInv |= eraseCountInvCode << NVM3_PAGE_COUNTER_SIZE; + ret.writeInt32LE(eraseCountInv, 8); + + ret.writeUInt32LE(header.status, 12); + + const devInfo = (header.deviceFamily & 0x7ff) + | ((header.writeSize & 0b1) << 11) + | ((header.memoryMapped ? 1 : 0) << 12) + | (pageSizeToBits(header.pageSize) << 13); + ret.writeUInt16LE(devInfo, 16); + + const formatInfo = header.encrypted ? 0xfffe : 0xffff; + ret.writeUInt16LE(formatInfo, 18); + + return ret; +} diff --git a/packages/nvmedit/src/nvm3/utils.test.ts b/packages/nvmedit/src/lib/nvm3/utils.test.ts similarity index 100% rename from packages/nvmedit/src/nvm3/utils.test.ts rename to packages/nvmedit/src/lib/nvm3/utils.test.ts diff --git a/packages/nvmedit/src/nvm3/utils.ts b/packages/nvmedit/src/lib/nvm3/utils.ts similarity index 50% rename from packages/nvmedit/src/nvm3/utils.ts rename to packages/nvmedit/src/lib/nvm3/utils.ts index 0780607bfdf1..5a32fd0b3164 100644 --- a/packages/nvmedit/src/nvm3/utils.ts +++ b/packages/nvmedit/src/lib/nvm3/utils.ts @@ -1,8 +1,9 @@ import { ZWaveError, ZWaveErrorCodes } from "@zwave-js/core/safe"; -import { NVMFile } from "../files/NVMFile"; +import { num2hex } from "@zwave-js/shared"; +import { type NVM3 } from "../NVM3"; import { FragmentType, ObjectType, PageStatus } from "./consts"; +import { NVMFile } from "./files/NVMFile"; import type { NVM3Object } from "./object"; -import type { NVM3Page } from "./page"; /** Counts the number of unset bits in the given word */ export function computeBergerCode(word: number, numBits: number = 32): number { @@ -81,29 +82,23 @@ export function mapToObject>( return obj; } -export function dumpPage(page: NVM3Page, json: boolean = false): void { - console.log(` `); - console.log(`read page (offset 0x${page.header.offset.toString(16)}):`); - console.log(` version: ${page.header.version}`); - console.log(` eraseCount: ${page.header.eraseCount}`); - console.log(` status: ${PageStatus[page.header.status]}`); - console.log(` encrypted: ${page.header.encrypted}`); - console.log(` pageSize: ${page.header.pageSize}`); - console.log(` writeSize: ${page.header.writeSize}`); - console.log(` memoryMapped: ${page.header.memoryMapped}`); - console.log(` deviceFamily: ${page.header.deviceFamily}`); - console.log(""); - console.log(` objects:`); - for (const obj of page.objects) { - dumpObject(obj, json); - } -} - -export function dumpObject(obj: NVM3Object, json: boolean = false): void { +function dumpObject( + obj: NVM3Object & { offset: number }, + json: boolean = false, +): void { try { if (json) { - const file = NVMFile.from(obj, "7.0.0"); - console.log(`${JSON.stringify(file.toJSON(), null, 2)}`); + const file = NVMFile.from(obj.key, obj.data!, "7.0.0"); + console.log( + JSON.stringify( + { + offset: num2hex(obj.offset), + ...file.toJSON(), + }, + null, + 2, + ), + ); console.log(); return; } @@ -111,7 +106,8 @@ export function dumpObject(obj: NVM3Object, json: boolean = false): void { // ignore } const prefix = json ? "" : " "; - console.log(`${prefix}· key: 0x${obj.key.toString(16)}`); + console.log(`${prefix}· offset: ${num2hex(obj.offset)}`); + console.log(`${prefix} key: 0x${obj.key.toString(16)}`); console.log(`${prefix} type: ${ObjectType[obj.type]}`); console.log(`${prefix} fragment type: ${FragmentType[obj.fragmentType]}`); if (obj.data) { @@ -123,3 +119,62 @@ export function dumpObject(obj: NVM3Object, json: boolean = false): void { } console.log(); } + +export async function dumpNVM(nvm: NVM3): Promise { + for (const [name, section] of Object.entries(nvm.info!.sections)) { + console.log(`NVM section: ${name}`); + + for (const page of section.pages) { + console.log(""); + console.log(`page (offset 0x${page.offset.toString(16)}):`); + console.log(` version: ${page.version}`); + console.log(` eraseCount: ${page.eraseCount}`); + console.log(` status: ${PageStatus[page.status]}`); + console.log(` encrypted: ${page.encrypted}`); + console.log(` pageSize: ${page.pageSize}`); + console.log(` writeSize: ${page.writeSize}`); + console.log(` memoryMapped: ${page.memoryMapped}`); + console.log(` deviceFamily: ${page.deviceFamily}`); + console.log(""); + if (page.objects.length) { + console.log(` raw objects:`); + + for (const objectHeader of page.objects) { + const objectData = objectHeader.type !== ObjectType.Deleted + ? await nvm.readObjectData(objectHeader) + : undefined; + dumpObject({ + offset: objectHeader.offset, + key: objectHeader.key, + type: objectHeader.type, + fragmentType: objectHeader.fragmentType, + data: objectData, + }, false); + } + } + } + + console.log(); + console.log(); + } + + for (const [name, section] of Object.entries(nvm.info!.sections)) { + console.log(`${name} objects:`); + for (const [fileId, pageIndex] of section.objectLocations) { + const page = section.pages[pageIndex]; + const objectHeader = page.objects.findLast((o) => o.key === fileId); + if (!objectHeader) continue; + const objectData = await nvm.get(fileId); + + dumpObject({ + offset: objectHeader.offset, + key: fileId, + type: objectHeader.type, + fragmentType: FragmentType.None, + data: objectData, + }, true); + } + + console.log(); + } +} diff --git a/packages/nvmedit/src/nvm500/EntryParsers.ts b/packages/nvmedit/src/lib/nvm500/EntryParsers.ts similarity index 100% rename from packages/nvmedit/src/nvm500/EntryParsers.ts rename to packages/nvmedit/src/lib/nvm500/EntryParsers.ts diff --git a/packages/nvmedit/src/lib/nvm500/adapter.ts b/packages/nvmedit/src/lib/nvm500/adapter.ts new file mode 100644 index 000000000000..900a4109ae45 --- /dev/null +++ b/packages/nvmedit/src/lib/nvm500/adapter.ts @@ -0,0 +1,605 @@ +import { + type CommandClasses, + ZWaveError, + ZWaveErrorCodes, +} from "@zwave-js/core"; +import { assertNever } from "alcalzone-shared/helpers"; +import { SUC_MAX_UPDATES } from "../../consts"; +import { type NVM500, type NVM500Info } from "../NVM500"; +import { + type ControllerNVMProperty, + type NVMAdapter, + type NVMProperty, + type NVMPropertyToDataType, + type NodeNVMProperty, +} from "../common/definitions"; +import { type Route } from "../common/routeCache"; +import { type SUCUpdateEntry } from "../common/sucUpdateEntry"; +import { type NodeInfo } from "../nvm3/files"; +import { type NVM500NodeInfo } from "./EntryParsers"; +import { + APPL_NODEPARM_MAX, + type NVMData, + type NVMEntryName, + NVM_SERIALAPI_HOST_SIZE, +} from "./shared"; + +export class NVM500Adapter implements NVMAdapter { + public constructor(nvm: NVM500) { + this._nvm = nvm; + } + + private _nvm: NVM500; + + public async get( + property: T, + required?: R, + ): Promise< + R extends true ? NonNullable> + : (NVMPropertyToDataType | undefined) + > { + const info = this._nvm.info ?? await this._nvm.init(); + + let ret: unknown; + if (property.domain === "controller") { + ret = await this.getControllerNVMProperty(info, property); + } else if (property.domain === "lrnode") { + throw new ZWaveError( + `500 series NVM has no support for Long Range node information`, + ZWaveErrorCodes.NVM_ObjectNotFound, + ); + } else { + ret = await this.getNodeNVMProperty(property); + } + if (required && ret === undefined) { + throw new ZWaveError( + `NVM data for property ${JSON.stringify(property)} not found`, + ZWaveErrorCodes.NVM_ObjectNotFound, + ); + } + return ret as any; + } + + private async getOnly( + property: NVMEntryName, + ): Promise { + const data = await this._nvm.get(property); + return data?.[0] as T | undefined; + } + + private async getSingle( + property: NVMEntryName, + index: number, + ): Promise { + const data = await this._nvm.getSingle(property, index); + return data as T | undefined; + } + + private getAll( + property: NVMEntryName, + ): Promise { + return this._nvm.get(property) as any; + } + + private async getControllerNVMProperty( + info: NVM500Info, + property: ControllerNVMProperty, + ): Promise { + switch (property.type) { + case "protocolVersion": + return info.nvmDescriptor.protocolVersion; + case "applicationVersion": + return info.nvmDescriptor.firmwareVersion; + + case "protocolFileFormat": + case "applicationFileFormat": + // Not supported in 500 series, but we use 500 in JSON to designate a 500 series NVM + return 500; + + case "applicationData": + return this.getOnly("EEOFFSET_HOST_OFFSET_START_far"); + + case "applicationName": + // Not supported in 500 series + return; + + case "homeId": { + // 500 series stores the home ID as a number + const homeId = await this.getOnly( + "EX_NVM_HOME_ID_far", + ); + if (homeId == undefined) return; + const ret = Buffer.alloc(4, 0); + // FIXME: BE? LE? + ret.writeUInt32BE(homeId, 0); + return ret; + } + + case "learnedHomeId": { + // 500 series stores the home ID as a number + const homeId = await this.getOnly("NVM_HOMEID_far"); + if (homeId == undefined) return; + const ret = Buffer.alloc(4, 0); + // FIXME: BE? LE? + ret.writeUInt32BE(homeId, 0); + return ret; + } + + case "nodeId": + return this.getOnly("NVM_NODEID_far"); + + case "lastNodeId": + return this.getOnly( + "EX_NVM_LAST_USED_NODE_ID_START_far", + ); + + case "staticControllerNodeId": + return this.getOnly( + "EX_NVM_STATIC_CONTROLLER_NODE_ID_START_far", + ); + case "sucLastIndex": + return this.getOnly( + "EX_NVM_SUC_LAST_INDEX_START_far", + ); + case "controllerConfiguration": + return this.getOnly( + "EX_NVM_CONTROLLER_CONFIGURATION_far", + ); + + case "maxNodeId": + return this.getOnly("EX_NVM_MAX_NODE_ID_far"); + case "reservedId": + return this.getOnly("EX_NVM_RESERVED_ID_far"); + case "systemState": + return this.getOnly("NVM_SYSTEM_STATE"); + + case "commandClasses": { + const numCCs = await this.getOnly( + "EEOFFSET_CMDCLASS_LEN_far", + ); + const ret = await this.getAll( + "EEOFFSET_CMDCLASS_far", + ); + return ret?.slice(0, numCCs); + } + + case "preferredRepeaters": + return this.getOnly("NVM_PREFERRED_REPEATERS_far"); + + case "appRouteLock": { + return this.getOnly( + "EX_NVM_ROUTECACHE_APP_LOCK_far", + ); + } + case "routeSlaveSUC": { + return this.getOnly( + "EX_NVM_SUC_ROUTING_SLAVE_LIST_START_far", + ); + } + case "sucPendingUpdate": { + return this.getOnly("EX_NVM_PENDING_UPDATE_far"); + } + case "pendingDiscovery": { + return this.getOnly("NVM_PENDING_DISCOVERY_far"); + } + + case "nodeIds": { + const nodeInfos = await this.getAll( + "EX_NVM_NODE_TABLE_START_far", + ); + return nodeInfos + ?.map((info, index) => info ? (index + 1) : undefined) + .filter((id) => id != undefined); + } + + case "virtualNodeIds": { + const ret = await this.getOnly( + "EX_NVM_BRIDGE_NODEPOOL_START_far", + ); + return ret ?? []; + } + + case "sucUpdateEntries": { + const ret = await this.getAll( + "EX_NVM_SUC_NODE_LIST_START_far", + ); + return ret?.filter(Boolean); + } + + case "watchdogStarted": + return this.getOnly("EEOFFSET_WATCHDOG_STARTED_far"); + + case "powerLevelNormal": + return this.getAll( + "EEOFFSET_POWERLEVEL_NORMAL_far", + ); + case "powerLevelLow": + return this.getAll( + "EEOFFSET_POWERLEVEL_LOW_far", + ); + case "powerMode": + return this.getOnly( + "EEOFFSET_MODULE_POWER_MODE_far", + ); + case "powerModeExtintEnable": + return this.getOnly( + "EEOFFSET_MODULE_POWER_MODE_EXTINT_ENABLE_far", + ); + case "powerModeWutTimeout": + return this.getOnly( + "EEOFFSET_MODULE_POWER_MODE_WUT_TIMEOUT_far", + ); + + case "sucAwarenessPushNeeded": + case "lastNodeIdLR": + case "maxNodeIdLR": + case "reservedIdLR": + case "primaryLongRangeChannelId": + case "dcdcConfig": + case "lrNodeIds": + case "includedInsecurely": + case "includedSecurelyInsecureCCs": + case "includedSecurelySecureCCs": + case "rfRegion": + case "txPower": + case "measured0dBm": + case "enablePTI": + case "maxTXPower": + case "nodeIdType": + case "isListening": + case "optionalFunctionality": + case "genericDeviceClass": + case "specificDeviceClass": + // Not supported on 500 series, 700+ series only + return; + + default: + assertNever(property.type); + } + } + + private async getNodeNVMProperty( + property: NodeNVMProperty, + ): Promise { + switch (property.type) { + case "info": { + const nodeId = property.nodeId; + const nodeInfo = await this.getSingle( + "EX_NVM_NODE_TABLE_START_far", + nodeId - 1, + ); + const sucUpdateIndex = await this.getSingle( + "EX_NVM_SUC_CONTROLLER_LIST_START_far", + nodeId - 1, + ) ?? 0xff; + const neighbors = await this.getSingle( + "EX_NVM_ROUTING_TABLE_START_far", + nodeId - 1, + ) ?? []; + + if (!nodeInfo) return; + + return { + nodeId, + ...nodeInfo, + neighbors, + sucUpdateIndex, + } satisfies NodeInfo; + } + + case "routes": { + const lwr = await this.getSingle( + "EX_NVM_ROUTECACHE_START_far", + property.nodeId - 1, + ); + const nlwr = await this.getSingle( + "EX_NVM_ROUTECACHE_NLWR_SR_START_far", + property.nodeId - 1, + ); + return { lwr, nlwr }; + } + } + } + + private setOnly( + property: NVMEntryName, + value: NVMData, + ): Promise { + return this._nvm.set(property, [value]); + } + + private setSingle( + property: NVMEntryName, + index: number, + value: NVMData, + ): Promise { + return this._nvm.setSingle(property, index, value); + } + + private setAll( + property: NVMEntryName, + value: NVMData[], + ): Promise { + return this._nvm.set(property, value); + } + + set( + property: T, + value: NVMPropertyToDataType, + ): Promise { + if (property.domain === "controller") { + return this.setControllerNVMProperty(property, value); + } else if (property.domain === "lrnode") { + throw new ZWaveError( + `500 series NVM has no support for Long Range node information`, + ZWaveErrorCodes.NVM_ObjectNotFound, + ); + } else { + return this.setNodeNVMProperty(property, value); + } + } + + private async setControllerNVMProperty( + property: ControllerNVMProperty, + value: any, + ): Promise { + switch (property.type) { + case "protocolVersion": + case "applicationVersion": + // Only written during erase + return; + + case "protocolFileFormat": + case "applicationFileFormat": + // Cannot be written + return; + + case "applicationData": + return this.setOnly( + "EEOFFSET_HOST_OFFSET_START_far", + value ?? Buffer.alloc(NVM_SERIALAPI_HOST_SIZE, 0xff), + ); + + case "applicationName": + // Not supported in 500 series + return; + + case "homeId": { + // 500 series stores the home ID as a number + const homeId = value.readUInt32BE(0); + return this.setOnly("EX_NVM_HOME_ID_far", homeId); + } + + case "learnedHomeId": { + // 500 series stores the home ID as a number + const learnedHomeId = value?.readUInt32BE(0) ?? 0x00000000; + return this.setOnly("NVM_HOMEID_far", learnedHomeId); + } + + case "nodeId": + return this.setOnly("NVM_NODEID_far", value); + + case "lastNodeId": + return this.setOnly( + "EX_NVM_LAST_USED_NODE_ID_START_far", + value, + ); + + case "staticControllerNodeId": + return this.setOnly( + "EX_NVM_STATIC_CONTROLLER_NODE_ID_START_far", + value, + ); + case "sucLastIndex": + return this.setOnly( + "EX_NVM_SUC_LAST_INDEX_START_far", + value, + ); + case "controllerConfiguration": + return this.setOnly( + "EX_NVM_CONTROLLER_CONFIGURATION_far", + value, + ); + + case "maxNodeId": + return this.setOnly("EX_NVM_MAX_NODE_ID_far", value); + case "reservedId": + return this.setOnly("EX_NVM_RESERVED_ID_far", value); + case "systemState": + return this.setOnly("NVM_SYSTEM_STATE", value); + + case "commandClasses": { + await this.setOnly( + "EEOFFSET_CMDCLASS_LEN_far", + value.length, + ); + const CCs = new Array(APPL_NODEPARM_MAX).fill(0xff); + for (let i = 0; i < value.length; i++) { + if (i < APPL_NODEPARM_MAX) { + CCs[i] = value[i]; + } + } + await this.setAll( + "EEOFFSET_CMDCLASS_far", + CCs, + ); + return; + } + + case "preferredRepeaters": + return this.setOnly("NVM_PREFERRED_REPEATERS_far", value); + + case "appRouteLock": { + return this.setOnly( + "EX_NVM_ROUTECACHE_APP_LOCK_far", + value, + ); + } + case "routeSlaveSUC": { + return this.setOnly( + "EX_NVM_SUC_ROUTING_SLAVE_LIST_START_far", + value, + ); + } + case "sucPendingUpdate": { + return this.setOnly("EX_NVM_PENDING_UPDATE_far", value); + } + case "pendingDiscovery": { + return this.setOnly("NVM_PENDING_DISCOVERY_far", value); + } + + case "nodeIds": + // Cannot be written. Is implied by the node info table + return; + + case "virtualNodeIds": { + return this.setOnly( + "EX_NVM_BRIDGE_NODEPOOL_START_far", + value, + ); + } + + case "sucUpdateEntries": { + const entries = value as SUCUpdateEntry[]; + const sucUpdateEntries = new Array(SUC_MAX_UPDATES).fill( + undefined, + ); + for (let i = 0; i < entries.length; i++) { + if (i < SUC_MAX_UPDATES) { + sucUpdateEntries[i] = entries[i]; + } + } + return this.setAll( + "EX_NVM_SUC_NODE_LIST_START_far", + sucUpdateEntries, + ); + } + + case "watchdogStarted": + return this.setOnly("EEOFFSET_WATCHDOG_STARTED_far", value); + + case "powerLevelNormal": + return this.setAll( + "EEOFFSET_POWERLEVEL_NORMAL_far", + value, + ); + case "powerLevelLow": + return this.setAll( + "EEOFFSET_POWERLEVEL_LOW_far", + value, + ); + case "powerMode": + return this.setOnly( + "EEOFFSET_MODULE_POWER_MODE_far", + value, + ); + case "powerModeExtintEnable": + return this.setOnly( + "EEOFFSET_MODULE_POWER_MODE_EXTINT_ENABLE_far", + value, + ); + case "powerModeWutTimeout": + return this.setOnly( + "EEOFFSET_MODULE_POWER_MODE_WUT_TIMEOUT_far", + value, + ); + + case "sucAwarenessPushNeeded": + case "lastNodeIdLR": + case "maxNodeIdLR": + case "reservedIdLR": + case "primaryLongRangeChannelId": + case "dcdcConfig": + case "lrNodeIds": + case "includedInsecurely": + case "includedSecurelyInsecureCCs": + case "includedSecurelySecureCCs": + case "rfRegion": + case "txPower": + case "measured0dBm": + case "enablePTI": + case "maxTXPower": + case "nodeIdType": + case "isListening": + case "optionalFunctionality": + case "genericDeviceClass": + case "specificDeviceClass": + // Not supported on 500 series, 700+ series only + return; + + default: + assertNever(property.type); + } + } + + private async setNodeNVMProperty( + property: NodeNVMProperty, + value: any, + ): Promise { + switch (property.type) { + case "info": { + const nodeId = property.nodeId; + const node = value as NodeInfo; + await this.setSingle( + "EX_NVM_NODE_TABLE_START_far", + nodeId - 1, + node + ? { + isListening: node.isListening, + isFrequentListening: node.isFrequentListening, + isRouting: node.isRouting, + supportedDataRates: node.supportedDataRates, + protocolVersion: node.protocolVersion, + optionalFunctionality: node.optionalFunctionality, + nodeType: node.nodeType, + supportsSecurity: node.supportsSecurity, + supportsBeaming: node.supportsBeaming, + genericDeviceClass: node.genericDeviceClass, + specificDeviceClass: node.specificDeviceClass + ?? null, + } satisfies NVM500NodeInfo + : undefined, + ); + await this.setSingle( + "EX_NVM_SUC_CONTROLLER_LIST_START_far", + nodeId - 1, + node?.sucUpdateIndex ?? 0xfe, + ); + await this.setSingle( + "EX_NVM_ROUTING_TABLE_START_far", + nodeId - 1, + node?.neighbors, + ); + } + + case "routes": { + const nodeId = property.nodeId; + const routes = value as { lwr?: Route; nlwr?: Route }; + await this.setSingle( + "EX_NVM_ROUTECACHE_START_far", + nodeId - 1, + routes.lwr, + ); + await this.setSingle( + "EX_NVM_ROUTECACHE_NLWR_SR_START_far", + property.nodeId - 1, + routes.nlwr, + ); + } + } + } + + // eslint-disable-next-line @typescript-eslint/require-await + public async delete(_property: NVMProperty): Promise { + throw new Error("Method not implemented."); + } + + public hasPendingChanges(): boolean { + // We don't buffer changes + return false; + } + + public async commit(): Promise { + // We don't buffer changes at the moment + } +} diff --git a/packages/nvmedit/src/nvm500/parsers/Bridge_6_6x.ts b/packages/nvmedit/src/lib/nvm500/impls/Bridge_6_6x.ts similarity index 97% rename from packages/nvmedit/src/nvm500/parsers/Bridge_6_6x.ts rename to packages/nvmedit/src/lib/nvm500/impls/Bridge_6_6x.ts index 87ad9874e824..55a00de55c01 100644 --- a/packages/nvmedit/src/nvm500/parsers/Bridge_6_6x.ts +++ b/packages/nvmedit/src/lib/nvm500/impls/Bridge_6_6x.ts @@ -1,6 +1,6 @@ import { MAX_NODES, NUM_NODEMASK_BYTES } from "@zwave-js/core/safe"; -import { SUC_MAX_UPDATES } from "../../consts"; -import type { NVM500Details } from "../NVMParser"; +import { SUC_MAX_UPDATES } from "../../../consts"; +import type { NVM500Impl } from "../shared"; import { APPL_NODEPARM_MAX, NVMEntryType, @@ -182,7 +182,7 @@ const NVM_Layout_Bridge_6_6x: NVMLayout = [ { name: "nvmModuleSizeEndMarker", type: NVMEntryType.Word, count: 1 }, ]; -export const Bridge_6_6x: NVM500Details = { +export const Bridge_6_6x: NVM500Impl = { name: "Bridge 6.6x", library: "bridge", protocolVersions: ["4.33", "4.62"], diff --git a/packages/nvmedit/src/nvm500/parsers/Bridge_6_7x.ts b/packages/nvmedit/src/lib/nvm500/impls/Bridge_6_7x.ts similarity index 97% rename from packages/nvmedit/src/nvm500/parsers/Bridge_6_7x.ts rename to packages/nvmedit/src/lib/nvm500/impls/Bridge_6_7x.ts index 38784e31290c..669b01aaf3dc 100644 --- a/packages/nvmedit/src/nvm500/parsers/Bridge_6_7x.ts +++ b/packages/nvmedit/src/lib/nvm500/impls/Bridge_6_7x.ts @@ -1,6 +1,6 @@ import { MAX_NODES, NUM_NODEMASK_BYTES } from "@zwave-js/core/safe"; -import { SUC_MAX_UPDATES } from "../../consts"; -import type { NVM500Details } from "../NVMParser"; +import { SUC_MAX_UPDATES } from "../../../consts"; +import type { NVM500Impl } from "../shared"; import { APPL_NODEPARM_MAX, NVMEntryType, @@ -199,7 +199,7 @@ const NVM_Layout_Bridge_6_7x: NVMLayout = [ { name: "nvmModuleSizeEndMarker", type: NVMEntryType.Word, count: 1 }, ]; -export const Bridge_6_7x: NVM500Details = { +export const Bridge_6_7x: NVM500Impl = { name: "Bridge 6.7x", library: "bridge", protocolVersions: ["4.60", "4.61", "5.02", "5.03"], diff --git a/packages/nvmedit/src/nvm500/parsers/Bridge_6_8x.ts b/packages/nvmedit/src/lib/nvm500/impls/Bridge_6_8x.ts similarity index 97% rename from packages/nvmedit/src/nvm500/parsers/Bridge_6_8x.ts rename to packages/nvmedit/src/lib/nvm500/impls/Bridge_6_8x.ts index c99a240ff666..cd88be4698f7 100644 --- a/packages/nvmedit/src/nvm500/parsers/Bridge_6_8x.ts +++ b/packages/nvmedit/src/lib/nvm500/impls/Bridge_6_8x.ts @@ -1,6 +1,6 @@ import { MAX_NODES, NUM_NODEMASK_BYTES } from "@zwave-js/core/safe"; -import { SUC_MAX_UPDATES } from "../../consts"; -import type { NVM500Details } from "../NVMParser"; +import { SUC_MAX_UPDATES } from "../../../consts"; +import type { NVM500Impl } from "../shared"; import { APPL_NODEPARM_MAX, NVMEntryType, @@ -215,7 +215,7 @@ const NVM_Layout_Bridge_6_8x: NVMLayout = [ { name: "nvmModuleSizeEndMarker", type: NVMEntryType.Word, count: 1 }, ]; -export const Bridge_6_8x: NVM500Details = { +export const Bridge_6_8x: NVM500Impl = { name: "Bridge 6.8x", library: "bridge", protocolVersions: [ diff --git a/packages/nvmedit/src/nvm500/parsers/Static_6_6x.ts b/packages/nvmedit/src/lib/nvm500/impls/Static_6_6x.ts similarity index 96% rename from packages/nvmedit/src/nvm500/parsers/Static_6_6x.ts rename to packages/nvmedit/src/lib/nvm500/impls/Static_6_6x.ts index 661698c5f540..1ea466a9ad85 100644 --- a/packages/nvmedit/src/nvm500/parsers/Static_6_6x.ts +++ b/packages/nvmedit/src/lib/nvm500/impls/Static_6_6x.ts @@ -1,6 +1,6 @@ import { MAX_NODES, NUM_NODEMASK_BYTES } from "@zwave-js/core/safe"; -import { SUC_MAX_UPDATES } from "../../consts"; -import type { NVM500Details } from "../NVMParser"; +import { SUC_MAX_UPDATES } from "../../../consts"; +import type { NVM500Impl } from "../shared"; import { APPL_NODEPARM_MAX, NVMEntryType, @@ -177,7 +177,7 @@ const NVM_Layout_Static_6_6x: NVMLayout = [ { name: "nvmModuleSizeEndMarker", type: NVMEntryType.Word, count: 1 }, ]; -export const Static_6_6x: NVM500Details = { +export const Static_6_6x: NVM500Impl = { name: "Static 6.6x", library: "static", protocolVersions: ["4.33", "4.62"], diff --git a/packages/nvmedit/src/nvm500/parsers/Static_6_7x.ts b/packages/nvmedit/src/lib/nvm500/impls/Static_6_7x.ts similarity index 97% rename from packages/nvmedit/src/nvm500/parsers/Static_6_7x.ts rename to packages/nvmedit/src/lib/nvm500/impls/Static_6_7x.ts index 88d28497424f..a3343ee874c0 100644 --- a/packages/nvmedit/src/nvm500/parsers/Static_6_7x.ts +++ b/packages/nvmedit/src/lib/nvm500/impls/Static_6_7x.ts @@ -1,6 +1,6 @@ import { MAX_NODES, NUM_NODEMASK_BYTES } from "@zwave-js/core/safe"; -import { SUC_MAX_UPDATES } from "../../consts"; -import type { NVM500Details } from "../NVMParser"; +import { SUC_MAX_UPDATES } from "../../../consts"; +import type { NVM500Impl } from "../shared"; import { APPL_NODEPARM_MAX, NVMEntryType, @@ -194,7 +194,7 @@ const NVM_Layout_Static_6_7x: NVMLayout = [ { name: "nvmModuleSizeEndMarker", type: NVMEntryType.Word, count: 1 }, ]; -export const Static_6_7x: NVM500Details = { +export const Static_6_7x: NVM500Impl = { name: "Static 6.7x", library: "static", protocolVersions: ["4.60", "4.61", "5.02", "5.03"], diff --git a/packages/nvmedit/src/nvm500/parsers/Static_6_8x.ts b/packages/nvmedit/src/lib/nvm500/impls/Static_6_8x.ts similarity index 97% rename from packages/nvmedit/src/nvm500/parsers/Static_6_8x.ts rename to packages/nvmedit/src/lib/nvm500/impls/Static_6_8x.ts index 6cdbc0e3ee35..c48db4068ed0 100644 --- a/packages/nvmedit/src/nvm500/parsers/Static_6_8x.ts +++ b/packages/nvmedit/src/lib/nvm500/impls/Static_6_8x.ts @@ -1,6 +1,6 @@ import { MAX_NODES, NUM_NODEMASK_BYTES } from "@zwave-js/core/safe"; -import { SUC_MAX_UPDATES } from "../../consts"; -import type { NVM500Details } from "../NVMParser"; +import { SUC_MAX_UPDATES } from "../../../consts"; +import type { NVM500Impl } from "../shared"; import { APPL_NODEPARM_MAX, NVMEntryType, @@ -211,7 +211,7 @@ const NVM_Layout_Static_6_8x: NVMLayout = [ { name: "nvmModuleSizeEndMarker", type: NVMEntryType.Word, count: 1 }, ]; -export const Static_6_8x: NVM500Details = { +export const Static_6_8x: NVM500Impl = { name: "Static 6.8x", library: "static", protocolVersions: [ diff --git a/packages/nvmedit/src/lib/nvm500/impls/index.ts b/packages/nvmedit/src/lib/nvm500/impls/index.ts new file mode 100644 index 000000000000..f49192628c84 --- /dev/null +++ b/packages/nvmedit/src/lib/nvm500/impls/index.ts @@ -0,0 +1,15 @@ +import { Bridge_6_6x } from "./Bridge_6_6x"; +import { Bridge_6_7x } from "./Bridge_6_7x"; +import { Bridge_6_8x } from "./Bridge_6_8x"; +import { Static_6_6x } from "./Static_6_6x"; +import { Static_6_7x } from "./Static_6_7x"; +import { Static_6_8x } from "./Static_6_8x"; + +export const nvm500Impls = [ + Bridge_6_6x, + Bridge_6_7x, + Bridge_6_8x, + Static_6_6x, + Static_6_7x, + Static_6_8x, +] as const; diff --git a/packages/nvmedit/src/nvm500/shared.ts b/packages/nvmedit/src/lib/nvm500/shared.ts similarity index 77% rename from packages/nvmedit/src/nvm500/shared.ts rename to packages/nvmedit/src/lib/nvm500/shared.ts index b7cf0a40e527..cbea9b150c86 100644 --- a/packages/nvmedit/src/nvm500/shared.ts +++ b/packages/nvmedit/src/lib/nvm500/shared.ts @@ -1,6 +1,7 @@ import { NUM_NODEMASK_BYTES } from "@zwave-js/core/safe"; -import { SUC_UPDATE_ENTRY_SIZE } from "../consts"; -import type { Route, SUCUpdateEntry } from "../files"; +import { SUC_UPDATE_ENTRY_SIZE } from "../../consts"; +import { type Route } from "../common/routeCache"; +import { type SUCUpdateEntry } from "../common/sucUpdateEntry"; import type { NVM500NodeInfo, NVMDescriptor, @@ -91,6 +92,9 @@ export interface NVMEntry { count: number; } +/** The NVM entry as it appears in a valid layout, with all sizes and offsets resolved */ +export type ResolvedNVMEntry = Required; + export type NVMData = | Buffer | number @@ -106,7 +110,9 @@ export interface ParsedNVMEntry extends NVMEntry { data: NVMData[]; } -export type NVMLayout = NVMEntry[]; +export type NVMLayout = readonly Readonly[]; + +export type ResolvedNVMLayout = ReadonlyMap; export const NVMEntrySizes: Record = { [NVMEntryType.NVMModuleSize]: 2, // Marks the start of an NVM module @@ -150,3 +156,37 @@ export const CONFIGURATION_VALID_0 = 0x54; export const CONFIGURATION_VALID_1 = 0xa5; export const ROUTECACHE_VALID = 0x4a; export const MAGIC_VALUE = 0x42; + +export interface NVM500Impl { + name: string; + library: "static" | "bridge"; + protocolVersions: string[]; + layout: NVMLayout; +} + +export type ResolvedNVM500Impl = Omit & { + layout: ResolvedNVMLayout; +}; + +export function resolveLayout(layout: NVMLayout): { + layout: ResolvedNVMLayout; + nvmSize: number; +} { + const ret: Map> = new Map(); + let offset = 0; + for (const entry of layout) { + const size = entry.size ?? NVMEntrySizes[entry.type]; + const resolvedEntry: ResolvedNVMEntry = { + ...entry, + size, + offset: entry.offset ?? offset, + }; + ret.set(resolvedEntry.name, resolvedEntry); + offset += size * entry.count; + } + + const endMarker = ret.get("nvmModuleSizeEndMarker")!; + const nvmSize = endMarker.offset + endMarker.size; + + return { layout: ret, nvmSize }; +} diff --git a/packages/nvmedit/src/nvm3/nvm.ts b/packages/nvmedit/src/nvm3/nvm.ts deleted file mode 100644 index 8646a9e3ad05..000000000000 --- a/packages/nvmedit/src/nvm3/nvm.ts +++ /dev/null @@ -1,281 +0,0 @@ -import { ZWaveError, ZWaveErrorCodes } from "@zwave-js/core/safe"; -import { pick } from "@zwave-js/shared/safe"; -import { ApplicationVersionFile800ID } from "../files"; -import { - FLASH_MAX_PAGE_SIZE_700, - FLASH_MAX_PAGE_SIZE_800, - NVM3_COUNTER_SIZE, - NVM3_OBJ_HEADER_SIZE_LARGE, - NVM3_OBJ_HEADER_SIZE_SMALL, - NVM3_PAGE_HEADER_SIZE, - NVM3_WORD_SIZE, - ObjectType, - PageStatus, - PageWriteSize, - ZWAVE_APPLICATION_NVM_SIZE, - ZWAVE_PROTOCOL_NVM_SIZE, - ZWAVE_SHARED_NVM_SIZE, -} from "./consts"; -import { - type NVM3Object, - compressObjects, - fragmentLargeObject, - writeObject, -} from "./object"; -import { type NVM3Page, readPage, writePageHeader } from "./page"; -import { dumpObject, dumpPage } from "./utils"; - -function comparePages(p1: NVM3Page, p2: NVM3Page) { - if (p1.header.eraseCount === p2.header.eraseCount) { - return p1.header.offset - p2.header.offset; - } else { - return p1.header.eraseCount - p2.header.eraseCount; - } -} - -export interface NVMMeta { - sharedFileSystem: boolean; - pageSize: number; - deviceFamily: number; - writeSize: PageWriteSize; - memoryMapped: boolean; -} - -export interface NVM3Pages { - /** All application pages in the NVM */ - applicationPages: NVM3Page[]; - /** All application pages in the NVM */ - protocolPages: NVM3Page[]; -} - -export interface NVM3Objects { - /** A compressed map of application-level NVM objects */ - applicationObjects: Map; - /** A compressed map of protocol-level NVM objects */ - protocolObjects: Map; -} - -export function parseNVM( - buffer: Buffer, - verbose: boolean = false, -): NVM3Pages & NVM3Objects { - let offset = 0; - const pages: NVM3Page[] = []; - while (offset < buffer.length) { - const { page, bytesRead } = readPage(buffer, offset); - if (verbose) dumpPage(page); - pages.push(page); - offset += bytesRead; - } - - // 800 series has a shared NVM for protocol and application data. - // We can distinguish between the two, because the application version is stored in a different file ID - - const isSharedFileSystem = pages.some( - (p) => p.objects.some((o) => o.key === ApplicationVersionFile800ID), - ); - // By convention, we only use the applicationPages in that case - let applicationPages: NVM3Page[]; - let protocolPages: NVM3Page[]; - - if (isSharedFileSystem) { - applicationPages = pages; - protocolPages = []; - } else { - applicationPages = pages.filter( - (p) => p.header.offset < ZWAVE_APPLICATION_NVM_SIZE, - ); - protocolPages = pages.filter( - (p) => p.header.offset >= ZWAVE_APPLICATION_NVM_SIZE, - ); - } - - // The pages are written in a ring buffer, find the one with the lowest erase count and start reading from there in order - applicationPages.sort(comparePages); - protocolPages.sort(comparePages); - - // Build a compressed view of the NVM objects - const applicationObjects = compressObjects( - applicationPages.reduce( - (acc, page) => acc.concat(page.objects), - [], - ), - ); - - const protocolObjects = compressObjects( - protocolPages.reduce( - (acc, page) => acc.concat(page.objects), - [], - ), - ); - - if (verbose) { - console.log(); - console.log(); - console.log("Application objects:"); - applicationObjects.forEach((obj) => dumpObject(obj, true)); - console.log(); - console.log("Protocol objects:"); - protocolObjects.forEach((obj) => dumpObject(obj, true)); - } - - return { - applicationPages, - protocolPages, - applicationObjects, - protocolObjects, - }; -} - -export type EncodeNVMOptions = Partial; - -export function encodeNVM( - /** A compressed map of application-level NVM objects */ - applicationObjects: Map, - /** A compressed map of protocol-level NVM objects */ - protocolObjects: Map, - options?: EncodeNVMOptions, -): Buffer { - const { - deviceFamily = 2047, - writeSize = PageWriteSize.WRITE_SIZE_16, - memoryMapped = true, - } = options ?? {}; - const maxPageSize = options?.sharedFileSystem - ? FLASH_MAX_PAGE_SIZE_800 - : FLASH_MAX_PAGE_SIZE_700; - const pageSize = Math.min( - options?.pageSize ?? maxPageSize, - maxPageSize, - ); - - const createEmptyPage = (): Buffer => { - const ret = Buffer.alloc(pageSize, 0xff); - writePageHeader({ - version: 0x01, - eraseCount: 0, - encrypted: false, - deviceFamily, - memoryMapped, - pageSize, - status: PageStatus.OK, - writeSize, - }).copy(ret, 0); - return ret; - }; - - const writeObjects = ( - pages: Buffer[], - objects: Map, - ) => { - // Keep track where we are at with writing in the pages - let pageIndex = -1; - let offsetInPage = -1; - let remainingSpace = -1; - let currentPage!: Buffer; - const nextPage = () => { - pageIndex++; - if (pageIndex >= pages.length) { - throw new ZWaveError( - "Not enough pages!", - ZWaveErrorCodes.NVM_NoSpace, - ); - } - currentPage = pages[pageIndex]; - offsetInPage = NVM3_PAGE_HEADER_SIZE; - remainingSpace = pageSize - offsetInPage; - }; - const incrementOffset = (by: number) => { - const alignedDelta = (by + NVM3_WORD_SIZE - 1) - & ~(NVM3_WORD_SIZE - 1); - - offsetInPage += alignedDelta; - remainingSpace = pageSize - offsetInPage; - }; - - nextPage(); - for (const obj of objects.values()) { - let fragments: NVM3Object[] | undefined; - - if (obj.type === ObjectType.Deleted) continue; - if ( - (obj.type === ObjectType.CounterSmall - && remainingSpace - < NVM3_OBJ_HEADER_SIZE_SMALL + NVM3_COUNTER_SIZE) - || (obj.type === ObjectType.DataSmall - && remainingSpace - < NVM3_OBJ_HEADER_SIZE_SMALL + (obj.data?.length ?? 0)) - ) { - // Small objects cannot be fragmented and need to go on the next page - nextPage(); - } else if ( - obj.type === ObjectType.CounterLarge - || obj.type === ObjectType.DataLarge - ) { - // Large objects may be fragmented - - // We need to start a new page, if the remaining space is not enough for - // the object header plus additional data - if (remainingSpace <= NVM3_OBJ_HEADER_SIZE_LARGE) nextPage(); - - fragments = fragmentLargeObject( - obj as any, - remainingSpace, - pageSize - NVM3_PAGE_HEADER_SIZE, - ); - } - if (!fragments) fragments = [obj]; - - for (const fragment of fragments) { - const objBuffer = writeObject(fragment); - objBuffer.copy(currentPage, offsetInPage); - incrementOffset(objBuffer.length); - - // Each following fragment needs to be written to a different page^ - if (fragments.length > 1) nextPage(); - } - } - }; - - if (options?.sharedFileSystem) { - const pages: Buffer[] = []; - for (let i = 0; i < ZWAVE_SHARED_NVM_SIZE / pageSize; i++) { - pages.push(createEmptyPage()); - } - - const objects = new Map([ - ...applicationObjects, - ...protocolObjects, - ]); - writeObjects(pages, objects); - - return Buffer.concat(pages); - } else { - const applicationPages: Buffer[] = []; - for (let i = 0; i < ZWAVE_APPLICATION_NVM_SIZE / pageSize; i++) { - applicationPages.push(createEmptyPage()); - } - - const protocolPages: Buffer[] = []; - for (let i = 0; i < ZWAVE_PROTOCOL_NVM_SIZE / pageSize; i++) { - protocolPages.push(createEmptyPage()); - } - - writeObjects(applicationPages, applicationObjects); - writeObjects(protocolPages, protocolObjects); - - return Buffer.concat([...applicationPages, ...protocolPages]); - } -} - -export function getNVMMeta(page: NVM3Page, sharedFileSystem: boolean): NVMMeta { - return { - sharedFileSystem, - ...pick(page.header, [ - "pageSize", - "writeSize", - "memoryMapped", - "deviceFamily", - ]), - }; -} diff --git a/packages/nvmedit/src/nvm3/object.ts b/packages/nvmedit/src/nvm3/object.ts deleted file mode 100644 index 44db5245253f..000000000000 --- a/packages/nvmedit/src/nvm3/object.ts +++ /dev/null @@ -1,260 +0,0 @@ -import { ZWaveError, ZWaveErrorCodes } from "@zwave-js/core/safe"; -import { - FragmentType, - NVM3_CODE_LARGE_SHIFT, - NVM3_CODE_SMALL_SHIFT, - NVM3_COUNTER_SIZE, - NVM3_OBJ_FRAGTYPE_MASK, - NVM3_OBJ_FRAGTYPE_SHIFT, - NVM3_OBJ_HEADER_SIZE_LARGE, - NVM3_OBJ_HEADER_SIZE_SMALL, - NVM3_OBJ_KEY_MASK, - NVM3_OBJ_KEY_SHIFT, - NVM3_OBJ_LARGE_LEN_MASK, - NVM3_OBJ_TYPE_MASK, - NVM3_WORD_SIZE, - ObjectType, -} from "./consts"; -import { - computeBergerCode, - computeBergerCodeMulti, - validateBergerCodeMulti, -} from "./utils"; - -export interface NVM3Object { - type: ObjectType; - fragmentType: FragmentType; - key: number; - data?: Buffer; -} - -export function readObject( - buffer: Buffer, - offset: number, -): - | { - object: NVM3Object; - bytesRead: number; - } - | undefined -{ - let headerSize = 4; - const hdr1 = buffer.readUInt32LE(offset); - - // Skip over blank page areas - if (hdr1 === 0xffffffff) return; - - const key = (hdr1 >> NVM3_OBJ_KEY_SHIFT) & NVM3_OBJ_KEY_MASK; - let objType: ObjectType = hdr1 & NVM3_OBJ_TYPE_MASK; - let fragmentLength = 0; - let hdr2: number | undefined; - const isLarge = objType === ObjectType.DataLarge - || objType === ObjectType.CounterLarge; - if (isLarge) { - hdr2 = buffer.readUInt32LE(offset + 4); - headerSize += 4; - fragmentLength = hdr2 & NVM3_OBJ_LARGE_LEN_MASK; - } else if (objType > ObjectType.DataSmall) { - // In small objects with data, the length and object type are stored in the same value - fragmentLength = objType - ObjectType.DataSmall; - objType = ObjectType.DataSmall; - } else if (objType === ObjectType.CounterSmall) { - fragmentLength = NVM3_COUNTER_SIZE; - } - - const fragmentType: FragmentType = isLarge - ? (hdr1 >>> NVM3_OBJ_FRAGTYPE_SHIFT) & NVM3_OBJ_FRAGTYPE_MASK - : FragmentType.None; - - if (isLarge) { - validateBergerCodeMulti([hdr1, hdr2!], 32 + NVM3_CODE_LARGE_SHIFT); - } else { - validateBergerCodeMulti([hdr1], NVM3_CODE_SMALL_SHIFT); - } - - if (buffer.length < offset + headerSize + fragmentLength) { - throw new ZWaveError( - "Incomplete object in buffer!", - ZWaveErrorCodes.NVM_InvalidFormat, - ); - } - - let data: Buffer | undefined; - if (fragmentLength > 0) { - data = buffer.subarray( - offset + headerSize, - offset + headerSize + fragmentLength, - ); - } - - const alignedLength = (fragmentLength + NVM3_WORD_SIZE - 1) - & ~(NVM3_WORD_SIZE - 1); - const bytesRead = headerSize + alignedLength; - - const obj: NVM3Object = { - type: objType, - fragmentType, - key, - data, - }; - return { - object: obj, - bytesRead, - }; -} - -export function readObjects(buffer: Buffer): { - objects: NVM3Object[]; - bytesRead: number; -} { - let offset = 0; - const objects: NVM3Object[] = []; - while (offset < buffer.length) { - const result = readObject(buffer, offset); - if (!result) break; - - const { object, bytesRead } = result; - objects.push(object); - - offset += bytesRead; - } - - return { - objects, - bytesRead: offset, - }; -} - -export function writeObject(obj: NVM3Object): Buffer { - const isLarge = obj.type === ObjectType.DataLarge - || obj.type === ObjectType.CounterLarge; - const headerSize = isLarge - ? NVM3_OBJ_HEADER_SIZE_LARGE - : NVM3_OBJ_HEADER_SIZE_SMALL; - const dataLength = obj.data?.length ?? 0; - const ret = Buffer.allocUnsafe(dataLength + headerSize); - - // Write header - if (isLarge) { - let hdr2 = dataLength & NVM3_OBJ_LARGE_LEN_MASK; - - const hdr1 = (obj.type & NVM3_OBJ_TYPE_MASK) - | ((obj.key & NVM3_OBJ_KEY_MASK) << NVM3_OBJ_KEY_SHIFT) - | ((obj.fragmentType & NVM3_OBJ_FRAGTYPE_MASK) - << NVM3_OBJ_FRAGTYPE_SHIFT); - - const bergerCode = computeBergerCodeMulti( - [hdr1, hdr2], - 32 + NVM3_CODE_LARGE_SHIFT, - ); - hdr2 |= bergerCode << NVM3_CODE_LARGE_SHIFT; - - ret.writeInt32LE(hdr1, 0); - ret.writeInt32LE(hdr2, 4); - } else { - let typeAndLen = obj.type; - if (typeAndLen === ObjectType.DataSmall && dataLength > 0) { - typeAndLen += dataLength; - } - let hdr1 = (typeAndLen & NVM3_OBJ_TYPE_MASK) - | ((obj.key & NVM3_OBJ_KEY_MASK) << NVM3_OBJ_KEY_SHIFT); - const bergerCode = computeBergerCode(hdr1, NVM3_CODE_SMALL_SHIFT); - hdr1 |= bergerCode << NVM3_CODE_SMALL_SHIFT; - - ret.writeInt32LE(hdr1, 0); - } - - // Write data - if (obj.data) { - obj.data.copy(ret, headerSize); - } - return ret; -} - -export function fragmentLargeObject( - obj: NVM3Object & { type: ObjectType.DataLarge | ObjectType.CounterLarge }, - maxFirstFragmentSizeWithHeader: number, - maxFragmentSizeWithHeader: number, -): NVM3Object[] { - const ret: NVM3Object[] = []; - - if ( - obj.data!.length + NVM3_OBJ_HEADER_SIZE_LARGE - <= maxFirstFragmentSizeWithHeader - ) { - return [obj]; - } - - let offset = 0; - while (offset < obj.data!.length) { - const fragmentSize = offset === 0 - ? maxFirstFragmentSizeWithHeader - NVM3_OBJ_HEADER_SIZE_LARGE - : maxFragmentSizeWithHeader - NVM3_OBJ_HEADER_SIZE_LARGE; - const data = obj.data!.subarray(offset, offset + fragmentSize); - - ret.push({ - type: obj.type, - key: obj.key, - fragmentType: offset === 0 - ? FragmentType.First - : data.length + NVM3_OBJ_HEADER_SIZE_LARGE - < maxFragmentSizeWithHeader - ? FragmentType.Last - : FragmentType.Next, - data, - }); - - offset += fragmentSize; - } - - return ret; -} - -/** - * Takes the raw list of objects from the pages ring buffer and compresses - * them so that each object is only stored once. - */ -// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types -export function compressObjects(objects: NVM3Object[]) { - const ret = new Map(); - // Only insert valid objects. This means non-fragmented ones, non-deleted ones - // and fragmented ones in the correct and complete order - outer: for (let i = 0; i < objects.length; i++) { - const obj = objects[i]; - if (obj.type === ObjectType.Deleted) { - ret.delete(obj.key); - continue; - } else if (obj.fragmentType === FragmentType.None) { - ret.set(obj.key, obj); - continue; - } else if (obj.fragmentType !== FragmentType.First || !obj.data) { - // This is the broken rest of an overwritten object, skip it - continue; - } - - // We're looking at the first fragment of a fragmented object - const parts: Buffer[] = [obj.data]; - for (let j = i + 1; j < objects.length; j++) { - // The next objects must have the same key and either be the - // next or the last fragment with data - const next = objects[j]; - if (next.key !== obj.key || !next.data) { - // Invalid object, skipping - continue outer; - } else if (next.fragmentType === FragmentType.Next) { - parts.push(next.data); - } else if (next.fragmentType === FragmentType.Last) { - parts.push(next.data); - break; - } - } - // Combine all fragments into a single readable object - ret.set(obj.key, { - key: obj.key, - fragmentType: FragmentType.None, - type: obj.type, - data: Buffer.concat(parts), - }); - } - return ret; -} diff --git a/packages/nvmedit/src/nvm3/page.ts b/packages/nvmedit/src/nvm3/page.ts deleted file mode 100644 index 4e967f1b80a6..000000000000 --- a/packages/nvmedit/src/nvm3/page.ts +++ /dev/null @@ -1,213 +0,0 @@ -import { ZWaveError, ZWaveErrorCodes } from "@zwave-js/core/safe"; -import { - NVM3_MIN_PAGE_SIZE, - NVM3_PAGE_COUNTER_MASK, - NVM3_PAGE_COUNTER_SIZE, - NVM3_PAGE_HEADER_SIZE, - NVM3_PAGE_MAGIC, - type PageStatus, - type PageWriteSize, -} from "./consts"; -import { type NVM3Object, readObjects } from "./object"; -import { computeBergerCode, validateBergerCode } from "./utils"; - -export interface NVM3PageHeader { - offset: number; - version: number; - eraseCount: number; - status: PageStatus; - encrypted: boolean; - pageSize: number; - writeSize: PageWriteSize; - memoryMapped: boolean; - deviceFamily: number; -} - -export interface NVM3Page { - header: NVM3PageHeader; - objects: NVM3Object[]; -} - -// The page size field has a value from 0 to 7 describing page sizes from 512 to 65536 bytes -export function pageSizeToBits(pageSize: number): number { - return Math.ceil(Math.log2(pageSize) - Math.log2(NVM3_MIN_PAGE_SIZE)); -} - -export function pageSizeFromBits(bits: number): number { - return NVM3_MIN_PAGE_SIZE * Math.pow(2, bits); -} - -export function readPage( - buffer: Buffer, - offset: number, -): { page: NVM3Page; bytesRead: number } { - const { version, eraseCount } = tryGetVersionAndEraseCount(buffer, offset); - - // Page status - const status = buffer.readUInt32LE(offset + 12); - - const devInfo = buffer.readUInt16LE(offset + 16); - const deviceFamily = devInfo & 0x7ff; - const writeSize = (devInfo >> 11) & 0b1; - const memoryMapped = !!((devInfo >> 12) & 0b1); - let pageSize = pageSizeFromBits((devInfo >> 13) & 0b111); - - if (pageSize > 0xffff) { - // Some controllers have no valid info in the page size bits, resulting - // in an impossibly large page size. To try and figure out the actual page - // size without knowing the hardware, we scan the buffer for the next valid - // page start. - for (let exponent = 0; exponent < 0b111; exponent++) { - const testPageSize = pageSizeFromBits(exponent); - const nextOffset = offset + testPageSize; - if ( - // exactly end of NVM OR - buffer.length === nextOffset - // next page - || isValidPageHeaderAtOffset(buffer, nextOffset) - ) { - pageSize = testPageSize; - break; - } - } - } - if (pageSize > 0xffff) { - throw new ZWaveError( - "Could not determine page size!", - ZWaveErrorCodes.NVM_InvalidFormat, - ); - } - - if (buffer.length < offset + pageSize) { - throw new ZWaveError( - "Incomplete page in buffer!", - ZWaveErrorCodes.NVM_InvalidFormat, - ); - } - - const formatInfo = buffer.readUInt16LE(offset + 18); - - const encrypted = !(formatInfo & 0b1); - - const header: NVM3PageHeader = { - offset, - version, - eraseCount, - status, - encrypted, - pageSize, - writeSize, - memoryMapped, - deviceFamily, - }; - const bytesRead = pageSize; - const data = buffer.subarray(offset + 20, offset + bytesRead); - - const { objects } = readObjects(data); - - return { - page: { header, objects }, - bytesRead, - }; -} - -function tryGetVersionAndEraseCount( - buffer: Buffer, - offset: number, -): { version: number; eraseCount: number } { - if (offset > buffer.length - NVM3_PAGE_HEADER_SIZE) { - throw new ZWaveError( - "Incomplete page in buffer!", - ZWaveErrorCodes.NVM_InvalidFormat, - ); - } - - const version = buffer.readUInt16LE(offset); - const magic = buffer.readUInt16LE(offset + 2); - if (magic !== NVM3_PAGE_MAGIC) { - throw new ZWaveError( - "Not a valid NVM3 page!", - ZWaveErrorCodes.NVM_InvalidFormat, - ); - } - if (version !== 0x01) { - throw new ZWaveError( - `Unsupported NVM3 page version: ${version}`, - ZWaveErrorCodes.NVM_NotSupported, - ); - } - - // The erase counter is saved twice, once normally, once inverted - let eraseCount = buffer.readUInt32LE(offset + 4); - const eraseCountCode = eraseCount >>> NVM3_PAGE_COUNTER_SIZE; - eraseCount &= NVM3_PAGE_COUNTER_MASK; - validateBergerCode(eraseCount, eraseCountCode, NVM3_PAGE_COUNTER_SIZE); - - let eraseCountInv = buffer.readUInt32LE(offset + 8); - const eraseCountInvCode = eraseCountInv >>> NVM3_PAGE_COUNTER_SIZE; - eraseCountInv &= NVM3_PAGE_COUNTER_MASK; - validateBergerCode( - eraseCountInv, - eraseCountInvCode, - NVM3_PAGE_COUNTER_SIZE, - ); - - if (eraseCount !== (~eraseCountInv & NVM3_PAGE_COUNTER_MASK)) { - throw new ZWaveError( - "Invalid erase count!", - ZWaveErrorCodes.NVM_InvalidFormat, - ); - } - - return { version, eraseCount }; -} - -function isValidPageHeaderAtOffset( - buffer: Buffer, - offset: number, -): boolean { - try { - tryGetVersionAndEraseCount(buffer, offset); - return true; - } catch { - return false; - } -} - -export function writePageHeader( - header: Omit, -): Buffer { - const ret = Buffer.alloc(NVM3_PAGE_HEADER_SIZE); - - ret.writeUInt16LE(header.version, 0); - ret.writeUInt16LE(NVM3_PAGE_MAGIC, 2); - - let eraseCount = header.eraseCount & NVM3_PAGE_COUNTER_MASK; - const eraseCountCode = computeBergerCode( - eraseCount, - NVM3_PAGE_COUNTER_SIZE, - ); - eraseCount |= eraseCountCode << NVM3_PAGE_COUNTER_SIZE; - ret.writeInt32LE(eraseCount, 4); - - let eraseCountInv = ~header.eraseCount & NVM3_PAGE_COUNTER_MASK; - const eraseCountInvCode = computeBergerCode( - eraseCountInv, - NVM3_PAGE_COUNTER_SIZE, - ); - eraseCountInv |= eraseCountInvCode << NVM3_PAGE_COUNTER_SIZE; - ret.writeInt32LE(eraseCountInv, 8); - - ret.writeUInt32LE(header.status, 12); - - const devInfo = (header.deviceFamily & 0x7ff) - | ((header.writeSize & 0b1) << 11) - | ((header.memoryMapped ? 1 : 0) << 12) - | (pageSizeToBits(header.pageSize) << 13); - ret.writeUInt16LE(devInfo, 16); - - const formatInfo = header.encrypted ? 0xfffe : 0xffff; - ret.writeUInt16LE(formatInfo, 18); - - return ret; -} diff --git a/packages/nvmedit/src/nvm500/NVMParser.ts b/packages/nvmedit/src/nvm500/NVMParser.ts index 1fb81943592a..1770a680c706 100644 --- a/packages/nvmedit/src/nvm500/NVMParser.ts +++ b/packages/nvmedit/src/nvm500/NVMParser.ts @@ -1,726 +1,9 @@ -import { - type CommandClasses, - MAX_NODES, - ZWaveError, - ZWaveErrorCodes, - encodeBitMask, - parseBitMask, -} from "@zwave-js/core/safe"; -import { num2hex, pick, sum } from "@zwave-js/shared/safe"; -import { SUC_MAX_UPDATES } from "../consts"; -import { nodeHasInfo } from "../convert"; -import { - type Route, - type SUCUpdateEntry, - encodeRoute, - encodeSUCUpdateEntry, - parseRoute, - parseSUCUpdateEntry, -} from "../files"; -import { - type NVM500NodeInfo, - type NVMDescriptor, - type NVMModuleDescriptor, - encodeNVM500NodeInfo, - encodeNVMDescriptor, - encodeNVMModuleDescriptor, - parseNVM500NodeInfo, - parseNVMDescriptor, - parseNVMModuleDescriptor, -} from "./EntryParsers"; -import { Bridge_6_6x } from "./parsers/Bridge_6_6x"; -import { Bridge_6_7x } from "./parsers/Bridge_6_7x"; -import { Bridge_6_8x } from "./parsers/Bridge_6_8x"; -import { Static_6_6x } from "./parsers/Static_6_6x"; -import { Static_6_7x } from "./parsers/Static_6_7x"; -import { Static_6_8x } from "./parsers/Static_6_8x"; -import { - APPL_NODEPARM_MAX, - CONFIGURATION_VALID_0, - CONFIGURATION_VALID_1, - MAGIC_VALUE, - type NVMData, - type NVMEntryName, - NVMEntrySizes, - NVMEntryType, - type NVMLayout, - NVMModuleType, - NVM_SERIALAPI_HOST_SIZE, - type ParsedNVMEntry, - ROUTECACHE_VALID, -} from "./shared"; +import { type CommandClasses } from "@zwave-js/core/safe"; +import { type Route } from "../lib/common/routeCache"; +import { type SUCUpdateEntry } from "../lib/common/sucUpdateEntry"; +import { type NVM500NodeInfo } from "../lib/nvm500/EntryParsers"; +import { type NVM500Impl } from "../lib/nvm500/shared"; -export interface NVM500Details { - name: string; - library: "static" | "bridge"; - protocolVersions: string[]; - layout: NVMLayout; -} - -export const nmvDetails500 = [ - Bridge_6_6x, - Bridge_6_7x, - Bridge_6_8x, - Static_6_6x, - Static_6_7x, - Static_6_8x, -] as const; - -/** Detects which parser is able to parse the given NVM */ -export function createParser(nvm: Buffer): NVMParser | undefined { - for (const impl of nmvDetails500) { - try { - const parser = new NVMParser(impl, nvm); - return parser; - } catch { - continue; - } - } -} - -export class NVMParser { - public constructor(private readonly impl: NVM500Details, nvm: Buffer) { - this.parse(nvm); - if (!this.isValid()) { - throw new ZWaveError( - "Invalid NVM!", - ZWaveErrorCodes.NVM_InvalidFormat, - ); - } - } - - /** Tests if the given NVM is a valid NVM for this parser version */ - private isValid(): boolean { - // Checking if an NVM is valid requires checking multiple bytes at different locations - const eeoffset_magic = this.cache.get("EEOFFSET_MAGIC_far") - ?.data[0] as number; - const configuration_valid_0 = this.cache.get( - "NVM_CONFIGURATION_VALID_far", - )?.data[0] as number; - const configuration_valid_1 = this.cache.get( - "NVM_CONFIGURATION_REALLYVALID_far", - )?.data[0] as number; - const routecache_valid = this.cache.get("EX_NVM_ROUTECACHE_MAGIC_far") - ?.data[0] as number; - const nvm = this.cache.get("nvmDescriptor")?.data[0] as NVMDescriptor; - const endMarker = this.cache.get("nvmModuleSizeEndMarker") - ?.data[0] as number; - - return ( - eeoffset_magic === MAGIC_VALUE - && configuration_valid_0 === CONFIGURATION_VALID_0 - && configuration_valid_1 === CONFIGURATION_VALID_1 - && routecache_valid === ROUTECACHE_VALID - && this.impl.protocolVersions.includes(nvm.protocolVersion) - && endMarker === 0 - ); - } - - private cache = new Map(); - - private parse(nvm: Buffer): void { - let offset = 0; - let moduleStart = -1; - let moduleSize = -1; - - const nvmEnd = nvm.readUInt16BE(0); - - for (const entry of this.impl.layout) { - const size = entry.size ?? NVMEntrySizes[entry.type]; - - if (entry.type === NVMEntryType.NVMModuleSize) { - if (moduleStart !== -1) { - // All following NVM modules must start at the last module's end - offset = moduleStart + moduleSize; - } - - moduleStart = offset; - moduleSize = nvm.readUInt16BE(offset); - } else if (entry.type === NVMEntryType.NVMModuleDescriptor) { - // The module descriptor is always at the end of the module - offset = moduleStart + moduleSize - size; - } - - if (entry.offset != undefined && entry.offset !== offset) { - // The entry has a defined offset but is at the wrong location - throw new ZWaveError( - `${entry.name} is at wrong location in NVM buffer!`, - ZWaveErrorCodes.NVM_InvalidFormat, - ); - } - - const data: Buffer[] = []; - for (let i = 0; i < entry.count; i++) { - data.push( - nvm.subarray(offset + i * size, offset + (i + 1) * size), - ); - } - const converted = data.map((buffer) => { - switch (entry.type) { - case NVMEntryType.Byte: - return buffer.readUInt8(0); - case NVMEntryType.Word: - case NVMEntryType.NVMModuleSize: - return buffer.readUInt16BE(0); - case NVMEntryType.DWord: - return buffer.readUInt32BE(0); - case NVMEntryType.NodeInfo: - if (buffer.every((byte) => byte === 0)) { - return undefined; - } - return parseNVM500NodeInfo(buffer, 0); - case NVMEntryType.NodeMask: - return parseBitMask(buffer); - case NVMEntryType.SUCUpdateEntry: - if (buffer.every((byte) => byte === 0)) { - return undefined; - } - return parseSUCUpdateEntry(buffer, 0); - case NVMEntryType.Route: - if (buffer.every((byte) => byte === 0)) { - return undefined; - } - return parseRoute(buffer, 0); - case NVMEntryType.NVMModuleDescriptor: { - const ret = parseNVMModuleDescriptor(buffer); - if (ret.size !== moduleSize) { - throw new ZWaveError( - "NVM module descriptor size does not match module size!", - ZWaveErrorCodes.NVM_InvalidFormat, - ); - } - return ret; - } - case NVMEntryType.NVMDescriptor: - return parseNVMDescriptor(buffer); - default: - // This includes NVMEntryType.BUFFER - return buffer; - } - }); - this.cache.set(entry.name, { - ...entry, - data: converted, - }); - - // Skip forward - offset += size * entry.count; - if (offset >= nvmEnd) return; - } - } - - private getOne(key: NVMEntryName): T { - return this.cache.get(key)?.data[0] as T; - } - - private getAll( - key: NVMEntryName, - ): T extends Buffer ? T : T[] { - return this.cache.get(key)?.data as any; - } - - public toJSON(): Required { - const nvmDescriptor = this.getOne("nvmDescriptor"); - const ownHomeId = this.getOne("EX_NVM_HOME_ID_far"); - const learnedHomeId = this.getOne("NVM_HOMEID_far"); - - const lastNodeId = this.getOne( - "EX_NVM_LAST_USED_NODE_ID_START_far", - ); - const maxNodeId = this.getOne("EX_NVM_MAX_NODE_ID_far"); - - const nodeInfos = this.getAll( - "EX_NVM_NODE_TABLE_START_far", - ); - const sucUpdateIndizes = this.getAll( - "EX_NVM_SUC_CONTROLLER_LIST_START_far", - ); - const appRouteLock = new Set( - this.getOne("EX_NVM_ROUTECACHE_APP_LOCK_far"), - ); - const routeSlaveSUC = new Set( - this.getOne("EX_NVM_SUC_ROUTING_SLAVE_LIST_START_far"), - ); - const pendingDiscovery = new Set( - this.getOne("NVM_PENDING_DISCOVERY_far"), - ); - const sucPendingUpdate = new Set( - this.getOne("EX_NVM_PENDING_UPDATE_far"), - ); - const virtualNodes = new Set( - this.getOne("EX_NVM_BRIDGE_NODEPOOL_START_far") ?? [], - ); - const lwr = this.getAll("EX_NVM_ROUTECACHE_START_far"); - const nlwr = this.getAll("EX_NVM_ROUTECACHE_NLWR_SR_START_far"); - const neighbors = this.getAll( - "EX_NVM_ROUTING_TABLE_START_far", - ); - - const numCCs = this.getOne("EEOFFSET_CMDCLASS_LEN_far"); - const commandClasses = this.getAll( - "EEOFFSET_CMDCLASS_far", - ).slice(0, numCCs); - - const nodes: Record = {}; - for (let nodeId = 1; nodeId <= MAX_NODES; nodeId++) { - const nodeInfo = nodeInfos[nodeId - 1]; - const isVirtual = virtualNodes.has(nodeId); - if (!nodeInfo) { - if (isVirtual) { - nodes[nodeId] = { isVirtual: true }; - } - continue; - } - - nodes[nodeId] = { - ...nodeInfo, - isVirtual, - - neighbors: neighbors[nodeId - 1] ?? [], - sucUpdateIndex: sucUpdateIndizes[nodeId - 1], - - appRouteLock: appRouteLock.has(nodeId), - routeSlaveSUC: routeSlaveSUC.has(nodeId), - sucPendingUpdate: sucPendingUpdate.has(nodeId), - pendingDiscovery: pendingDiscovery.has(nodeId), - - lwr: lwr[nodeId - 1] ?? null, - nlwr: nlwr[nodeId - 1] ?? null, - }; - } - - return { - format: 500, - meta: { - library: this.impl.library, - ...pick(nvmDescriptor, [ - "manufacturerID", - "firmwareID", - "productType", - "productID", - ]), - }, - controller: { - protocolVersion: nvmDescriptor.protocolVersion, - applicationVersion: nvmDescriptor.firmwareVersion, - ownHomeId: num2hex(ownHomeId), - learnedHomeId: learnedHomeId ? num2hex(learnedHomeId) : null, - nodeId: this.getOne("NVM_NODEID_far"), - lastNodeId, - staticControllerNodeId: this.getOne( - "EX_NVM_STATIC_CONTROLLER_NODE_ID_START_far", - ), - sucLastIndex: this.getOne( - "EX_NVM_SUC_LAST_INDEX_START_far", - ), - controllerConfiguration: this.getOne( - "EX_NVM_CONTROLLER_CONFIGURATION_far", - ), - sucUpdateEntries: this.getAll( - "EX_NVM_SUC_NODE_LIST_START_far", - ).filter(Boolean), - maxNodeId, - reservedId: this.getOne("EX_NVM_RESERVED_ID_far"), - systemState: this.getOne("NVM_SYSTEM_STATE"), - watchdogStarted: this.getOne( - "EEOFFSET_WATCHDOG_STARTED_far", - ), - rfConfig: { - powerLevelNormal: this.getAll( - "EEOFFSET_POWERLEVEL_NORMAL_far", - ), - powerLevelLow: this.getAll( - "EEOFFSET_POWERLEVEL_LOW_far", - ), - powerMode: this.getOne( - "EEOFFSET_MODULE_POWER_MODE_far", - ), - powerModeExtintEnable: this.getOne( - "EEOFFSET_MODULE_POWER_MODE_EXTINT_ENABLE_far", - ), - powerModeWutTimeout: this.getOne( - "EEOFFSET_MODULE_POWER_MODE_WUT_TIMEOUT_far", - ), - }, - preferredRepeaters: this.getOne( - "NVM_PREFERRED_REPEATERS_far", - ), - - commandClasses, - applicationData: this.getOne( - "EEOFFSET_HOST_OFFSET_START_far", - ).toString("hex"), - }, - nodes, - }; - } -} - -export class NVMSerializer { - public constructor(private readonly impl: NVM500Details) {} - public readonly entries = new Map(); - private nvmSize: number = 0; - - private setOne(key: NVMEntryName, value: T) { - const entry = this.impl.layout.find((e) => e.name === key); - // Skip entries not present in this layout - if (!entry) return; - - this.entries.set(key, { - ...entry, - data: [value], - }); - } - - private setMany(key: NVMEntryName, value: T[]) { - const entry = this.impl.layout.find((e) => e.name === key); - // Skip entries not present in this layout - if (!entry) return; - - this.entries.set(key, { - ...entry, - data: value, - }); - } - - private setFromNodeMap( - key: NVMEntryName, - map: Map, - fill?: number, - ) { - const entry = this.impl.layout.find((e) => e.name === key); - // Skip entries not present in this layout - if (!entry) return; - - const data: (T | undefined)[] = new Array(MAX_NODES).fill(fill); - for (const [nodeId, value] of map) { - data[nodeId - 1] = value; - } - - this.entries.set(key, { - ...entry, - data, - }); - } - - private fill(key: NVMEntryName, value: number) { - const entry = this.impl.layout.find((e) => e.name === key); - // Skip entries not present in this layout - if (!entry) return; - - const size = entry.size ?? NVMEntrySizes[entry.type]; - const data: any[] = []; - for (let i = 1; i <= entry.count; i++) { - switch (entry.type) { - case NVMEntryType.Byte: - case NVMEntryType.Word: - case NVMEntryType.DWord: - data.push(value); - break; - case NVMEntryType.Buffer: - data.push(Buffer.alloc(size, value)); - break; - case NVMEntryType.NodeMask: - // This ignores the fill value - data.push(new Array(size).fill(0)); - break; - default: - throw new Error( - `Cannot fill entry of type ${NVMEntryType[entry.type]}`, - ); - } - } - this.entries.set(key, { - ...entry, - data, - }); - } - - public parseJSON( - json: Required, - protocolVersion: string, - ): void { - this.entries.clear(); - - // Set controller infos - const c = json.controller; - this.setOne( - "EX_NVM_HOME_ID_far", - parseInt(c.ownHomeId.replace(/^0x/, ""), 16), - ); - if (c.learnedHomeId) { - this.setOne( - "NVM_HOMEID_far", - parseInt(c.learnedHomeId.replace(/^0x/, ""), 16), - ); - } else { - this.setOne("NVM_HOMEID_far", 0); - } - this.setOne("EX_NVM_LAST_USED_NODE_ID_START_far", c.lastNodeId); - this.setOne("NVM_NODEID_far", c.nodeId); - this.setOne( - "EX_NVM_STATIC_CONTROLLER_NODE_ID_START_far", - c.staticControllerNodeId, - ); - this.setOne("EX_NVM_SUC_LAST_INDEX_START_far", c.sucLastIndex); - this.setOne( - "EX_NVM_CONTROLLER_CONFIGURATION_far", - c.controllerConfiguration, - ); - - const sucUpdateEntries = new Array(SUC_MAX_UPDATES).fill(undefined); - for (let i = 0; i < c.sucUpdateEntries.length; i++) { - if (i < SUC_MAX_UPDATES) { - sucUpdateEntries[i] = c.sucUpdateEntries[i]; - } - } - this.setMany("EX_NVM_SUC_NODE_LIST_START_far", sucUpdateEntries); - - this.setOne("EX_NVM_MAX_NODE_ID_far", c.maxNodeId); - this.setOne("EX_NVM_RESERVED_ID_far", c.reservedId); - this.setOne("NVM_SYSTEM_STATE", c.systemState); - this.setOne("EEOFFSET_WATCHDOG_STARTED_far", c.watchdogStarted); - - this.setMany( - "EEOFFSET_POWERLEVEL_NORMAL_far", - c.rfConfig.powerLevelNormal, - ); - this.setMany("EEOFFSET_POWERLEVEL_LOW_far", c.rfConfig.powerLevelLow); - this.setOne("EEOFFSET_MODULE_POWER_MODE_far", c.rfConfig.powerMode); - this.setOne( - "EEOFFSET_MODULE_POWER_MODE_EXTINT_ENABLE_far", - c.rfConfig.powerModeExtintEnable, - ); - this.setOne( - "EEOFFSET_MODULE_POWER_MODE_WUT_TIMEOUT_far", - c.rfConfig.powerModeWutTimeout, - ); - - this.setOne("NVM_PREFERRED_REPEATERS_far", c.preferredRepeaters); - - this.setOne("EEOFFSET_CMDCLASS_LEN_far", c.commandClasses.length); - const CCs = new Array(APPL_NODEPARM_MAX).fill(0xff); - for (let i = 0; i < c.commandClasses.length; i++) { - if (i < APPL_NODEPARM_MAX) { - CCs[i] = c.commandClasses[i]; - } - } - this.setMany("EEOFFSET_CMDCLASS_far", CCs); - - if (c.applicationData) { - this.setOne( - "EEOFFSET_HOST_OFFSET_START_far", - Buffer.from(c.applicationData, "hex"), - ); - } else { - this.setOne( - "EEOFFSET_HOST_OFFSET_START_far", - Buffer.alloc(NVM_SERIALAPI_HOST_SIZE, 0xff), - ); - } - - // Set node infos - const nodeInfos = new Map(); - const sucUpdateIndizes = new Map(); - const appRouteLock: number[] = []; - const routeSlaveSUC: number[] = []; - const pendingDiscovery: number[] = []; - const sucPendingUpdate: number[] = []; - const virtualNodes: number[] = []; - const lwr = new Map(); - const nlwr = new Map(); - const neighbors = new Map(); - - for (const [id, node] of Object.entries(json.nodes)) { - const nodeId = parseInt(id); - if (!nodeHasInfo(node)) { - virtualNodes.push(nodeId); - continue; - } - - nodeInfos.set( - nodeId, - pick(node, [ - "isListening", - "isFrequentListening", - "isRouting", - "supportedDataRates", - "protocolVersion", - "optionalFunctionality", - "nodeType", - "supportsSecurity", - "supportsBeaming", - "genericDeviceClass", - "specificDeviceClass", - ]), - ); - sucUpdateIndizes.set(nodeId, node.sucUpdateIndex); - if (node.appRouteLock) appRouteLock.push(nodeId); - if (node.routeSlaveSUC) routeSlaveSUC.push(nodeId); - if (node.pendingDiscovery) pendingDiscovery.push(nodeId); - if (node.sucPendingUpdate) sucPendingUpdate.push(nodeId); - if (node.lwr) lwr.set(nodeId, node.lwr); - if (node.nlwr) nlwr.set(nodeId, node.nlwr); - neighbors.set(nodeId, node.neighbors); - } - - this.setFromNodeMap( - "EX_NVM_NODE_TABLE_START_far", - nodeInfos, - ); - this.setFromNodeMap( - "EX_NVM_SUC_CONTROLLER_LIST_START_far", - sucUpdateIndizes, - 0xfe, - ); - this.setOne("EX_NVM_ROUTECACHE_APP_LOCK_far", appRouteLock); - this.setOne( - "EX_NVM_SUC_ROUTING_SLAVE_LIST_START_far", - routeSlaveSUC, - ); - this.setOne("NVM_PENDING_DISCOVERY_far", pendingDiscovery); - this.setOne("EX_NVM_PENDING_UPDATE_far", sucPendingUpdate); - this.setOne("EX_NVM_BRIDGE_NODEPOOL_START_far", virtualNodes); - this.setFromNodeMap("EX_NVM_ROUTECACHE_START_far", lwr); - this.setFromNodeMap("EX_NVM_ROUTECACHE_NLWR_SR_START_far", nlwr); - this.setFromNodeMap("EX_NVM_ROUTING_TABLE_START_far", neighbors); - - // Set some entries that are always identical - this.setOne("NVM_CONFIGURATION_VALID_far", CONFIGURATION_VALID_0); - this.setOne("NVM_CONFIGURATION_REALLYVALID_far", CONFIGURATION_VALID_1); - this.setOne("EEOFFSET_MAGIC_far", MAGIC_VALUE); - this.setOne("EX_NVM_ROUTECACHE_MAGIC_far", ROUTECACHE_VALID); - this.setOne("nvmModuleSizeEndMarker", 0); - - // Set NVM descriptor - this.setOne("nvmDescriptor", { - ...pick(json.meta, [ - "manufacturerID", - "productType", - "productID", - "firmwareID", - ]), - // Override the protocol version with the specified one - protocolVersion, - firmwareVersion: c.applicationVersion, - }); - - // Set dummy entries we're never going to fill - this.fill("NVM_INTERNAL_RESERVED_1_far", 0); - this.fill("NVM_INTERNAL_RESERVED_2_far", 0xff); - this.fill("NVM_INTERNAL_RESERVED_3_far", 0); - this.fill("NVM_RTC_TIMERS_far", 0); - this.fill("EX_NVM_SUC_ACTIVE_START_far", 0); - this.fill("EX_NVM_ZENSOR_TABLE_START_far", 0); - this.fill("NVM_SECURITY0_KEY_far", 0); - - // Auto-compute some fields - const entrySizes = this.impl.layout.map( - (e) => e.count * (e.size ?? NVMEntrySizes[e.type]), - ); - this.nvmSize = sum(entrySizes); - this.setOne("nvmTotalEnd", this.nvmSize - 1); // the value points to the last byte - - let moduleSize = 0; - let moduleKey: NVMEntryName; - for (let i = 0; i < this.impl.layout.length; i++) { - const entry = this.impl.layout[i]; - if (entry.type === NVMEntryType.NVMModuleSize) { - // Start of NVM module - moduleSize = 0; - moduleKey = entry.name; - } - moduleSize += entrySizes[i]; - if (entry.type === NVMEntryType.NVMModuleDescriptor) { - // End of NVM module - // set size at the start - this.setOne(moduleKey!, moduleSize); - // and descriptor at the end - const moduleType = entry.name === "nvmZWlibraryDescriptor" - ? NVMModuleType.ZW_LIBRARY - : entry.name === "nvmApplicationDescriptor" - ? NVMModuleType.APPLICATION - : entry.name === "nvmHostApplicationDescriptor" - ? NVMModuleType.HOST_APPLICATION - : entry.name === "nvmDescriptorDescriptor" - ? NVMModuleType.NVM_DESCRIPTOR - : 0; - this.setOne(entry.name, { - size: moduleSize, - type: moduleType, - version: entry.name === "nvmZWlibraryDescriptor" - ? c.protocolVersion - : c.applicationVersion, - }); - } - } - } - - public serialize(): Buffer { - const ret = Buffer.alloc(this.nvmSize, 0xff); - let offset = 0; - - for (const entry of this.impl.layout) { - // In 500 NVMs there are no optional entries. Make sure they all exist - const value = this.entries.get(entry.name); - if (value == undefined) { - throw new Error(`Required entry ${entry.name} is missing`); - } - - const size = entry.size ?? NVMEntrySizes[entry.type]; - - const converted: Buffer[] = value.data.map((data) => { - switch (entry.type) { - case NVMEntryType.Byte: - return Buffer.from([data as number]); - case NVMEntryType.Word: - case NVMEntryType.NVMModuleSize: { - const ret = Buffer.allocUnsafe(2); - ret.writeUInt16BE(data as number, 0); - return ret; - } - case NVMEntryType.DWord: { - const ret = Buffer.allocUnsafe(4); - ret.writeUInt32BE(data as number, 0); - return ret; - } - case NVMEntryType.NodeInfo: - return data - ? encodeNVM500NodeInfo(data as NVM500NodeInfo) - : Buffer.alloc(size, 0); - case NVMEntryType.NodeMask: { - const ret = Buffer.alloc(size, 0); - if (data) { - encodeBitMask(data as number[], MAX_NODES, 1).copy( - ret, - 0, - ); - } - return ret; - } - case NVMEntryType.SUCUpdateEntry: - return encodeSUCUpdateEntry(data as SUCUpdateEntry); - case NVMEntryType.Route: - return encodeRoute(data as Route); - case NVMEntryType.NVMModuleDescriptor: - return encodeNVMModuleDescriptor( - data as NVMModuleDescriptor, - ); - case NVMEntryType.NVMDescriptor: - return encodeNVMDescriptor(data as NVMDescriptor); - case NVMEntryType.Buffer: - return data as Buffer; - } - }); - for (const buf of converted) { - buf.copy(ret, offset); - offset += size; // Not all entries have the same size as the raw buffer - } - } - - return ret; - } -} export interface NVM500JSON { // To distinguish between 700 and 500 series JSONs better format: 500; @@ -734,7 +17,7 @@ export interface NVM500Meta { firmwareID: number; productType: number; productID: number; - library: NVM500Details["library"]; + library: NVM500Impl["library"]; } export interface NVM500JSONController { diff --git a/packages/nvmedit/src/shared.ts b/packages/nvmedit/src/shared.ts deleted file mode 100644 index e69de29bb2d1..000000000000 diff --git a/packages/nvmedit/test/fixtures/nvm_700_invariants/ctrlr_backup_700_7.11.0.bin b/packages/nvmedit/test/fixtures/nvm_700_invariants/ctrlr_backup_700_7.11.0.bin index 558b933d251985ffb130b29a66accd18673319b5..3a99941edba5ef76b11e3d7e554162e7ef9988a3 100644 GIT binary patch delta 116 zcmZo@U~Xt&-XLSZ!OhUHiGiD)aq|Q-A4ZmNhOSAIH!>Mb_Og&;UBc9`%6{@f19=Vx zwg#pK28Jt>0~s48%NU$y2bfeQafnPVFbvsjz%he;6NiY#Vi687-YmlLh8+Oz9~;&H diff --git a/packages/nvmedit/test/fixtures/nvm_700_invariants/ctrlr_backup_700_7.12.0.bin b/packages/nvmedit/test/fixtures/nvm_700_invariants/ctrlr_backup_700_7.12.0.bin index b3b718476d7e1d0aa34067093a95507668e5264f..9a45fe805e544dc40626f1efcd3120b3e6958f04 100644 GIT binary patch delta 134 zcmZo@U~Xt&-XLSZ!OhUHiGhcmY4Zd#e@1Sm9tMUpm*+4FFv?GKl$o4ip)xtsLK%#6 z%v3lS*czA`7#OZh4rFYYEMst*l`DsZ;lShqL!HeMh7K%~moSM;;t=6zU~G^QVPrV6 hIgn9=aq|+U7}m`Pm`WHoafoOv7U2Nn%_1Cc*a7ITC4>L~ delta 109 zcmZo@U~Xt&-XLQzd4thuR;C74hBKQRjB{8vCoqaIvMph1Shb&jqN6nX|NsA&ur@53 z=qS6{)j*Gtl}mA{vWD MIKX(b2*(?C00Gz{{{R30 diff --git a/packages/nvmedit/test/fixtures/nvm_700_invariants/ctrlr_backup_700_7.15.4.bin b/packages/nvmedit/test/fixtures/nvm_700_invariants/ctrlr_backup_700_7.15.4.bin index b55f5feeb6a96163b77f18bbf47462a5064fbe7f..07b413cded2629dfc51cbf553c9087ee85941541 100644 GIT binary patch delta 122 zcmZo@U~Xt&-XLSZ%gxZRiJ70Bc?oO7BC*Md2J(~lm`#~1Vi7VqzgD;%awwr~pJSi;n>iW6cA_y7O@ z8Q2<_8Wuyj5mvLykQ3bHEcR) delta 131 zcmV-}0DS*|fCGSl1F#%0lPERQ1p;aRwHV(5YIEDk0d^98lqy>PY2$O*{ zAd^Wjlanwpln8(UfeI7=0LYWE0u+)s76ySDcmM#rlQc4TvoHv32a-4yldUq7law=* lliV;=lf*GplRz_6lPEM)voHvB1+oYfD5DezD6?dzSEFAy< diff --git a/packages/nvmedit/test/fixtures/nvm_700_invariants/ctrlr_backup_700_7.16.2_2.bin b/packages/nvmedit/test/fixtures/nvm_700_invariants/ctrlr_backup_700_7.16.2_2.bin index 388048e38e12940227050cb987af3baff24b0dac..afd823ee10c270933720479498809bea85ba85cc 100644 GIT binary patch delta 235 zcmZo@U~Xt&-XLSZ!OhUHiJ70BdGZXi9g}CchfEGIpDw`E!@zLn@*GA%#(R8P4>rk6 zW^|ODY+#WxS;QlRqk*vzB!6P^MkeLS_6~n1XLy8cwsF*8oV*9fNO1x(1Uy3~_c%{y z;xd@5>S7F3C^CsdgoA;#Q7VRkVbA1+&eD^MT^uK;c!q4=;sR8^1IW1J3S{tjg-m8~ zpTfF?sbSUs$#cyV*x4GG8Wsb3{;pVIf!vKNX0NS>|kI} hoNQ<;y4k?kg?aNvrVf@(93mQvML0Azi*USA2LQ>-OnLwS delta 231 zcmZo@U~Xt&-XLQznZ@=pD^mk2!9*N`LydhBhsfqNMjDKpHB5lS5>pMv$qMGvnV5Pe?=&}_{KQCX@_AF%$>tW0o6lHi zFfui;O}=NPIr#vS+vJ^A+b18fo-+B4LCEBdOd>#oCPx^BOuk|qGC9CBWbzrakjWJm fA(OvYhDhgsEW_Ge{Hn|Ns9P*czA`7#OZhW;AS=EMst) zm1_?(!;a02hI^PNmpO<`;t=6zU~G^&!pLv{D0qYsC@8n_02A9L4iSyTA{=16S%l*a FI{ delta 109 zcmV-z0FwWJfCGSl1F#%0lUOs;1p0f7n>lN~Y_k~kIyff{%K0KAh-F?h2u2y6$E2o#gtFjSMoF;ufK2t)_6 P2oxxz6bLA@6bS4m)@~zS diff --git a/packages/nvmedit/test/fixtures/nvm_700_invariants/ctrlr_backup_700_7.18.1.bin b/packages/nvmedit/test/fixtures/nvm_700_invariants/ctrlr_backup_700_7.18.1.bin index b76cd65be250596c26df4e94d5abea59df62ee03..c307f38ad3b56693a50fbd4f9ed456a224cb3f5d 100644 GIT binary patch delta 152 zcmZo@U~Xt&-XLSZ$IZ~Ni9wK^WeID;A|}C!j?$BNnoXZ9;t(=9zDNJ%1o{@&thA`)Ub*fq@Mf#|NjhZ4NMIT3|A&I8a7OpF}TdiwTGEu z$7V*uJ0f7n>lN~Y_k~kIyff{%K0KAh-F?h2u2y6$E2o#gtFjSMoF;ufK2t)_6 P2oxxz6bLA@6bS4m)@~zS diff --git a/packages/nvmedit/test/fixtures/nvm_700_invariants/ctrlr_backup_700_7.18.2.bin b/packages/nvmedit/test/fixtures/nvm_700_invariants/ctrlr_backup_700_7.18.2.bin index 0633149d398ac317849b7ab95923de975504f12a..beb4f23a439b0fa0a06c20f35a31331555a5d522 100644 GIT binary patch delta 152 zcmZo@U~Xt&-XLSZ$IZ~Ni9wK^WeID;A|}C!j?$BNnoXZ9;t(=9zDNJ%1o{@&thA`)Ub*fq@Mf#|NjhZ4NMIT3|A&I8a7OpF}TdiwTGEu z$7V*uJ0f7n>lN~Y_k~kIyff{%K0KAh-F?h2u2y6$E2o#gtFjSMoF;ufK2t)_6 P2oxxz6bLA@6bS4m)@~zS diff --git a/packages/nvmedit/test/fixtures/nvm_700_invariants/ctrlr_backup_700_7.18.3.bin b/packages/nvmedit/test/fixtures/nvm_700_invariants/ctrlr_backup_700_7.18.3.bin index 29669edf148580be5e751617e157d4ef6180120b..836e268fab7cf8cd68e4706d5afa705e3d71c2cf 100644 GIT binary patch delta 152 zcmZo@U~Xt&-XLSZ$IZ~Ni9wK^WeID;A|}C!j?$BNnoXZ9;t(=9zDNJ%1o{@&thA`)Ub*fq@Mf#|NjhZ4NMIT3|A&I8a7OpF}TdiwTGEu z$7V*uJ0f7n>lN~Y_k~kIyff{%K0KAh-F?h2u2y6$E2o#gtFjSMoF;ufK2t)_6 P2oxxz6bLA@6bS4m)@~zS diff --git a/packages/nvmedit/test/fixtures/nvm_700_invariants/ctrlr_backup_700_7.18.4.bin b/packages/nvmedit/test/fixtures/nvm_700_invariants/ctrlr_backup_700_7.18.4.bin index cc9fcbd8f60be2618ba66847e846194cd0bd15a4..56e00048dd96ca24b606f6b85f3de59e1a305acb 100644 GIT binary patch delta 152 zcmZo@U~Xt&-XLSZ$IZ~Ni9wK^WeID;A|}C!j?$BNnoXZ9;t(=9zDNJ%1o{@&thA`)Ub*fq@Mf#|NjhZ4NMIT3|A&I8a7OpF}TdiwTGEu z$7V*uJ0f7n>lN~Y_k~kIyff{%K0KAh-F?h2u2y6$E2o#gtFjSMoF;ufK2t)_6 P2oxxz6bLA@6bS4m)@~zS diff --git a/packages/nvmedit/test/fixtures/nvm_700_invariants/ctrlr_backup_700_7.19.0.bin b/packages/nvmedit/test/fixtures/nvm_700_invariants/ctrlr_backup_700_7.19.0.bin index d5f69d481b0742879df993cdba6bfe12b0a57969..850ce515da28b246ec67f8416a9ae678b01fc9d1 100644 GIT binary patch delta 86 zcmZo@U~Xt&-XLSZ!OhUHi9wj1b+Ulrj>#X4LMERuoHE(PIAn5+(Ui$=3{*H6*czA` p7#OZhbPS#tpgUQ{;KF2XW6O;P<}+{N5YbpH!U4vcML6E@0|4R*9CH8w delta 68 zcmZo@U~Xt&-XLQzIl}nDuM7BNlUXrwUN(_r#s1H&nkC5)y_zGDzF`G{f2 W#se8Fn>a)?7K?Cz@n#W@H~av2#u&f= diff --git a/packages/nvmedit/test/fixtures/nvm_700_invariants/ctrlr_backup_700_7.19.1.bin b/packages/nvmedit/test/fixtures/nvm_700_invariants/ctrlr_backup_700_7.19.1.bin index 7998524d2af7b27008963b2b73b1811d4b35eaa3..e4a64b24b2cdb862d3ad34f0d6fc767eed8012dc 100644 GIT binary patch delta 86 zcmZo@U~Xt&-XLSZ!OhUHi9wj1b+Ulrj>#X4LMERuoHE(PIAn5+(Ui$=3{*H6*czA` p7#OZhbPS#tpgUQ{;KF2XW6O;P<}+{N5YbpH!U4vcML6E@0|4R*9CH8w delta 68 zcmZo@U~Xt&-XLQzIl}nDuM7BNlUXrwUN(_r#s1H&nkC5)y_zGDzF`G{f2 W#se8Fn>a)?7K?Cz@n#W@H~av2#u&f= diff --git a/packages/zwave-js/src/lib/controller/Controller.ts b/packages/zwave-js/src/lib/controller/Controller.ts index 3237443350ab..1edda6e99901 100644 --- a/packages/zwave-js/src/lib/controller/Controller.ts +++ b/packages/zwave-js/src/lib/controller/Controller.ts @@ -99,7 +99,15 @@ import { securityClassIsS2, securityClassOrder, } from "@zwave-js/core"; -import { migrateNVM } from "@zwave-js/nvmedit"; +import { + BufferedNVMReader, + NVM3, + NVM3Adapter, + NVM500, + NVM500Adapter, + type NVMAdapter, + migrateNVM, +} from "@zwave-js/nvmedit"; import { type BootloaderChunk, BootloaderChunkType, @@ -153,7 +161,6 @@ import { ApplicationUpdateRequestSmartStartHomeIDReceived, ApplicationUpdateRequestSmartStartLongRangeHomeIDReceived, } from "../serialapi/application/ApplicationUpdateRequest"; - import { ShutdownRequest, type ShutdownResponse, @@ -409,6 +416,7 @@ import { SecurityBootstrapFailure, type SmartStartProvisioningEntry, } from "./Inclusion"; +import { SerialNVMIO500, SerialNVMIO700 } from "./NVMIO"; import { determineNIF } from "./NodeInformationFrame"; import { protocolVersionToSDKVersion } from "./ZWaveSDKVersions"; import { @@ -7040,6 +7048,24 @@ ${associatedNodes.join(", ")}`, } } + private _nvm: NVMAdapter | undefined; + /** Provides access to the controller's non-volatile memory */ + public get nvm(): NVMAdapter { + if (!this._nvm) { + if (this.sdkVersionGte("7.0")) { + const io = new BufferedNVMReader(new SerialNVMIO700(this)); + const nvm3 = new NVM3(io); + this._nvm = new NVM3Adapter(nvm3); + } else { + const io = new BufferedNVMReader(new SerialNVMIO500(this)); + const nvm = new NVM500(io); + this._nvm = new NVM500Adapter(nvm); + } + } + + return this._nvm; + } + /** * **Z-Wave 500 series only** * @@ -7680,7 +7706,7 @@ ${associatedNodes.join(", ")}`, } else { targetNVM = await this.backupNVMRaw500(convertProgress); } - const convertedNVM = migrateNVM(nvmData, targetNVM); + const convertedNVM = await migrateNVM(nvmData, targetNVM); this.driver.controllerLog.print("Restoring NVM backup..."); if (this.sdkVersionGte("7.0")) { diff --git a/packages/zwave-js/src/lib/controller/NVMIO.ts b/packages/zwave-js/src/lib/controller/NVMIO.ts new file mode 100644 index 000000000000..07ebc78e2c91 --- /dev/null +++ b/packages/zwave-js/src/lib/controller/NVMIO.ts @@ -0,0 +1,260 @@ +import { ZWaveError, ZWaveErrorCodes } from "@zwave-js/core"; +import { NVMAccess, type NVMIO } from "@zwave-js/nvmedit"; +import { FunctionType } from "@zwave-js/serial"; +import { nvmSizeToBufferSize } from "../serialapi/nvm/GetNVMIdMessages"; +import { type ZWaveController } from "./Controller"; + +/** NVM IO over serial for 500 series controllers */ +export class SerialNVMIO500 implements NVMIO { + public constructor(controller: ZWaveController) { + this._controller = controller; + } + + private _controller: ZWaveController; + private _size: number | undefined; + private _chunkSize: number | undefined; + + public async open(_access: NVMAccess): Promise { + this._size = nvmSizeToBufferSize( + (await this._controller.getNVMId()).memorySize, + ); + if (!this._size) { + throw new ZWaveError( + "Unknown NVM size - cannot backup!", + ZWaveErrorCodes.Controller_NotSupported, + ); + } + return NVMAccess.ReadWrite; + } + + get size(): number { + if (this._size == undefined) { + throw new ZWaveError( + "The NVM is not open", + ZWaveErrorCodes.NVM_NotOpen, + ); + } + return this._size; + } + + get accessMode(): NVMAccess { + if (this._size == undefined) { + return NVMAccess.None; + } else { + return NVMAccess.ReadWrite; + } + } + + async determineChunkSize(): Promise { + if (this._size == undefined) { + throw new ZWaveError( + "The NVM is not open", + ZWaveErrorCodes.NVM_NotOpen, + ); + } + + if (!this._chunkSize) { + // Try reading the maximum size at first, the Serial API should return chunks in a size it supports + // For some reason, there is no documentation and no official command for this + const chunk = await this._controller.externalNVMReadBuffer( + 0, + 0xffff, + ); + // Some SDK versions return an empty buffer when trying to read a buffer that is too long + // Fallback to a sane (but maybe slow) size + this._chunkSize = chunk.length || 48; + } + return this._chunkSize; + } + + async read( + offset: number, + length: number, + ): Promise<{ buffer: Buffer; endOfFile: boolean }> { + // Ensure we're not reading out of bounds + const size = this.size; + if (offset < 0 || offset >= size) { + throw new ZWaveError( + "Cannot read outside of the NVM", + ZWaveErrorCodes.Argument_Invalid, + ); + } + + const chunkSize = await this.determineChunkSize(); + const readSize = Math.min(length, chunkSize, size - offset); + + const buffer = await this._controller.externalNVMReadBuffer( + offset, + readSize, + ); + const endOfFile = offset + readSize >= size; + return { + buffer, + endOfFile, + }; + } + + async write( + offset: number, + data: Buffer, + ): Promise<{ bytesWritten: number; endOfFile: boolean }> { + // Ensure we're not writing out of bounds + const size = this.size; + if (offset < 0 || offset >= size) { + throw new ZWaveError( + "Cannot read outside of the NVM", + ZWaveErrorCodes.Argument_Invalid, + ); + } + + // Write requests need 5 bytes more than read requests, which limits our chunk size + const chunkSize = await this.determineChunkSize() - 5; + const writeSize = Math.min(data.length, chunkSize, size - offset); + + await this._controller.externalNVMWriteBuffer( + offset, + data.subarray(0, writeSize), + ); + const endOfFile = offset + writeSize >= size; + return { + bytesWritten: writeSize, + endOfFile, + }; + } + + close(): Promise { + // Nothing to do really + return Promise.resolve(); + } +} + +/** NVM IO over serial for 700+ series controllers */ +export class SerialNVMIO700 implements NVMIO { + public constructor(controller: ZWaveController) { + this._controller = controller; + if ( + controller.isFunctionSupported( + FunctionType.ExtendedNVMOperations, + ) + ) { + this._open = async () => { + const { size } = await controller.externalNVMOpenExt(); + return size; + }; + this._read = (offset, length) => + controller.externalNVMReadBufferExt(offset, length); + this._write = (offset, buffer) => + controller.externalNVMWriteBufferExt(offset, buffer); + this._close = () => controller.externalNVMCloseExt(); + } else { + this._open = () => controller.externalNVMOpen(); + this._read = (offset, length) => + controller.externalNVMReadBuffer700(offset, length); + this._write = (offset, buffer) => + controller.externalNVMWriteBuffer700(offset, buffer); + this._close = () => controller.externalNVMClose(); + } + } + + private _controller: ZWaveController; + + private _open: () => Promise; + private _read: ( + offset: number, + length: number, + ) => Promise<{ buffer: Buffer; endOfFile: boolean }>; + private _write: ( + offset: number, + buffer: Buffer, + ) => Promise<{ endOfFile: boolean }>; + private _close: () => Promise; + + private _size: number | undefined; + private _chunkSize: number | undefined; + private _accessMode: NVMAccess = NVMAccess.None; + + public async open( + access: NVMAccess.Read | NVMAccess.Write, + ): Promise { + this._size = await this._open(); + // We only support reading or writing, not both + this._accessMode = access; + return access; + } + + get size(): number { + if (this._size == undefined) { + throw new ZWaveError( + "The NVM is not open", + ZWaveErrorCodes.NVM_NotOpen, + ); + } + return this._size; + } + + get accessMode(): NVMAccess { + return this._accessMode; + } + + async determineChunkSize(): Promise { + if (!this._chunkSize) { + // The write requests have the same size as the read response - if this yields no + // data, default to a sane (but maybe slow) size + this._chunkSize = (await this._read(0, 0xff)).buffer.length || 48; + } + + return this._chunkSize; + } + + async read( + offset: number, + length: number, + ): Promise<{ buffer: Buffer; endOfFile: boolean }> { + // Ensure we're not reading out of bounds + const size = this.size; + if (offset < 0 || offset >= size) { + throw new ZWaveError( + "Cannot read outside of the NVM", + ZWaveErrorCodes.Argument_Invalid, + ); + } + + const chunkSize = await this.determineChunkSize(); + + return this._read( + offset, + Math.min(length, chunkSize, size - offset), + ); + } + + async write( + offset: number, + data: Buffer, + ): Promise<{ bytesWritten: number; endOfFile: boolean }> { + // Ensure we're not writing out of bounds + const size = this.size; + if (offset < 0 || offset >= size) { + throw new ZWaveError( + "Cannot read outside of the NVM", + ZWaveErrorCodes.Argument_Invalid, + ); + } + + const chunkSize = await this.determineChunkSize(); + const writeSize = Math.min(data.length, chunkSize, size - offset); + + const { endOfFile } = await this._write( + offset, + data.subarray(0, writeSize), + ); + return { + bytesWritten: writeSize, + endOfFile, + }; + } + + close(): Promise { + this._accessMode = NVMAccess.None; + return this._close(); + } +} diff --git a/test/run_duplex.ts b/test/run_duplex.ts index b00ae82f8f58..b788fdbb165f 100644 --- a/test/run_duplex.ts +++ b/test/run_duplex.ts @@ -1,8 +1,7 @@ -import { SecurityClass } from "@zwave-js/core"; import { wait as _wait } from "alcalzone-shared/async"; import path from "node:path"; import "reflect-metadata"; -import { Driver, InclusionStrategy, RFRegion } from "zwave-js"; +import { Driver, RFRegion } from "zwave-js"; const wait = _wait; @@ -22,7 +21,7 @@ const port_primary = const port_secondary = "/dev/serial/by-id/usb-Silicon_Labs_CP2102N_USB_to_UART_Bridge_Controller_ca4d95064355ee118d4d1294de9da576-if00-port0"; -let pin: string | undefined; +// let pin: string | undefined; const driver_primary = new Driver(port_primary, { logConfig: { @@ -71,36 +70,36 @@ const driver_primary = new Driver(port_primary, { .on("error", console.error) .once("driver ready", async () => { // Test code goes here - await wait(1000); - await driver_primary.hardReset(); - await wait(5000); - await driver_primary.controller.beginInclusion({ - strategy: InclusionStrategy.Default, - userCallbacks: { - abort() {}, - async grantSecurityClasses(requested) { - return { - clientSideAuth: false, - securityClasses: [ - SecurityClass.S0_Legacy, - SecurityClass.S2_Unauthenticated, - SecurityClass.S2_Authenticated, - SecurityClass.S2_AccessControl, - ], - }; - }, - async validateDSKAndEnterPIN(dsk) { - // Try to read PIN from the file pin.txt - for (let i = 0; i < 100; i++) { - if (typeof pin === "string" && pin?.length === 5) { - return pin; - } - await wait(1000); - } - return false; - }, - }, - }); + // await wait(1000); + // await driver_primary.hardReset(); + // await wait(5000); + // await driver_primary.controller.beginInclusion({ + // strategy: InclusionStrategy.Default, + // userCallbacks: { + // abort() {}, + // async grantSecurityClasses(requested) { + // return { + // clientSideAuth: false, + // securityClasses: [ + // SecurityClass.S0_Legacy, + // SecurityClass.S2_Unauthenticated, + // SecurityClass.S2_Authenticated, + // SecurityClass.S2_AccessControl, + // ], + // }; + // }, + // async validateDSKAndEnterPIN(dsk) { + // // Try to read PIN from the file pin.txt + // for (let i = 0; i < 100; i++) { + // if (typeof pin === "string" && pin?.length === 5) { + // return pin; + // } + // await wait(1000); + // } + // return false; + // }, + // }, + // }); }) .once("bootloader ready", async () => { // What to do when stuck in the bootloader @@ -151,22 +150,22 @@ const driver_secondary = new Driver(port_secondary, { lockDir: path.join(__dirname, "cache2/locks"), }, allowBootloaderOnly: true, - joinNetworkUserCallbacks: { - showDSK(dsk) { - pin = dsk.split("-")[0]; - }, - done() { - pin = undefined; - }, - }, + // joinNetworkUserCallbacks: { + // showDSK(dsk) { + // pin = dsk.split("-")[0]; + // }, + // done() { + // pin = undefined; + // }, + // }, }) .on("error", console.error) .once("driver ready", async () => { // Test code goes here - await wait(5000); - await driver_secondary.hardReset(); - await wait(5000); - await driver_secondary.controller.beginJoiningNetwork(); + // await wait(5000); + // await driver_secondary.hardReset(); + // await wait(5000); + // await driver_secondary.controller.beginJoiningNetwork(); }) .once("bootloader ready", async () => { // What to do when stuck in the bootloader From b5fcbb76666dc40db0fb2a2057c68d2a88959221 Mon Sep 17 00:00:00 2001 From: AlCalzone Date: Fri, 20 Sep 2024 12:59:48 +0200 Subject: [PATCH 02/10] fix: remove logfiles added by #7135 (#7180) --- test/primary_2024-09-06.log | 14312 ----------------------------- test/primary_current.log | 1 - test/secondary_2024-09-06.log | 15772 -------------------------------- test/secondary_current.log | 1 - 4 files changed, 30086 deletions(-) delete mode 100644 test/primary_2024-09-06.log delete mode 120000 test/primary_current.log delete mode 100644 test/secondary_2024-09-06.log delete mode 120000 test/secondary_current.log diff --git a/test/primary_2024-09-06.log b/test/primary_2024-09-06.log deleted file mode 100644 index c4b03274600c..000000000000 --- a/test/primary_2024-09-06.log +++ /dev/null @@ -1,14312 +0,0 @@ -2024-09-06T10:02:42.064Z DRIVER ███████╗ ██╗ ██╗ █████╗ ██╗ ██╗ ███████╗ ██╗ ███████╗ - ╚══███╔╝ ██║ ██║ ██╔══██╗ ██║ ██║ ██╔════╝ ██║ ██╔════╝ - ███╔╝ █████╗ ██║ █╗ ██║ ███████║ ██║ ██║ █████╗ ██║ ███████╗ - ███╔╝ ╚════╝ ██║███╗██║ ██╔══██║ ╚██╗ ██╔╝ ██╔══╝ ██ ██║ ╚════██║ - ███████╗ ╚███╔███╔╝ ██║ ██║ ╚████╔╝ ███████╗ ╚█████╔╝ ███████║ - ╚══════╝ ╚══╝╚══╝ ╚═╝ ╚═╝ ╚═══╝ ╚══════╝ ╚════╝ ╚══════╝ -2024-09-06T10:02:42.066Z DRIVER version 13.2.0 -2024-09-06T10:02:42.066Z DRIVER -2024-09-06T10:02:42.066Z DRIVER starting driver... -2024-09-06T10:02:42.067Z DRIVER opening serial port /dev/serial/by-id/usb-Zooz_800_Z-Wave_Stick_533D004242-if0 - 0 -2024-09-06T10:02:42.076Z DRIVER serial port opened -2024-09-06T10:02:42.076Z SERIAL » 0x15 (1 bytes) -2024-09-06T10:02:43.081Z DRIVER loading configuration... -2024-09-06T10:02:43.086Z CONFIG version 13.2.0 -2024-09-06T10:02:43.298Z CONFIG Device configuration files on disk changed - regenerating index... -2024-09-06T10:02:47.293Z CONFIG Device index regenerated -2024-09-06T10:02:47.294Z DRIVER beginning interview... -2024-09-06T10:02:47.294Z DRIVER added request handler for AddNodeToNetwork (0x4a)... - 1 registered -2024-09-06T10:02:47.294Z DRIVER added request handler for RemoveNodeFromNetwork (0x4b)... - 1 registered -2024-09-06T10:02:47.295Z DRIVER added request handler for ReplaceFailedNode (0x63)... - 1 registered -2024-09-06T10:02:47.295Z DRIVER added request handler for SetLearnMode (0x50)... - 1 registered -2024-09-06T10:02:47.295Z CNTRLR querying Serial API capabilities... -2024-09-06T10:02:47.296Z SERIAL » 0x01030007fb (5 bytes) -2024-09-06T10:02:47.297Z DRIVER » [REQ] [GetSerialApiCapabilities] -2024-09-06T10:02:47.301Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:47.309Z SERIAL « 0x012b0107011e027a00040610f6873e88cf2bc04ffbd7fde09700008000808680b (45 bytes) - a0500700000ee7fc000000035 -2024-09-06T10:02:47.310Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:47.310Z DRIVER « [RES] [GetSerialApiCapabilities] - payload: 0x011e027a00040610f6873e88cf2bc04ffbd7fde09700008000808680ba0500700 - 000ee7fc0000000 -2024-09-06T10:02:47.311Z CNTRLR received API capabilities: - firmware version: 1.30 - manufacturer ID: 0x027a - product type: 0x04 - product ID: 0x0610 - supported functions: - · GetSerialApiInitData (0x02) - · SetApplicationNodeInformation (0x03) - · GetControllerCapabilities (0x05) - · SetSerialApiTimeouts (0x06) - · GetSerialApiCapabilities (0x07) - · SoftReset (0x08) - · GetProtocolVersion (0x09) - · SerialAPIStarted (0x0a) - · SerialAPISetup (0x0b) - · SetRFReceiveMode (0x10) - · SendNodeInformation (0x12) - · SendData (0x13) - · SendDataMulticast (0x14) - · GetControllerVersion (0x15) - · SendDataAbort (0x16) - · FUNC_ID_ZW_GET_RANDOM (0x1c) - · GetControllerId (0x20) - · UNKNOWN_FUNC_MEMORY_GET_BYTE (0x21) - · UNKNOWN_FUNC_MEMORY_PUT_BYTE (0x22) - · UNKNOWN_FUNC_MEMORY_GET_BUFFER (0x23) - · UNKNOWN_FUNC_MEMORY_PUT_BUFFER (0x24) - · EnterBootloader (0x27) - · UNKNOWN_FUNC_UNKNOWN_0x28 (0x28) - · GetNVMId (0x29) - · ExtNVMReadLongBuffer (0x2a) - · ExtNVMReadLongByte (0x2c) - · NVMOperations (0x2e) - · ClearTxTimers (0x37) - · GetTxTimers (0x38) - · ClearNetworkStats (0x39) - · GetNetworkStats (0x3a) - · GetBackgroundRSSI (0x3b) - · SetListenBeforeTalkThreshold (0x3c) - · RemoveSpecificNodeIdFromNetwork (0x3f) - · GetNodeProtocolInfo (0x41) - · HardReset (0x42) - · FUNC_ID_ZW_REPLICATION_COMMAND_COMPLETE (0x44) - · FUNC_ID_ZW_REPLICATION_SEND_DATA (0x45) - · AssignReturnRoute (0x46) - · DeleteReturnRoute (0x47) - · RequestNodeNeighborUpdate (0x48) - · ApplicationUpdateRequest (0x49) - · AddNodeToNetwork (0x4a) - · RemoveNodeFromNetwork (0x4b) - · AddPrimaryController (0x4d) - · AssignPriorityReturnRoute (0x4f) - · SetLearnMode (0x50) - · AssignSUCReturnRoute (0x51) - · RequestNetworkUpdate (0x53) - · SetSUCNodeId (0x54) - · DeleteSUCReturnRoute (0x55) - · GetSUCNodeId (0x56) - · SendSUCNodeId (0x57) - · AssignPrioritySUCReturnRoute (0x58) - · ExploreRequestInclusion (0x5e) - · ExploreRequestExclusion (0x5f) - · RequestNodeInfo (0x60) - · RemoveFailedNode (0x61) - · IsFailedNode (0x62) - · ReplaceFailedNode (0x63) - · undefined (0x65) - · RequestProtocolCCEncryption (0x68) - · GetRoutingInfo (0x80) - · LockUnlockLastRoute (0x90) - · GetPriorityRoute (0x92) - · SetPriorityRoute (0x93) - · UNKNOWN_FUNC_UNKNOWN_0x98 (0x98) - · VirtualNodeSetNodeInfo (0xa0) - · VirtualNodeSendNodeInfo (0xa2) - · VirtualNodeSetLearnMode (0xa4) - · GetVirtualNodes (0xa5) - · IsVirtualNode (0xa6) - · BridgeApplicationCommand (0xa8) - · SendDataBridge (0xa9) - · SendDataMulticastBridge (0xab) - · GetLibrary (0xbd) - · SendTestFrame (0xbe) - · GetProtocolStatus (0xbf) - · StartWatchdog (0xd2) - · StopWatchdog (0xd3) - · SetMaximumRoutingAttempts (0xd4) - · SetMaxSmartStartInclusionRequestInterval (0xd6) - · undefined (0xd7) - · undefined (0xd8) - · Shutdown (0xd9) - · GetLongRangeNodes (0xda) - · GetLongRangeChannel (0xdb) - · SetLongRangeChannel (0xdc) - · SetLongRangeShadowNodeIDs (0xdd) - · Proprietary_DE (0xde) - · Proprietary_DF (0xdf) - · Proprietary_E7 (0xe7) - · Proprietary_E8 (0xe8) -2024-09-06T10:02:47.312Z CNTRLR querying additional controller information... -2024-09-06T10:02:47.313Z SERIAL » 0x01030002fe (5 bytes) -2024-09-06T10:02:47.313Z DRIVER » [REQ] [GetSerialApiInitData] -2024-09-06T10:02:47.315Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:47.323Z SERIAL « 0x012501020a081d030000000000000000000000000000000000000000000000000 (39 bytes) - 00000000800cd -2024-09-06T10:02:47.324Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:47.325Z DRIVER « [RES] [GetSerialApiInitData] - payload: 0x0a081d03000000000000000000000000000000000000000000000000000000000 - 800 -2024-09-06T10:02:47.326Z CNTRLR received additional controller information: - Z-Wave API version: 1 (official) - Z-Wave chip type: EFR32ZG23 / ZGM230S - node type Controller - controller role: primary - controller is the SIS: true - controller supports timers: false - Z-Wave Classic nodes: 1, 2 -2024-09-06T10:02:47.326Z CNTRLR querying version info... -2024-09-06T10:02:47.327Z SERIAL » 0x01030015e9 (5 bytes) -2024-09-06T10:02:47.328Z DRIVER » [REQ] [GetControllerVersion] -2024-09-06T10:02:47.333Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:47.333Z SERIAL « 0x011001155a2d5761766520372e3231000794 (18 bytes) -2024-09-06T10:02:47.334Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:47.334Z DRIVER « [RES] [GetControllerVersion] - payload: 0x5a2d5761766520372e32310007 -2024-09-06T10:02:47.335Z CNTRLR received version info: - controller type: Bridge Controller - library version: Z-Wave 7.21 -2024-09-06T10:02:47.335Z CNTRLR querying protocol version info... -2024-09-06T10:02:47.336Z SERIAL » 0x01030009f5 (5 bytes) -2024-09-06T10:02:47.336Z DRIVER » [REQ] [GetProtocolVersion] -2024-09-06T10:02:47.343Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:47.344Z SERIAL « 0x011901090007150300f4353162666237323665306662383733380f (27 bytes) -2024-09-06T10:02:47.344Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:47.345Z DRIVER « [RES] [GetProtocolVersion] - payload: 0x0007150300f435316266623732366530666238373338 -2024-09-06T10:02:47.347Z CNTRLR received protocol version info: - protocol type: Z-Wave - protocol version: 7.21.3 - appl. framework build no.: 244 - git commit hash: 35316266623732366530666238373338 -2024-09-06T10:02:47.347Z CNTRLR querying controller capabilities... -2024-09-06T10:02:47.348Z SERIAL » 0x01030005f9 (5 bytes) -2024-09-06T10:02:47.349Z DRIVER » [REQ] [GetControllerCapabilities] -2024-09-06T10:02:47.354Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:47.354Z SERIAL « 0x010401051ce3 (6 bytes) -2024-09-06T10:02:47.355Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:47.355Z DRIVER « [RES] [GetControllerCapabilities] - payload: 0x1c -2024-09-06T10:02:47.356Z CNTRLR received controller capabilities: - controller role: Primary - is the SUC: true - started this network: true - SIS is present: true - was real primary: true -2024-09-06T10:02:47.356Z CNTRLR querying serial API setup capabilities... -2024-09-06T10:02:47.357Z SERIAL » 0x0104000b01f1 (6 bytes) -2024-09-06T10:02:47.358Z DRIVER » [REQ] [SerialAPISetup] - command: GetSupportedCommands - payload: 0x01 -2024-09-06T10:02:47.363Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:47.364Z SERIAL « 0x0116010b01ff9f8007800000008000000000000000800085 (24 bytes) -2024-09-06T10:02:47.364Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:47.365Z DRIVER « [RES] [SerialAPISetup] - command: GetSupportedCommands - payload: 0xff9f80078000000080000000000000008000 -2024-09-06T10:02:47.365Z CNTRLR supported serial API setup commands: - · GetSupportedCommands - · SetTxStatusReport - · SetLongRangeMaximumTxPower - · SetPowerlevel - · GetLongRangeMaximumTxPower - · GetPowerlevel - · GetMaximumPayloadSize - · GetLongRangeMaximumPayloadSize - · SetPowerlevel16Bit - · GetPowerlevel16Bit - · GetRFRegion - · SetRFRegion - · SetNodeIDType -2024-09-06T10:02:47.366Z CNTRLR querying max. payload size... -2024-09-06T10:02:47.366Z SERIAL » 0x0104000b10e0 (6 bytes) -2024-09-06T10:02:47.367Z DRIVER » [REQ] [SerialAPISetup] - command: GetMaximumPayloadSize - payload: 0x10 -2024-09-06T10:02:47.372Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:47.373Z SERIAL « 0x0105010b102ece (7 bytes) -2024-09-06T10:02:47.373Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:47.374Z DRIVER « [RES] [SerialAPISetup] - command: GetMaximumPayloadSize - maximum payload size: 46 bytes -2024-09-06T10:02:47.375Z CNTRLR maximum payload size: 46 bytes -2024-09-06T10:02:47.375Z CNTRLR supported Z-Wave features: - · SmartStart -2024-09-06T10:02:47.375Z CNTRLR Querying configured RF region... -2024-09-06T10:02:47.376Z SERIAL » 0x0104000b20d0 (6 bytes) -2024-09-06T10:02:47.376Z DRIVER » [REQ] [SerialAPISetup] - command: GetRFRegion - payload: 0x20 -2024-09-06T10:02:47.381Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:47.381Z SERIAL « 0x0105010b2000d0 (7 bytes) -2024-09-06T10:02:47.381Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:47.382Z DRIVER « [RES] [SerialAPISetup] - command: GetRFRegion - region: Europe -2024-09-06T10:02:47.383Z CNTRLR The controller is using RF region Europe -2024-09-06T10:02:47.383Z CNTRLR Querying configured max. Long Range powerlevel... -2024-09-06T10:02:47.383Z SERIAL » 0x0104000b05f5 (6 bytes) -2024-09-06T10:02:47.384Z DRIVER » [REQ] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - payload: 0x05 -2024-09-06T10:02:47.392Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:47.392Z SERIAL « 0x0106010b05008c7a (8 bytes) -2024-09-06T10:02:47.393Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:47.393Z DRIVER « [RES] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - max. TX power (LR): 14.0 dBm -2024-09-06T10:02:47.394Z CNTRLR The max. LR powerlevel is 14.0 dBm -2024-09-06T10:02:47.394Z CNTRLR Querying configured Long Range channel information... -2024-09-06T10:02:47.395Z SERIAL » 0x010300db27 (5 bytes) -2024-09-06T10:02:47.395Z DRIVER » [REQ] [GetLongRangeChannel] -2024-09-06T10:02:47.400Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:47.400Z SERIAL « 0x010501db001030 (7 bytes) -2024-09-06T10:02:47.400Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:47.401Z DRIVER « [RES] [GetLongRangeChannel] - payload: 0x0010 -2024-09-06T10:02:47.402Z CNTRLR received Z-Wave Long Range channel information: - channel: Unsupported - supports auto channel selection: true -2024-09-06T10:02:47.402Z CNTRLR Performing soft reset... -2024-09-06T10:02:47.403Z SERIAL » 0x01030008f4 (5 bytes) -2024-09-06T10:02:47.404Z DRIVER » [REQ] [SoftReset] -2024-09-06T10:02:47.407Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:47.408Z CNTRLR Waiting for the controller to reconnect... -2024-09-06T10:02:47.408Z DRIVER all queues idle -2024-09-06T10:02:47.632Z SERIAL « 0x0111000a0700010100075e9f556c568f7400b1 (19 bytes) -2024-09-06T10:02:47.633Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:47.633Z DRIVER « [REQ] [SerialAPIStarted] - wake up reason: SoftwareReset - watchdog enabled: false - generic device class: 0x01 - specific device class: 0x00 - always listening: false - supports Long Range: false -2024-09-06T10:02:47.634Z CNTRLR reconnected and restarted -2024-09-06T10:02:47.634Z CNTRLR Starting hardware watchdog... -2024-09-06T10:02:47.634Z CNTRLR Switching serial API to 16-bit node IDs... -2024-09-06T10:02:47.635Z CNTRLR Switching serial API to 8-bit node IDs... -2024-09-06T10:02:47.635Z DRIVER all queues busy -2024-09-06T10:02:47.636Z SERIAL » 0x010300d22e (5 bytes) -2024-09-06T10:02:47.636Z DRIVER » [REQ] [StartWatchdog] -2024-09-06T10:02:47.637Z SERIAL » 0x0105000b800273 (7 bytes) -2024-09-06T10:02:47.638Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 16 bit -2024-09-06T10:02:47.639Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:47.640Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:47.641Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T10:02:47.642Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:47.643Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T10:02:47.643Z CNTRLR Switching to 16-bit node IDs successful -2024-09-06T10:02:47.644Z SERIAL » 0x0105000b800170 (7 bytes) -2024-09-06T10:02:47.645Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 8 bit -2024-09-06T10:02:47.647Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:47.649Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T10:02:47.649Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:47.650Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T10:02:47.651Z CNTRLR Switching to 8-bit node IDs successful -2024-09-06T10:02:47.651Z CNTRLR querying controller IDs... -2024-09-06T10:02:47.652Z SERIAL » 0x01030020dc (5 bytes) -2024-09-06T10:02:47.653Z DRIVER » [REQ] [GetControllerId] -2024-09-06T10:02:47.657Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:47.658Z SERIAL « 0x01080120e8ddb79601c3 (10 bytes) -2024-09-06T10:02:47.658Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:47.659Z DRIVER « [RES] [GetControllerId] - home ID: 0xe8ddb796 - own node ID: 1 -2024-09-06T10:02:47.659Z CNTRLR received controller IDs: - home ID: 0xe8ddb796 - own node ID: 1 -2024-09-06T10:02:47.660Z CNTRLR Enabling TX status report... -2024-09-06T10:02:47.660Z SERIAL » 0x0105000b02ff0c (7 bytes) -2024-09-06T10:02:47.661Z DRIVER » [REQ] [SerialAPISetup] - command: SetTxStatusReport - enabled: true -2024-09-06T10:02:47.666Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:47.667Z SERIAL « 0x0105010b0201f3 (7 bytes) -2024-09-06T10:02:47.667Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:47.668Z DRIVER « [RES] [SerialAPISetup] - command: SetTxStatusReport - success: true -2024-09-06T10:02:47.668Z CNTRLR Enabling TX status report successful... -2024-09-06T10:02:47.669Z CNTRLR finding SUC... -2024-09-06T10:02:47.670Z SERIAL » 0x01030056aa (5 bytes) -2024-09-06T10:02:47.670Z DRIVER » [REQ] [GetSUCNodeId] -2024-09-06T10:02:47.673Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:47.674Z SERIAL « 0x0104015601ad (6 bytes) -2024-09-06T10:02:47.674Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:47.675Z DRIVER « [RES] [GetSUCNodeId] - payload: 0x01 -2024-09-06T10:02:47.676Z CNTRLR This is the SUC -2024-09-06T10:02:47.677Z DRIVER all queues idle -2024-09-06T10:02:47.689Z DRIVER Cache file for homeId 0xe8ddb796 found, attempting to restore the network from - cache... -2024-09-06T10:02:47.692Z CNTRLR [Node 001] Embedded device config loaded -2024-09-06T10:02:47.693Z DRIVER Restoring the network from cache was successful! -2024-09-06T10:02:47.694Z CNTRLR [Node 001] [Manufacturer Specific] manufacturerId: metadata updated -2024-09-06T10:02:47.694Z CNTRLR [Node 001] [Manufacturer Specific] productType: metadata updated -2024-09-06T10:02:47.694Z CNTRLR [Node 001] [Manufacturer Specific] productId: metadata updated -2024-09-06T10:02:47.695Z CNTRLR [Node 001] [~] [Manufacturer Specific] manufacturerId: 634 => 634 -2024-09-06T10:02:47.695Z CNTRLR [Node 001] [~] [Manufacturer Specific] productType: 4 => 4 -2024-09-06T10:02:47.695Z CNTRLR [Node 001] [~] [Manufacturer Specific] productId: 1552 => 1552 -2024-09-06T10:02:47.696Z CNTRLR [Node 001] [Version] firmwareVersions: metadata updated -2024-09-06T10:02:47.696Z CNTRLR [Node 001] [~] [Version] firmwareVersions: 1.30 => 1.30 -2024-09-06T10:02:47.696Z CNTRLR [Node 001] [Version] zWaveProtocolVersion: metadata updated -2024-09-06T10:02:47.696Z CNTRLR [Node 001] [~] [Version] zWaveProtocolVersion: "7.21.3" => "7.21.3" -2024-09-06T10:02:47.697Z CNTRLR [Node 001] [Version] sdkVersion: metadata updated -2024-09-06T10:02:47.697Z CNTRLR [Node 001] [~] [Version] sdkVersion: "7.21.3" => "7.21.3" -2024-09-06T10:02:47.697Z CNTRLR Interview completed -2024-09-06T10:02:47.698Z DRIVER Network key for S0 configured, enabling S0 security manager... -2024-09-06T10:02:47.699Z DRIVER At least one network key for S2 configured, enabling S2 security manager... -2024-09-06T10:02:47.701Z DRIVER At least one network key for Z-Wave Long Range configured, enabling security m - anager... -2024-09-06T10:02:47.702Z DRIVER driver ready -2024-09-06T10:02:48.703Z CNTRLR Updating the controller NIF... -2024-09-06T10:02:48.705Z DRIVER all queues busy -2024-09-06T10:02:48.709Z SERIAL » 0x010f0003010100085e989f556c568f7436 (17 bytes) -2024-09-06T10:02:48.710Z DRIVER » [REQ] [SetApplicationNodeInformation] - is listening: true - generic device class: 0x01 - specific device class: 0x00 - supported CCs: - · Z-Wave Plus Info - · Security - · Security 2 - · Transport Service - · Supervision - · CRC-16 Encapsulation - · Multi Command - · Inclusion Controller - controlled CCs: -2024-09-06T10:02:48.714Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:48.716Z CNTRLR performing hard reset... -2024-09-06T10:02:48.718Z SERIAL » 0x0104004201b8 (6 bytes) -2024-09-06T10:02:48.719Z DRIVER » [REQ] [HardReset] - callback id: 1 -2024-09-06T10:02:48.721Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:48.743Z SERIAL « 0x0104004201b8 (6 bytes) -2024-09-06T10:02:48.743Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:48.744Z DRIVER « [REQ] [HardReset] - callback id: 1 -2024-09-06T10:02:48.745Z CNTRLR hard reset succeeded -2024-09-06T10:02:48.745Z CNTRLR querying Serial API capabilities... -2024-09-06T10:02:48.746Z SERIAL » 0x01030007fb (5 bytes) -2024-09-06T10:02:48.747Z DRIVER » [REQ] [GetSerialApiCapabilities] -2024-09-06T10:02:48.749Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:48.754Z SERIAL « 0x012b0107011e027a00040610f6873e88cf2bc04ffbd7fde09700008000808680b (45 bytes) - a0500700000ee7fc000000035 -2024-09-06T10:02:48.754Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:48.755Z DRIVER « [RES] [GetSerialApiCapabilities] - payload: 0x011e027a00040610f6873e88cf2bc04ffbd7fde09700008000808680ba0500700 - 000ee7fc0000000 -2024-09-06T10:02:48.756Z CNTRLR received API capabilities: - firmware version: 1.30 - manufacturer ID: 0x027a - product type: 0x04 - product ID: 0x0610 - supported functions: - · GetSerialApiInitData (0x02) - · SetApplicationNodeInformation (0x03) - · GetControllerCapabilities (0x05) - · SetSerialApiTimeouts (0x06) - · GetSerialApiCapabilities (0x07) - · SoftReset (0x08) - · GetProtocolVersion (0x09) - · SerialAPIStarted (0x0a) - · SerialAPISetup (0x0b) - · SetRFReceiveMode (0x10) - · SendNodeInformation (0x12) - · SendData (0x13) - · SendDataMulticast (0x14) - · GetControllerVersion (0x15) - · SendDataAbort (0x16) - · FUNC_ID_ZW_GET_RANDOM (0x1c) - · GetControllerId (0x20) - · UNKNOWN_FUNC_MEMORY_GET_BYTE (0x21) - · UNKNOWN_FUNC_MEMORY_PUT_BYTE (0x22) - · UNKNOWN_FUNC_MEMORY_GET_BUFFER (0x23) - · UNKNOWN_FUNC_MEMORY_PUT_BUFFER (0x24) - · EnterBootloader (0x27) - · UNKNOWN_FUNC_UNKNOWN_0x28 (0x28) - · GetNVMId (0x29) - · ExtNVMReadLongBuffer (0x2a) - · ExtNVMReadLongByte (0x2c) - · NVMOperations (0x2e) - · ClearTxTimers (0x37) - · GetTxTimers (0x38) - · ClearNetworkStats (0x39) - · GetNetworkStats (0x3a) - · GetBackgroundRSSI (0x3b) - · SetListenBeforeTalkThreshold (0x3c) - · RemoveSpecificNodeIdFromNetwork (0x3f) - · GetNodeProtocolInfo (0x41) - · HardReset (0x42) - · FUNC_ID_ZW_REPLICATION_COMMAND_COMPLETE (0x44) - · FUNC_ID_ZW_REPLICATION_SEND_DATA (0x45) - · AssignReturnRoute (0x46) - · DeleteReturnRoute (0x47) - · RequestNodeNeighborUpdate (0x48) - · ApplicationUpdateRequest (0x49) - · AddNodeToNetwork (0x4a) - · RemoveNodeFromNetwork (0x4b) - · AddPrimaryController (0x4d) - · AssignPriorityReturnRoute (0x4f) - · SetLearnMode (0x50) - · AssignSUCReturnRoute (0x51) - · RequestNetworkUpdate (0x53) - · SetSUCNodeId (0x54) - · DeleteSUCReturnRoute (0x55) - · GetSUCNodeId (0x56) - · SendSUCNodeId (0x57) - · AssignPrioritySUCReturnRoute (0x58) - · ExploreRequestInclusion (0x5e) - · ExploreRequestExclusion (0x5f) - · RequestNodeInfo (0x60) - · RemoveFailedNode (0x61) - · IsFailedNode (0x62) - · ReplaceFailedNode (0x63) - · undefined (0x65) - · RequestProtocolCCEncryption (0x68) - · GetRoutingInfo (0x80) - · LockUnlockLastRoute (0x90) - · GetPriorityRoute (0x92) - · SetPriorityRoute (0x93) - · UNKNOWN_FUNC_UNKNOWN_0x98 (0x98) - · VirtualNodeSetNodeInfo (0xa0) - · VirtualNodeSendNodeInfo (0xa2) - · VirtualNodeSetLearnMode (0xa4) - · GetVirtualNodes (0xa5) - · IsVirtualNode (0xa6) - · BridgeApplicationCommand (0xa8) - · SendDataBridge (0xa9) - · SendDataMulticastBridge (0xab) - · GetLibrary (0xbd) - · SendTestFrame (0xbe) - · GetProtocolStatus (0xbf) - · StartWatchdog (0xd2) - · StopWatchdog (0xd3) - · SetMaximumRoutingAttempts (0xd4) - · SetMaxSmartStartInclusionRequestInterval (0xd6) - · undefined (0xd7) - · undefined (0xd8) - · Shutdown (0xd9) - · GetLongRangeNodes (0xda) - · GetLongRangeChannel (0xdb) - · SetLongRangeChannel (0xdc) - · SetLongRangeShadowNodeIDs (0xdd) - · Proprietary_DE (0xde) - · Proprietary_DF (0xdf) - · Proprietary_E7 (0xe7) - · Proprietary_E8 (0xe8) -2024-09-06T10:02:48.756Z CNTRLR querying additional controller information... -2024-09-06T10:02:48.757Z SERIAL » 0x01030002fe (5 bytes) -2024-09-06T10:02:48.758Z DRIVER » [REQ] [GetSerialApiInitData] -2024-09-06T10:02:48.760Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:48.765Z SERIAL « 0x012501020a001d010000000000000000000000000000000000000000000000000 (39 bytes) - 00000000800c7 -2024-09-06T10:02:48.766Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:48.766Z DRIVER « [RES] [GetSerialApiInitData] - payload: 0x0a001d01000000000000000000000000000000000000000000000000000000000 - 800 -2024-09-06T10:02:48.767Z CNTRLR received additional controller information: - Z-Wave API version: 1 (official) - Z-Wave chip type: EFR32ZG23 / ZGM230S - node type Controller - controller role: primary - controller is the SIS: false - controller supports timers: false - Z-Wave Classic nodes: 1 -2024-09-06T10:02:48.767Z CNTRLR querying version info... -2024-09-06T10:02:48.768Z SERIAL » 0x01030015e9 (5 bytes) -2024-09-06T10:02:48.769Z DRIVER » [REQ] [GetControllerVersion] -2024-09-06T10:02:48.771Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:48.773Z SERIAL « 0x011001155a2d5761766520372e3231000794 (18 bytes) -2024-09-06T10:02:48.773Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:48.774Z DRIVER « [RES] [GetControllerVersion] - payload: 0x5a2d5761766520372e32310007 -2024-09-06T10:02:48.775Z CNTRLR received version info: - controller type: Bridge Controller - library version: Z-Wave 7.21 -2024-09-06T10:02:48.775Z CNTRLR querying protocol version info... -2024-09-06T10:02:48.775Z SERIAL » 0x01030009f5 (5 bytes) -2024-09-06T10:02:48.776Z DRIVER » [REQ] [GetProtocolVersion] -2024-09-06T10:02:48.778Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:48.781Z SERIAL « 0x011901090007150300f4353162666237323665306662383733380f (27 bytes) -2024-09-06T10:02:48.781Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:48.782Z DRIVER « [RES] [GetProtocolVersion] - payload: 0x0007150300f435316266623732366530666238373338 -2024-09-06T10:02:48.783Z CNTRLR received protocol version info: - protocol type: Z-Wave - protocol version: 7.21.3 - appl. framework build no.: 244 - git commit hash: 35316266623732366530666238373338 -2024-09-06T10:02:48.783Z CNTRLR querying controller capabilities... -2024-09-06T10:02:48.783Z SERIAL » 0x01030005f9 (5 bytes) -2024-09-06T10:02:48.784Z DRIVER » [REQ] [GetControllerCapabilities] -2024-09-06T10:02:48.786Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:48.787Z SERIAL « 0x0104010528d7 (6 bytes) -2024-09-06T10:02:48.788Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:48.789Z DRIVER « [RES] [GetControllerCapabilities] - payload: 0x28 -2024-09-06T10:02:48.789Z CNTRLR received controller capabilities: - controller role: Primary - is the SUC: false - started this network: true - SIS is present: false - was real primary: true -2024-09-06T10:02:48.790Z CNTRLR querying serial API setup capabilities... -2024-09-06T10:02:48.791Z SERIAL » 0x0104000b01f1 (6 bytes) -2024-09-06T10:02:48.791Z DRIVER » [REQ] [SerialAPISetup] - command: GetSupportedCommands - payload: 0x01 -2024-09-06T10:02:48.793Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:48.795Z SERIAL « 0x0116010b01ff9f8007800000008000000000000000800085 (24 bytes) -2024-09-06T10:02:48.796Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:48.797Z DRIVER « [RES] [SerialAPISetup] - command: GetSupportedCommands - payload: 0xff9f80078000000080000000000000008000 -2024-09-06T10:02:48.798Z CNTRLR supported serial API setup commands: - · GetSupportedCommands - · SetTxStatusReport - · SetLongRangeMaximumTxPower - · SetPowerlevel - · GetLongRangeMaximumTxPower - · GetPowerlevel - · GetMaximumPayloadSize - · GetLongRangeMaximumPayloadSize - · SetPowerlevel16Bit - · GetPowerlevel16Bit - · GetRFRegion - · SetRFRegion - · SetNodeIDType -2024-09-06T10:02:48.798Z CNTRLR querying max. payload size... -2024-09-06T10:02:48.798Z SERIAL » 0x0104000b10e0 (6 bytes) -2024-09-06T10:02:48.799Z DRIVER » [REQ] [SerialAPISetup] - command: GetMaximumPayloadSize - payload: 0x10 -2024-09-06T10:02:48.801Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:48.802Z SERIAL « 0x0105010b102ece (7 bytes) -2024-09-06T10:02:48.802Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:48.803Z DRIVER « [RES] [SerialAPISetup] - command: GetMaximumPayloadSize - maximum payload size: 46 bytes -2024-09-06T10:02:48.804Z CNTRLR maximum payload size: 46 bytes -2024-09-06T10:02:48.804Z CNTRLR supported Z-Wave features: - · SmartStart -2024-09-06T10:02:48.804Z CNTRLR Querying configured RF region... -2024-09-06T10:02:48.805Z SERIAL » 0x0104000b20d0 (6 bytes) -2024-09-06T10:02:48.805Z DRIVER » [REQ] [SerialAPISetup] - command: GetRFRegion - payload: 0x20 -2024-09-06T10:02:48.807Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:48.808Z SERIAL « 0x0105010b2000d0 (7 bytes) -2024-09-06T10:02:48.808Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:48.809Z DRIVER « [RES] [SerialAPISetup] - command: GetRFRegion - region: Europe -2024-09-06T10:02:48.810Z CNTRLR The controller is using RF region Europe -2024-09-06T10:02:48.810Z CNTRLR Querying configured max. Long Range powerlevel... -2024-09-06T10:02:48.811Z SERIAL » 0x0104000b05f5 (6 bytes) -2024-09-06T10:02:48.811Z DRIVER » [REQ] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - payload: 0x05 -2024-09-06T10:02:48.813Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:48.814Z SERIAL « 0x0106010b05008c7a (8 bytes) -2024-09-06T10:02:48.815Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:48.815Z DRIVER « [RES] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - max. TX power (LR): 14.0 dBm -2024-09-06T10:02:48.816Z CNTRLR The max. LR powerlevel is 14.0 dBm -2024-09-06T10:02:48.816Z CNTRLR Querying configured Long Range channel information... -2024-09-06T10:02:48.817Z SERIAL » 0x010300db27 (5 bytes) -2024-09-06T10:02:48.817Z DRIVER » [REQ] [GetLongRangeChannel] -2024-09-06T10:02:48.819Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:48.820Z SERIAL « 0x010501db001030 (7 bytes) -2024-09-06T10:02:48.820Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:48.821Z DRIVER « [RES] [GetLongRangeChannel] - payload: 0x0010 -2024-09-06T10:02:48.822Z CNTRLR received Z-Wave Long Range channel information: - channel: Unsupported - supports auto channel selection: true -2024-09-06T10:02:48.822Z CNTRLR Performing soft reset... -2024-09-06T10:02:48.822Z SERIAL » 0x01030008f4 (5 bytes) -2024-09-06T10:02:48.823Z DRIVER » [REQ] [SoftReset] -2024-09-06T10:02:48.826Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:48.827Z CNTRLR Waiting for the controller to reconnect... -2024-09-06T10:02:48.827Z DRIVER all queues idle -2024-09-06T10:02:49.045Z SERIAL « 0x0112000a0700010100085e989f556c568f740025 (20 bytes) -2024-09-06T10:02:49.046Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:49.048Z DRIVER « [REQ] [SerialAPIStarted] - wake up reason: SoftwareReset - watchdog enabled: false - generic device class: 0x01 - specific device class: 0x00 - always listening: false - supports Long Range: false -2024-09-06T10:02:49.049Z CNTRLR reconnected and restarted -2024-09-06T10:02:49.050Z CNTRLR Starting hardware watchdog... -2024-09-06T10:02:49.051Z CNTRLR Switching serial API to 16-bit node IDs... -2024-09-06T10:02:49.052Z CNTRLR Switching serial API to 8-bit node IDs... -2024-09-06T10:02:49.053Z DRIVER all queues busy -2024-09-06T10:02:49.054Z SERIAL » 0x010300d22e (5 bytes) -2024-09-06T10:02:49.055Z DRIVER » [REQ] [StartWatchdog] -2024-09-06T10:02:49.058Z SERIAL » 0x0105000b800273 (7 bytes) -2024-09-06T10:02:49.060Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 16 bit -2024-09-06T10:02:49.061Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:49.063Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:49.064Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T10:02:49.065Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:49.065Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T10:02:49.066Z CNTRLR Switching to 16-bit node IDs successful -2024-09-06T10:02:49.066Z SERIAL » 0x0105000b800170 (7 bytes) -2024-09-06T10:02:49.067Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 8 bit -2024-09-06T10:02:49.069Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:49.070Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T10:02:49.071Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:49.071Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T10:02:49.072Z CNTRLR Switching to 8-bit node IDs successful -2024-09-06T10:02:49.073Z CNTRLR querying controller IDs... -2024-09-06T10:02:49.074Z SERIAL » 0x01030020dc (5 bytes) -2024-09-06T10:02:49.074Z DRIVER » [REQ] [GetControllerId] -2024-09-06T10:02:49.076Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:49.078Z SERIAL « 0x01080120f346aed7011b (10 bytes) -2024-09-06T10:02:49.078Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:49.079Z DRIVER « [RES] [GetControllerId] - home ID: 0xf346aed7 - own node ID: 1 -2024-09-06T10:02:49.079Z CNTRLR received controller IDs: - home ID: 0xf346aed7 - own node ID: 1 -2024-09-06T10:02:49.080Z CNTRLR Enabling TX status report... -2024-09-06T10:02:49.081Z SERIAL » 0x0105000b02ff0c (7 bytes) -2024-09-06T10:02:49.082Z DRIVER » [REQ] [SerialAPISetup] - command: SetTxStatusReport - enabled: true -2024-09-06T10:02:49.084Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:49.085Z SERIAL « 0x0105010b0201f3 (7 bytes) -2024-09-06T10:02:49.086Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:49.087Z DRIVER « [RES] [SerialAPISetup] - command: SetTxStatusReport - success: true -2024-09-06T10:02:49.087Z CNTRLR Enabling TX status report successful... -2024-09-06T10:02:49.088Z CNTRLR finding SUC... -2024-09-06T10:02:49.088Z SERIAL » 0x01030056aa (5 bytes) -2024-09-06T10:02:49.089Z DRIVER » [REQ] [GetSUCNodeId] -2024-09-06T10:02:49.091Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:49.092Z SERIAL « 0x0104015600ac (6 bytes) -2024-09-06T10:02:49.092Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:49.093Z DRIVER « [RES] [GetSUCNodeId] - payload: 0x00 -2024-09-06T10:02:49.093Z CNTRLR No SUC present in the network -2024-09-06T10:02:49.093Z CNTRLR There is no SUC/SIS in the network - promoting ourselves... -2024-09-06T10:02:49.094Z SERIAL » 0x01080054010125010285 (10 bytes) -2024-09-06T10:02:49.095Z DRIVER » [REQ] [SetSUCNodeId] - payload: 0x0101250102 -2024-09-06T10:02:49.098Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:49.100Z SERIAL « 0x0104015401af (6 bytes) -2024-09-06T10:02:49.100Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:49.101Z DRIVER « [RES] [SetSUCNodeId] - was executed: true -2024-09-06T10:02:49.102Z CNTRLR Promotion to SUC/SIS succeeded. -2024-09-06T10:02:49.102Z DRIVER all queues idle -2024-09-06T10:02:49.106Z CNTRLR [Node 001] [Manufacturer Specific] manufacturerId: metadata updated -2024-09-06T10:02:49.107Z CNTRLR [Node 001] [Manufacturer Specific] productType: metadata updated -2024-09-06T10:02:49.107Z CNTRLR [Node 001] [Manufacturer Specific] productId: metadata updated -2024-09-06T10:02:49.107Z CNTRLR [Node 001] [+] [Manufacturer Specific] manufacturerId: 634 -2024-09-06T10:02:49.108Z CNTRLR [Node 001] [+] [Manufacturer Specific] productType: 4 -2024-09-06T10:02:49.108Z CNTRLR [Node 001] [+] [Manufacturer Specific] productId: 1552 -2024-09-06T10:02:49.108Z CNTRLR [Node 001] [Version] firmwareVersions: metadata updated -2024-09-06T10:02:49.108Z CNTRLR [Node 001] [+] [Version] firmwareVersions: 1.30 -2024-09-06T10:02:49.108Z CNTRLR [Node 001] [Version] zWaveProtocolVersion: metadata updated -2024-09-06T10:02:49.109Z CNTRLR [Node 001] [+] [Version] zWaveProtocolVersion: "7.21.3" -2024-09-06T10:02:49.109Z CNTRLR [Node 001] [Version] sdkVersion: metadata updated -2024-09-06T10:02:49.109Z CNTRLR [Node 001] [+] [Version] sdkVersion: "7.21.3" -2024-09-06T10:02:49.109Z CNTRLR Interview completed -2024-09-06T10:02:49.109Z DRIVER Network key for S0 configured, enabling S0 security manager... -2024-09-06T10:02:49.109Z DRIVER At least one network key for S2 configured, enabling S2 security manager... -2024-09-06T10:02:49.110Z DRIVER At least one network key for Z-Wave Long Range configured, enabling security m - anager... -2024-09-06T10:02:49.111Z DRIVER driver ready -2024-09-06T10:02:53.746Z CNTRLR Starting inclusion process with strategy Default... -2024-09-06T10:02:53.747Z DRIVER all queues busy -2024-09-06T10:02:53.749Z SERIAL » 0x0105004ac10372 (7 bytes) -2024-09-06T10:02:53.750Z DRIVER » [REQ] [AddNodeToNetwork] - node type: Any - high power: true - network wide: true - callback id: 3 -2024-09-06T10:02:53.752Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:53.758Z SERIAL « 0x0107004a03010000b0 (9 bytes) -2024-09-06T10:02:53.759Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:53.760Z DRIVER « [REQ] [AddNodeToNetwork] - status: Ready - callback id: 3 -2024-09-06T10:02:53.760Z CNTRLR The controller is now ready to add nodes -2024-09-06T10:02:53.761Z DRIVER all queues idle -2024-09-06T10:02:57.799Z SERIAL « 0x0107004a03020000b3 (9 bytes) -2024-09-06T10:02:57.800Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:57.802Z DRIVER « [REQ] [AddNodeToNetwork] - status: NodeFound - callback id: 3 -2024-09-06T10:02:57.803Z DRIVER handling request AddNodeToNetwork (74) -2024-09-06T10:02:57.803Z DRIVER 1 handler registered! -2024-09-06T10:02:57.804Z DRIVER invoking handler #0 -2024-09-06T10:02:57.805Z CNTRLR handling add node request (status = NodeFound) -2024-09-06T10:02:57.904Z SERIAL « 0x0112004a0304020b0201005e989f556c568f7467 (20 bytes) -2024-09-06T10:02:57.905Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:57.905Z DRIVER « [REQ] [AddNodeToNetwork] - status: AddingController - callback id: 3 -2024-09-06T10:02:57.906Z DRIVER handling request AddNodeToNetwork (74) -2024-09-06T10:02:57.906Z DRIVER 1 handler registered! -2024-09-06T10:02:57.906Z DRIVER invoking handler #0 -2024-09-06T10:02:57.906Z CNTRLR handling add node request (status = AddingController) -2024-09-06T10:02:57.907Z DRIVER the message was handled -2024-09-06T10:02:58.325Z SERIAL « 0x0107004a03050200b6 (9 bytes) -2024-09-06T10:02:58.326Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:58.327Z DRIVER « [REQ] [AddNodeToNetwork] - status: ProtocolDone - callback id: 3 -2024-09-06T10:02:58.328Z DRIVER handling request AddNodeToNetwork (74) -2024-09-06T10:02:58.328Z DRIVER 1 handler registered! -2024-09-06T10:02:58.328Z DRIVER invoking handler #0 -2024-09-06T10:02:58.329Z CNTRLR handling add node request (status = ProtocolDone) -2024-09-06T10:02:58.329Z CNTRLR finishing inclusion process... -2024-09-06T10:02:58.330Z DRIVER all queues busy -2024-09-06T10:02:58.331Z SERIAL » 0x0105004ac50471 (7 bytes) -2024-09-06T10:02:58.331Z DRIVER » [REQ] [AddNodeToNetwork] - action: Stop - high power: true - network wide: true - callback id: 4 -2024-09-06T10:02:58.334Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:58.372Z SERIAL « 0x0107004a04060200b2 (9 bytes) -2024-09-06T10:02:58.373Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:58.373Z DRIVER « [REQ] [AddNodeToNetwork] - status: Done - callback id: 4 -2024-09-06T10:02:58.374Z SERIAL » 0x0105004ac50075 (7 bytes) -2024-09-06T10:02:58.375Z DRIVER » [REQ] [AddNodeToNetwork] - action: Stop - high power: true - network wide: true - callback id: 0 -2024-09-06T10:02:58.380Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:58.381Z CNTRLR The inclusion process was stopped -2024-09-06T10:02:58.381Z CNTRLR finished adding node 2: - basic device class: Static Controller - generic device class: Remote Controller - specific device class: Unused - supported CCs: - · Z-Wave Plus Info (0x5e) - · Security (0x98) - · Security 2 (0x9f) - · Transport Service (0x55) - · Supervision (0x6c) - · CRC-16 Encapsulation (0x56) - · Multi Command (0x8f) - · Inclusion Controller (0x74) - controlled CCs: -2024-09-06T10:02:58.382Z CNTRLR » [Node 002] Assigning SUC return route... -2024-09-06T10:02:58.382Z CNTRLR » [Node 002] Deleting SUC return route... -2024-09-06T10:02:58.383Z SERIAL » 0x010500550205a8 (7 bytes) -2024-09-06T10:02:58.383Z DRIVER » [Node 002] [REQ] [DeleteSUCReturnRoute] - payload: 0x0205 -2024-09-06T10:02:58.388Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:58.391Z SERIAL « 0x0104015501ae (6 bytes) -2024-09-06T10:02:58.392Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:58.393Z DRIVER « [RES] [DeleteSUCReturnRoute] - was executed: true -2024-09-06T10:02:58.457Z SERIAL « 0x01210055050000000000000000000000000000000000000000000000000000000 (35 bytes) - 0008e -2024-09-06T10:02:58.458Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:58.460Z DRIVER « [REQ] [DeleteSUCReturnRoute] - callback id: 5 - transmit status: OK -2024-09-06T10:02:58.464Z SERIAL » 0x010500510206af (7 bytes) -2024-09-06T10:02:58.466Z DRIVER » [Node 002] [REQ] [AssignSUCReturnRoute] - payload: 0x0206 -2024-09-06T10:02:58.468Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:58.475Z SERIAL « 0x0104015101aa (6 bytes) -2024-09-06T10:02:58.477Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:58.478Z DRIVER « [RES] [AssignSUCReturnRoute] - was executed: true -2024-09-06T10:02:58.549Z SERIAL « 0x01210051060000000000000000000000000000000000000000000000000000000 (35 bytes) - 00089 -2024-09-06T10:02:58.550Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:58.552Z DRIVER « [REQ] [AssignSUCReturnRoute] - callback id: 6 - transmit status: OK -2024-09-06T10:02:58.560Z SERIAL » 0x010e00a90102029f04250000000007e0 (16 bytes) -2024-09-06T10:02:58.561Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x25 - │ callback id: 7 - └─[Security2CCKEXGet] -2024-09-06T10:02:58.565Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:58.571Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T10:02:58.572Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:58.572Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T10:02:58.585Z SERIAL « 0x011d00a90700000100e17f7f7f7f00000300000000030100007f7f7f7f7fd2 (31 bytes) -2024-09-06T10:02:58.585Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:58.586Z DRIVER « [REQ] [SendDataBridge] - callback id: 7 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -31 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T10:03:08.614Z CNTRLR [Node 002] Timed out while waiting for a response from the node (ZW0201) -2024-09-06T10:03:08.616Z CNTRLR [Node 002] Security S2 bootstrapping failed: did not receive the node's desire - d security classes. -2024-09-06T10:03:08.617Z DRIVER the message was handled -2024-09-06T10:03:08.619Z DRIVER all queues idle -2024-09-06T10:03:13.620Z DRIVER all queues busy -2024-09-06T10:03:13.623Z SERIAL » 0x0103003bc7 (5 bytes) -2024-09-06T10:03:13.625Z DRIVER » [REQ] [GetBackgroundRSSI] -2024-09-06T10:03:13.628Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:13.631Z SERIAL « 0x0107013b9492927f29 (9 bytes) -2024-09-06T10:03:13.633Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:13.635Z DRIVER « [RES] [GetBackgroundRSSI] - channel 0: -108 dBm - channel 1: -110 dBm - channel 2: -110 dBm - channel 3: N/A -2024-09-06T10:03:13.639Z DRIVER all queues idle -2024-09-06T10:03:18.238Z DRIVER ███████╗ ██╗ ██╗ █████╗ ██╗ ██╗ ███████╗ ██╗ ███████╗ - ╚══███╔╝ ██║ ██║ ██╔══██╗ ██║ ██║ ██╔════╝ ██║ ██╔════╝ - ███╔╝ █████╗ ██║ █╗ ██║ ███████║ ██║ ██║ █████╗ ██║ ███████╗ - ███╔╝ ╚════╝ ██║███╗██║ ██╔══██║ ╚██╗ ██╔╝ ██╔══╝ ██ ██║ ╚════██║ - ███████╗ ╚███╔███╔╝ ██║ ██║ ╚████╔╝ ███████╗ ╚█████╔╝ ███████║ - ╚══════╝ ╚══╝╚══╝ ╚═╝ ╚═╝ ╚═══╝ ╚══════╝ ╚════╝ ╚══════╝ -2024-09-06T10:03:18.239Z DRIVER version 13.2.0 -2024-09-06T10:03:18.240Z DRIVER -2024-09-06T10:03:18.240Z DRIVER starting driver... -2024-09-06T10:03:18.240Z DRIVER opening serial port /dev/serial/by-id/usb-Zooz_800_Z-Wave_Stick_533D004242-if0 - 0 -2024-09-06T10:03:18.249Z DRIVER serial port opened -2024-09-06T10:03:18.250Z SERIAL » 0x15 (1 bytes) -2024-09-06T10:03:19.255Z DRIVER loading configuration... -2024-09-06T10:03:19.258Z CONFIG version 13.2.0 -2024-09-06T10:03:19.582Z DRIVER beginning interview... -2024-09-06T10:03:19.584Z DRIVER added request handler for AddNodeToNetwork (0x4a)... - 1 registered -2024-09-06T10:03:19.584Z DRIVER added request handler for RemoveNodeFromNetwork (0x4b)... - 1 registered -2024-09-06T10:03:19.584Z DRIVER added request handler for ReplaceFailedNode (0x63)... - 1 registered -2024-09-06T10:03:19.584Z DRIVER added request handler for SetLearnMode (0x50)... - 1 registered -2024-09-06T10:03:19.585Z CNTRLR querying Serial API capabilities... -2024-09-06T10:03:19.593Z SERIAL » 0x01030007fb (5 bytes) -2024-09-06T10:03:19.594Z DRIVER » [REQ] [GetSerialApiCapabilities] -2024-09-06T10:03:19.600Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:19.601Z SERIAL « 0x012b0107011e027a00040610f6873e88cf2bc04ffbd7fde09700008000808680b (45 bytes) - a0500700000ee7fc000000035 -2024-09-06T10:03:19.602Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:19.603Z DRIVER « [RES] [GetSerialApiCapabilities] - payload: 0x011e027a00040610f6873e88cf2bc04ffbd7fde09700008000808680ba0500700 - 000ee7fc0000000 -2024-09-06T10:03:19.605Z CNTRLR received API capabilities: - firmware version: 1.30 - manufacturer ID: 0x027a - product type: 0x04 - product ID: 0x0610 - supported functions: - · GetSerialApiInitData (0x02) - · SetApplicationNodeInformation (0x03) - · GetControllerCapabilities (0x05) - · SetSerialApiTimeouts (0x06) - · GetSerialApiCapabilities (0x07) - · SoftReset (0x08) - · GetProtocolVersion (0x09) - · SerialAPIStarted (0x0a) - · SerialAPISetup (0x0b) - · SetRFReceiveMode (0x10) - · SendNodeInformation (0x12) - · SendData (0x13) - · SendDataMulticast (0x14) - · GetControllerVersion (0x15) - · SendDataAbort (0x16) - · FUNC_ID_ZW_GET_RANDOM (0x1c) - · GetControllerId (0x20) - · UNKNOWN_FUNC_MEMORY_GET_BYTE (0x21) - · UNKNOWN_FUNC_MEMORY_PUT_BYTE (0x22) - · UNKNOWN_FUNC_MEMORY_GET_BUFFER (0x23) - · UNKNOWN_FUNC_MEMORY_PUT_BUFFER (0x24) - · EnterBootloader (0x27) - · UNKNOWN_FUNC_UNKNOWN_0x28 (0x28) - · GetNVMId (0x29) - · ExtNVMReadLongBuffer (0x2a) - · ExtNVMReadLongByte (0x2c) - · NVMOperations (0x2e) - · ClearTxTimers (0x37) - · GetTxTimers (0x38) - · ClearNetworkStats (0x39) - · GetNetworkStats (0x3a) - · GetBackgroundRSSI (0x3b) - · SetListenBeforeTalkThreshold (0x3c) - · RemoveSpecificNodeIdFromNetwork (0x3f) - · GetNodeProtocolInfo (0x41) - · HardReset (0x42) - · FUNC_ID_ZW_REPLICATION_COMMAND_COMPLETE (0x44) - · FUNC_ID_ZW_REPLICATION_SEND_DATA (0x45) - · AssignReturnRoute (0x46) - · DeleteReturnRoute (0x47) - · RequestNodeNeighborUpdate (0x48) - · ApplicationUpdateRequest (0x49) - · AddNodeToNetwork (0x4a) - · RemoveNodeFromNetwork (0x4b) - · AddPrimaryController (0x4d) - · AssignPriorityReturnRoute (0x4f) - · SetLearnMode (0x50) - · AssignSUCReturnRoute (0x51) - · RequestNetworkUpdate (0x53) - · SetSUCNodeId (0x54) - · DeleteSUCReturnRoute (0x55) - · GetSUCNodeId (0x56) - · SendSUCNodeId (0x57) - · AssignPrioritySUCReturnRoute (0x58) - · ExploreRequestInclusion (0x5e) - · ExploreRequestExclusion (0x5f) - · RequestNodeInfo (0x60) - · RemoveFailedNode (0x61) - · IsFailedNode (0x62) - · ReplaceFailedNode (0x63) - · undefined (0x65) - · RequestProtocolCCEncryption (0x68) - · GetRoutingInfo (0x80) - · LockUnlockLastRoute (0x90) - · GetPriorityRoute (0x92) - · SetPriorityRoute (0x93) - · UNKNOWN_FUNC_UNKNOWN_0x98 (0x98) - · VirtualNodeSetNodeInfo (0xa0) - · VirtualNodeSendNodeInfo (0xa2) - · VirtualNodeSetLearnMode (0xa4) - · GetVirtualNodes (0xa5) - · IsVirtualNode (0xa6) - · BridgeApplicationCommand (0xa8) - · SendDataBridge (0xa9) - · SendDataMulticastBridge (0xab) - · GetLibrary (0xbd) - · SendTestFrame (0xbe) - · GetProtocolStatus (0xbf) - · StartWatchdog (0xd2) - · StopWatchdog (0xd3) - · SetMaximumRoutingAttempts (0xd4) - · SetMaxSmartStartInclusionRequestInterval (0xd6) - · undefined (0xd7) - · undefined (0xd8) - · Shutdown (0xd9) - · GetLongRangeNodes (0xda) - · GetLongRangeChannel (0xdb) - · SetLongRangeChannel (0xdc) - · SetLongRangeShadowNodeIDs (0xdd) - · Proprietary_DE (0xde) - · Proprietary_DF (0xdf) - · Proprietary_E7 (0xe7) - · Proprietary_E8 (0xe8) -2024-09-06T10:03:19.606Z CNTRLR querying additional controller information... -2024-09-06T10:03:19.607Z SERIAL » 0x01030002fe (5 bytes) -2024-09-06T10:03:19.607Z DRIVER » [REQ] [GetSerialApiInitData] -2024-09-06T10:03:19.612Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:19.614Z SERIAL « 0x012501020a081d030000000000000000000000000000000000000000000000000 (39 bytes) - 00000000800cd -2024-09-06T10:03:19.615Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:19.615Z DRIVER « [RES] [GetSerialApiInitData] - payload: 0x0a081d03000000000000000000000000000000000000000000000000000000000 - 800 -2024-09-06T10:03:19.617Z CNTRLR received additional controller information: - Z-Wave API version: 1 (official) - Z-Wave chip type: EFR32ZG23 / ZGM230S - node type Controller - controller role: primary - controller is the SIS: true - controller supports timers: false - Z-Wave Classic nodes: 1, 2 -2024-09-06T10:03:19.617Z CNTRLR querying version info... -2024-09-06T10:03:19.618Z SERIAL » 0x01030015e9 (5 bytes) -2024-09-06T10:03:19.619Z DRIVER » [REQ] [GetControllerVersion] -2024-09-06T10:03:19.626Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:19.627Z SERIAL « 0x011001155a2d5761766520372e3231000794 (18 bytes) -2024-09-06T10:03:19.628Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:19.632Z DRIVER « [RES] [GetControllerVersion] - payload: 0x5a2d5761766520372e32310007 -2024-09-06T10:03:19.633Z CNTRLR received version info: - controller type: Bridge Controller - library version: Z-Wave 7.21 -2024-09-06T10:03:19.633Z CNTRLR querying protocol version info... -2024-09-06T10:03:19.635Z SERIAL » 0x01030009f5 (5 bytes) -2024-09-06T10:03:19.636Z DRIVER » [REQ] [GetProtocolVersion] -2024-09-06T10:03:19.642Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:19.642Z SERIAL « 0x011901090007150300f4353162666237323665306662383733380f (27 bytes) -2024-09-06T10:03:19.643Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:19.643Z DRIVER « [RES] [GetProtocolVersion] - payload: 0x0007150300f435316266623732366530666238373338 -2024-09-06T10:03:19.644Z CNTRLR received protocol version info: - protocol type: Z-Wave - protocol version: 7.21.3 - appl. framework build no.: 244 - git commit hash: 35316266623732366530666238373338 -2024-09-06T10:03:19.645Z CNTRLR querying controller capabilities... -2024-09-06T10:03:19.646Z SERIAL » 0x01030005f9 (5 bytes) -2024-09-06T10:03:19.646Z DRIVER » [REQ] [GetControllerCapabilities] -2024-09-06T10:03:19.652Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:19.653Z SERIAL « 0x010401051ce3 (6 bytes) -2024-09-06T10:03:19.653Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:19.654Z DRIVER « [RES] [GetControllerCapabilities] - payload: 0x1c -2024-09-06T10:03:19.655Z CNTRLR received controller capabilities: - controller role: Primary - is the SUC: true - started this network: true - SIS is present: true - was real primary: true -2024-09-06T10:03:19.655Z CNTRLR querying serial API setup capabilities... -2024-09-06T10:03:19.656Z SERIAL » 0x0104000b01f1 (6 bytes) -2024-09-06T10:03:19.657Z DRIVER » [REQ] [SerialAPISetup] - command: GetSupportedCommands - payload: 0x01 -2024-09-06T10:03:19.661Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:19.661Z SERIAL « 0x0116010b01ff9f8007800000008000000000000000800085 (24 bytes) -2024-09-06T10:03:19.662Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:19.663Z DRIVER « [RES] [SerialAPISetup] - command: GetSupportedCommands - payload: 0xff9f80078000000080000000000000008000 -2024-09-06T10:03:19.664Z CNTRLR supported serial API setup commands: - · GetSupportedCommands - · SetTxStatusReport - · SetLongRangeMaximumTxPower - · SetPowerlevel - · GetLongRangeMaximumTxPower - · GetPowerlevel - · GetMaximumPayloadSize - · GetLongRangeMaximumPayloadSize - · SetPowerlevel16Bit - · GetPowerlevel16Bit - · GetRFRegion - · SetRFRegion - · SetNodeIDType -2024-09-06T10:03:19.664Z CNTRLR querying max. payload size... -2024-09-06T10:03:19.665Z SERIAL » 0x0104000b10e0 (6 bytes) -2024-09-06T10:03:19.666Z DRIVER » [REQ] [SerialAPISetup] - command: GetMaximumPayloadSize - payload: 0x10 -2024-09-06T10:03:19.670Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:19.670Z SERIAL « 0x0105010b102ece (7 bytes) -2024-09-06T10:03:19.671Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:19.672Z DRIVER « [RES] [SerialAPISetup] - command: GetMaximumPayloadSize - maximum payload size: 46 bytes -2024-09-06T10:03:19.672Z CNTRLR maximum payload size: 46 bytes -2024-09-06T10:03:19.673Z CNTRLR supported Z-Wave features: - · SmartStart -2024-09-06T10:03:19.673Z CNTRLR Querying configured RF region... -2024-09-06T10:03:19.674Z SERIAL » 0x0104000b20d0 (6 bytes) -2024-09-06T10:03:19.675Z DRIVER » [REQ] [SerialAPISetup] - command: GetRFRegion - payload: 0x20 -2024-09-06T10:03:19.680Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:19.680Z SERIAL « 0x0105010b2000d0 (7 bytes) -2024-09-06T10:03:19.680Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:19.681Z DRIVER « [RES] [SerialAPISetup] - command: GetRFRegion - region: Europe -2024-09-06T10:03:19.682Z CNTRLR The controller is using RF region Europe -2024-09-06T10:03:19.682Z CNTRLR Querying configured max. Long Range powerlevel... -2024-09-06T10:03:19.683Z SERIAL » 0x0104000b05f5 (6 bytes) -2024-09-06T10:03:19.684Z DRIVER » [REQ] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - payload: 0x05 -2024-09-06T10:03:19.688Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:19.688Z SERIAL « 0x0106010b05008c7a (8 bytes) -2024-09-06T10:03:19.689Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:19.689Z DRIVER « [RES] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - max. TX power (LR): 14.0 dBm -2024-09-06T10:03:19.690Z CNTRLR The max. LR powerlevel is 14.0 dBm -2024-09-06T10:03:19.690Z CNTRLR Querying configured Long Range channel information... -2024-09-06T10:03:19.691Z SERIAL » 0x010300db27 (5 bytes) -2024-09-06T10:03:19.692Z DRIVER » [REQ] [GetLongRangeChannel] -2024-09-06T10:03:19.696Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:19.697Z SERIAL « 0x010501db001030 (7 bytes) -2024-09-06T10:03:19.697Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:19.698Z DRIVER « [RES] [GetLongRangeChannel] - payload: 0x0010 -2024-09-06T10:03:19.699Z CNTRLR received Z-Wave Long Range channel information: - channel: Unsupported - supports auto channel selection: true -2024-09-06T10:03:19.699Z CNTRLR Performing soft reset... -2024-09-06T10:03:19.701Z SERIAL » 0x01030008f4 (5 bytes) -2024-09-06T10:03:19.702Z DRIVER » [REQ] [SoftReset] -2024-09-06T10:03:19.708Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:19.709Z CNTRLR Waiting for the controller to reconnect... -2024-09-06T10:03:19.710Z DRIVER all queues idle -2024-09-06T10:03:19.923Z SERIAL « 0x0112000a0700010100085e989f556c568f740025 (20 bytes) -2024-09-06T10:03:19.923Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:19.924Z DRIVER « [REQ] [SerialAPIStarted] - wake up reason: SoftwareReset - watchdog enabled: false - generic device class: 0x01 - specific device class: 0x00 - always listening: false - supports Long Range: false -2024-09-06T10:03:19.924Z CNTRLR reconnected and restarted -2024-09-06T10:03:19.924Z CNTRLR Starting hardware watchdog... -2024-09-06T10:03:19.925Z CNTRLR Switching serial API to 16-bit node IDs... -2024-09-06T10:03:19.925Z CNTRLR Switching serial API to 8-bit node IDs... -2024-09-06T10:03:19.926Z DRIVER all queues busy -2024-09-06T10:03:19.926Z SERIAL » 0x010300d22e (5 bytes) -2024-09-06T10:03:19.927Z DRIVER » [REQ] [StartWatchdog] -2024-09-06T10:03:19.928Z SERIAL » 0x0105000b800273 (7 bytes) -2024-09-06T10:03:19.928Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 16 bit -2024-09-06T10:03:19.930Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:19.935Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:19.936Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T10:03:19.937Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:19.937Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T10:03:19.938Z CNTRLR Switching to 16-bit node IDs successful -2024-09-06T10:03:19.939Z SERIAL » 0x0105000b800170 (7 bytes) -2024-09-06T10:03:19.939Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 8 bit -2024-09-06T10:03:19.941Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:19.942Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T10:03:19.943Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:19.943Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T10:03:19.944Z CNTRLR Switching to 8-bit node IDs successful -2024-09-06T10:03:19.944Z CNTRLR querying controller IDs... -2024-09-06T10:03:19.945Z SERIAL » 0x01030020dc (5 bytes) -2024-09-06T10:03:19.945Z DRIVER » [REQ] [GetControllerId] -2024-09-06T10:03:19.949Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:19.950Z SERIAL « 0x01080120f346aed7011b (10 bytes) -2024-09-06T10:03:19.950Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:19.951Z DRIVER « [RES] [GetControllerId] - home ID: 0xf346aed7 - own node ID: 1 -2024-09-06T10:03:19.952Z CNTRLR received controller IDs: - home ID: 0xf346aed7 - own node ID: 1 -2024-09-06T10:03:19.952Z CNTRLR Enabling TX status report... -2024-09-06T10:03:19.953Z SERIAL » 0x0105000b02ff0c (7 bytes) -2024-09-06T10:03:19.954Z DRIVER » [REQ] [SerialAPISetup] - command: SetTxStatusReport - enabled: true -2024-09-06T10:03:19.956Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:19.957Z SERIAL « 0x0105010b0201f3 (7 bytes) -2024-09-06T10:03:19.957Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:19.958Z DRIVER « [RES] [SerialAPISetup] - command: SetTxStatusReport - success: true -2024-09-06T10:03:19.959Z CNTRLR Enabling TX status report successful... -2024-09-06T10:03:19.959Z CNTRLR finding SUC... -2024-09-06T10:03:19.960Z SERIAL » 0x01030056aa (5 bytes) -2024-09-06T10:03:19.960Z DRIVER » [REQ] [GetSUCNodeId] -2024-09-06T10:03:19.962Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:19.963Z SERIAL « 0x0104015601ad (6 bytes) -2024-09-06T10:03:19.963Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:19.964Z DRIVER « [RES] [GetSUCNodeId] - payload: 0x01 -2024-09-06T10:03:19.965Z CNTRLR This is the SUC -2024-09-06T10:03:19.965Z DRIVER all queues idle -2024-09-06T10:03:19.973Z DRIVER Cache file for homeId 0xf346aed7 found, attempting to restore the network from - cache... -2024-09-06T10:03:19.978Z CNTRLR [Node 001] Embedded device config loaded -2024-09-06T10:03:19.979Z DRIVER Restoring the network from cache was successful! -2024-09-06T10:03:19.979Z CNTRLR [Node 001] [Manufacturer Specific] manufacturerId: metadata updated -2024-09-06T10:03:19.980Z CNTRLR [Node 001] [Manufacturer Specific] productType: metadata updated -2024-09-06T10:03:19.980Z CNTRLR [Node 001] [Manufacturer Specific] productId: metadata updated -2024-09-06T10:03:19.981Z CNTRLR [Node 001] [~] [Manufacturer Specific] manufacturerId: 634 => 634 -2024-09-06T10:03:19.981Z CNTRLR [Node 001] [~] [Manufacturer Specific] productType: 4 => 4 -2024-09-06T10:03:19.981Z CNTRLR [Node 001] [~] [Manufacturer Specific] productId: 1552 => 1552 -2024-09-06T10:03:19.982Z CNTRLR [Node 001] [Version] firmwareVersions: metadata updated -2024-09-06T10:03:19.982Z CNTRLR [Node 001] [~] [Version] firmwareVersions: 1.30 => 1.30 -2024-09-06T10:03:19.982Z CNTRLR [Node 001] [Version] zWaveProtocolVersion: metadata updated -2024-09-06T10:03:19.983Z CNTRLR [Node 001] [~] [Version] zWaveProtocolVersion: "7.21.3" => "7.21.3" -2024-09-06T10:03:19.983Z CNTRLR [Node 001] [Version] sdkVersion: metadata updated -2024-09-06T10:03:19.983Z CNTRLR [Node 001] [~] [Version] sdkVersion: "7.21.3" => "7.21.3" -2024-09-06T10:03:19.984Z CNTRLR Interview completed -2024-09-06T10:03:19.984Z DRIVER Network key for S0 configured, enabling S0 security manager... -2024-09-06T10:03:19.985Z DRIVER At least one network key for S2 configured, enabling S2 security manager... -2024-09-06T10:03:19.987Z DRIVER At least one network key for Z-Wave Long Range configured, enabling security m - anager... -2024-09-06T10:03:19.988Z DRIVER driver ready -2024-09-06T10:03:20.989Z CNTRLR Updating the controller NIF... -2024-09-06T10:03:20.990Z DRIVER all queues busy -2024-09-06T10:03:20.991Z SERIAL » 0x010f0003010100085e989f556c568f7436 (17 bytes) -2024-09-06T10:03:20.992Z DRIVER » [REQ] [SetApplicationNodeInformation] - is listening: true - generic device class: 0x01 - specific device class: 0x00 - supported CCs: - · Z-Wave Plus Info - · Security - · Security 2 - · Transport Service - · Supervision - · CRC-16 Encapsulation - · Multi Command - · Inclusion Controller - controlled CCs: -2024-09-06T10:03:20.996Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:20.998Z CNTRLR performing hard reset... -2024-09-06T10:03:20.999Z SERIAL » 0x0104004201b8 (6 bytes) -2024-09-06T10:03:20.999Z DRIVER » [REQ] [HardReset] - callback id: 1 -2024-09-06T10:03:21.002Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:21.037Z SERIAL « 0x0104004201b8 (6 bytes) -2024-09-06T10:03:21.038Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:21.039Z DRIVER « [REQ] [HardReset] - callback id: 1 -2024-09-06T10:03:21.039Z CNTRLR hard reset succeeded -2024-09-06T10:03:21.040Z CNTRLR querying Serial API capabilities... -2024-09-06T10:03:21.041Z SERIAL » 0x01030007fb (5 bytes) -2024-09-06T10:03:21.041Z DRIVER » [REQ] [GetSerialApiCapabilities] -2024-09-06T10:03:21.043Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:21.048Z SERIAL « 0x012b0107011e027a00040610f6873e88cf2bc04ffbd7fde09700008000808680b (45 bytes) - a0500700000ee7fc000000035 -2024-09-06T10:03:21.049Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:21.050Z DRIVER « [RES] [GetSerialApiCapabilities] - payload: 0x011e027a00040610f6873e88cf2bc04ffbd7fde09700008000808680ba0500700 - 000ee7fc0000000 -2024-09-06T10:03:21.051Z CNTRLR received API capabilities: - firmware version: 1.30 - manufacturer ID: 0x027a - product type: 0x04 - product ID: 0x0610 - supported functions: - · GetSerialApiInitData (0x02) - · SetApplicationNodeInformation (0x03) - · GetControllerCapabilities (0x05) - · SetSerialApiTimeouts (0x06) - · GetSerialApiCapabilities (0x07) - · SoftReset (0x08) - · GetProtocolVersion (0x09) - · SerialAPIStarted (0x0a) - · SerialAPISetup (0x0b) - · SetRFReceiveMode (0x10) - · SendNodeInformation (0x12) - · SendData (0x13) - · SendDataMulticast (0x14) - · GetControllerVersion (0x15) - · SendDataAbort (0x16) - · FUNC_ID_ZW_GET_RANDOM (0x1c) - · GetControllerId (0x20) - · UNKNOWN_FUNC_MEMORY_GET_BYTE (0x21) - · UNKNOWN_FUNC_MEMORY_PUT_BYTE (0x22) - · UNKNOWN_FUNC_MEMORY_GET_BUFFER (0x23) - · UNKNOWN_FUNC_MEMORY_PUT_BUFFER (0x24) - · EnterBootloader (0x27) - · UNKNOWN_FUNC_UNKNOWN_0x28 (0x28) - · GetNVMId (0x29) - · ExtNVMReadLongBuffer (0x2a) - · ExtNVMReadLongByte (0x2c) - · NVMOperations (0x2e) - · ClearTxTimers (0x37) - · GetTxTimers (0x38) - · ClearNetworkStats (0x39) - · GetNetworkStats (0x3a) - · GetBackgroundRSSI (0x3b) - · SetListenBeforeTalkThreshold (0x3c) - · RemoveSpecificNodeIdFromNetwork (0x3f) - · GetNodeProtocolInfo (0x41) - · HardReset (0x42) - · FUNC_ID_ZW_REPLICATION_COMMAND_COMPLETE (0x44) - · FUNC_ID_ZW_REPLICATION_SEND_DATA (0x45) - · AssignReturnRoute (0x46) - · DeleteReturnRoute (0x47) - · RequestNodeNeighborUpdate (0x48) - · ApplicationUpdateRequest (0x49) - · AddNodeToNetwork (0x4a) - · RemoveNodeFromNetwork (0x4b) - · AddPrimaryController (0x4d) - · AssignPriorityReturnRoute (0x4f) - · SetLearnMode (0x50) - · AssignSUCReturnRoute (0x51) - · RequestNetworkUpdate (0x53) - · SetSUCNodeId (0x54) - · DeleteSUCReturnRoute (0x55) - · GetSUCNodeId (0x56) - · SendSUCNodeId (0x57) - · AssignPrioritySUCReturnRoute (0x58) - · ExploreRequestInclusion (0x5e) - · ExploreRequestExclusion (0x5f) - · RequestNodeInfo (0x60) - · RemoveFailedNode (0x61) - · IsFailedNode (0x62) - · ReplaceFailedNode (0x63) - · undefined (0x65) - · RequestProtocolCCEncryption (0x68) - · GetRoutingInfo (0x80) - · LockUnlockLastRoute (0x90) - · GetPriorityRoute (0x92) - · SetPriorityRoute (0x93) - · UNKNOWN_FUNC_UNKNOWN_0x98 (0x98) - · VirtualNodeSetNodeInfo (0xa0) - · VirtualNodeSendNodeInfo (0xa2) - · VirtualNodeSetLearnMode (0xa4) - · GetVirtualNodes (0xa5) - · IsVirtualNode (0xa6) - · BridgeApplicationCommand (0xa8) - · SendDataBridge (0xa9) - · SendDataMulticastBridge (0xab) - · GetLibrary (0xbd) - · SendTestFrame (0xbe) - · GetProtocolStatus (0xbf) - · StartWatchdog (0xd2) - · StopWatchdog (0xd3) - · SetMaximumRoutingAttempts (0xd4) - · SetMaxSmartStartInclusionRequestInterval (0xd6) - · undefined (0xd7) - · undefined (0xd8) - · Shutdown (0xd9) - · GetLongRangeNodes (0xda) - · GetLongRangeChannel (0xdb) - · SetLongRangeChannel (0xdc) - · SetLongRangeShadowNodeIDs (0xdd) - · Proprietary_DE (0xde) - · Proprietary_DF (0xdf) - · Proprietary_E7 (0xe7) - · Proprietary_E8 (0xe8) -2024-09-06T10:03:21.052Z CNTRLR querying additional controller information... -2024-09-06T10:03:21.053Z SERIAL » 0x01030002fe (5 bytes) -2024-09-06T10:03:21.053Z DRIVER » [REQ] [GetSerialApiInitData] -2024-09-06T10:03:21.055Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:21.060Z SERIAL « 0x012501020a001d010000000000000000000000000000000000000000000000000 (39 bytes) - 00000000800c7 -2024-09-06T10:03:21.061Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:21.061Z DRIVER « [RES] [GetSerialApiInitData] - payload: 0x0a001d01000000000000000000000000000000000000000000000000000000000 - 800 -2024-09-06T10:03:21.062Z CNTRLR received additional controller information: - Z-Wave API version: 1 (official) - Z-Wave chip type: EFR32ZG23 / ZGM230S - node type Controller - controller role: primary - controller is the SIS: false - controller supports timers: false - Z-Wave Classic nodes: 1 -2024-09-06T10:03:21.062Z CNTRLR querying version info... -2024-09-06T10:03:21.063Z SERIAL » 0x01030015e9 (5 bytes) -2024-09-06T10:03:21.063Z DRIVER » [REQ] [GetControllerVersion] -2024-09-06T10:03:21.065Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:21.067Z SERIAL « 0x011001155a2d5761766520372e3231000794 (18 bytes) -2024-09-06T10:03:21.068Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:21.069Z DRIVER « [RES] [GetControllerVersion] - payload: 0x5a2d5761766520372e32310007 -2024-09-06T10:03:21.069Z CNTRLR received version info: - controller type: Bridge Controller - library version: Z-Wave 7.21 -2024-09-06T10:03:21.070Z CNTRLR querying protocol version info... -2024-09-06T10:03:21.070Z SERIAL » 0x01030009f5 (5 bytes) -2024-09-06T10:03:21.071Z DRIVER » [REQ] [GetProtocolVersion] -2024-09-06T10:03:21.072Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:21.076Z SERIAL « 0x011901090007150300f4353162666237323665306662383733380f (27 bytes) -2024-09-06T10:03:21.076Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:21.077Z DRIVER « [RES] [GetProtocolVersion] - payload: 0x0007150300f435316266623732366530666238373338 -2024-09-06T10:03:21.078Z CNTRLR received protocol version info: - protocol type: Z-Wave - protocol version: 7.21.3 - appl. framework build no.: 244 - git commit hash: 35316266623732366530666238373338 -2024-09-06T10:03:21.078Z CNTRLR querying controller capabilities... -2024-09-06T10:03:21.079Z SERIAL » 0x01030005f9 (5 bytes) -2024-09-06T10:03:21.079Z DRIVER » [REQ] [GetControllerCapabilities] -2024-09-06T10:03:21.081Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:21.082Z SERIAL « 0x0104010528d7 (6 bytes) -2024-09-06T10:03:21.083Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:21.084Z DRIVER « [RES] [GetControllerCapabilities] - payload: 0x28 -2024-09-06T10:03:21.084Z CNTRLR received controller capabilities: - controller role: Primary - is the SUC: false - started this network: true - SIS is present: false - was real primary: true -2024-09-06T10:03:21.085Z CNTRLR querying serial API setup capabilities... -2024-09-06T10:03:21.085Z SERIAL » 0x0104000b01f1 (6 bytes) -2024-09-06T10:03:21.086Z DRIVER » [REQ] [SerialAPISetup] - command: GetSupportedCommands - payload: 0x01 -2024-09-06T10:03:21.090Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:21.092Z SERIAL « 0x0116010b01ff9f8007800000008000000000000000800085 (24 bytes) -2024-09-06T10:03:21.092Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:21.092Z DRIVER « [RES] [SerialAPISetup] - command: GetSupportedCommands - payload: 0xff9f80078000000080000000000000008000 -2024-09-06T10:03:21.093Z CNTRLR supported serial API setup commands: - · GetSupportedCommands - · SetTxStatusReport - · SetLongRangeMaximumTxPower - · SetPowerlevel - · GetLongRangeMaximumTxPower - · GetPowerlevel - · GetMaximumPayloadSize - · GetLongRangeMaximumPayloadSize - · SetPowerlevel16Bit - · GetPowerlevel16Bit - · GetRFRegion - · SetRFRegion - · SetNodeIDType -2024-09-06T10:03:21.093Z CNTRLR querying max. payload size... -2024-09-06T10:03:21.094Z SERIAL » 0x0104000b10e0 (6 bytes) -2024-09-06T10:03:21.095Z DRIVER » [REQ] [SerialAPISetup] - command: GetMaximumPayloadSize - payload: 0x10 -2024-09-06T10:03:21.098Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:21.099Z SERIAL « 0x0105010b102ece (7 bytes) -2024-09-06T10:03:21.099Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:21.100Z DRIVER « [RES] [SerialAPISetup] - command: GetMaximumPayloadSize - maximum payload size: 46 bytes -2024-09-06T10:03:21.101Z CNTRLR maximum payload size: 46 bytes -2024-09-06T10:03:21.101Z CNTRLR supported Z-Wave features: - · SmartStart -2024-09-06T10:03:21.101Z CNTRLR Querying configured RF region... -2024-09-06T10:03:21.102Z SERIAL » 0x0104000b20d0 (6 bytes) -2024-09-06T10:03:21.102Z DRIVER » [REQ] [SerialAPISetup] - command: GetRFRegion - payload: 0x20 -2024-09-06T10:03:21.104Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:21.105Z SERIAL « 0x0105010b2000d0 (7 bytes) -2024-09-06T10:03:21.106Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:21.106Z DRIVER « [RES] [SerialAPISetup] - command: GetRFRegion - region: Europe -2024-09-06T10:03:21.107Z CNTRLR The controller is using RF region Europe -2024-09-06T10:03:21.107Z CNTRLR Querying configured max. Long Range powerlevel... -2024-09-06T10:03:21.108Z SERIAL » 0x0104000b05f5 (6 bytes) -2024-09-06T10:03:21.108Z DRIVER » [REQ] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - payload: 0x05 -2024-09-06T10:03:21.110Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:21.111Z SERIAL « 0x0106010b05008c7a (8 bytes) -2024-09-06T10:03:21.112Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:21.112Z DRIVER « [RES] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - max. TX power (LR): 14.0 dBm -2024-09-06T10:03:21.113Z CNTRLR The max. LR powerlevel is 14.0 dBm -2024-09-06T10:03:21.113Z CNTRLR Querying configured Long Range channel information... -2024-09-06T10:03:21.114Z SERIAL » 0x010300db27 (5 bytes) -2024-09-06T10:03:21.114Z DRIVER » [REQ] [GetLongRangeChannel] -2024-09-06T10:03:21.116Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:21.117Z SERIAL « 0x010501db001030 (7 bytes) -2024-09-06T10:03:21.118Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:21.118Z DRIVER « [RES] [GetLongRangeChannel] - payload: 0x0010 -2024-09-06T10:03:21.119Z CNTRLR received Z-Wave Long Range channel information: - channel: Unsupported - supports auto channel selection: true -2024-09-06T10:03:21.119Z CNTRLR Performing soft reset... -2024-09-06T10:03:21.120Z SERIAL » 0x01030008f4 (5 bytes) -2024-09-06T10:03:21.121Z DRIVER » [REQ] [SoftReset] -2024-09-06T10:03:21.123Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:21.123Z CNTRLR Waiting for the controller to reconnect... -2024-09-06T10:03:21.124Z DRIVER all queues idle -2024-09-06T10:03:21.349Z SERIAL « 0x0112000a0700010100085e989f556c568f740025 (20 bytes) -2024-09-06T10:03:21.351Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:21.353Z DRIVER « [REQ] [SerialAPIStarted] - wake up reason: SoftwareReset - watchdog enabled: false - generic device class: 0x01 - specific device class: 0x00 - always listening: false - supports Long Range: false -2024-09-06T10:03:21.354Z CNTRLR reconnected and restarted -2024-09-06T10:03:21.354Z CNTRLR Starting hardware watchdog... -2024-09-06T10:03:21.355Z CNTRLR Switching serial API to 16-bit node IDs... -2024-09-06T10:03:21.356Z CNTRLR Switching serial API to 8-bit node IDs... -2024-09-06T10:03:21.357Z DRIVER all queues busy -2024-09-06T10:03:21.359Z SERIAL » 0x010300d22e (5 bytes) -2024-09-06T10:03:21.360Z DRIVER » [REQ] [StartWatchdog] -2024-09-06T10:03:21.363Z SERIAL » 0x0105000b800273 (7 bytes) -2024-09-06T10:03:21.364Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 16 bit -2024-09-06T10:03:21.365Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:21.367Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:21.368Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T10:03:21.368Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:21.369Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T10:03:21.369Z CNTRLR Switching to 16-bit node IDs successful -2024-09-06T10:03:21.370Z SERIAL » 0x0105000b800170 (7 bytes) -2024-09-06T10:03:21.370Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 8 bit -2024-09-06T10:03:21.372Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:21.374Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T10:03:21.374Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:21.375Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T10:03:21.375Z CNTRLR Switching to 8-bit node IDs successful -2024-09-06T10:03:21.376Z CNTRLR querying controller IDs... -2024-09-06T10:03:21.376Z SERIAL » 0x01030020dc (5 bytes) -2024-09-06T10:03:21.377Z DRIVER » [REQ] [GetControllerId] -2024-09-06T10:03:21.379Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:21.380Z SERIAL « 0x01080120f41ad2d20139 (10 bytes) -2024-09-06T10:03:21.380Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:21.381Z DRIVER « [RES] [GetControllerId] - home ID: 0xf41ad2d2 - own node ID: 1 -2024-09-06T10:03:21.382Z CNTRLR received controller IDs: - home ID: 0xf41ad2d2 - own node ID: 1 -2024-09-06T10:03:21.382Z CNTRLR Enabling TX status report... -2024-09-06T10:03:21.383Z SERIAL » 0x0105000b02ff0c (7 bytes) -2024-09-06T10:03:21.383Z DRIVER » [REQ] [SerialAPISetup] - command: SetTxStatusReport - enabled: true -2024-09-06T10:03:21.386Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:21.387Z SERIAL « 0x0105010b0201f3 (7 bytes) -2024-09-06T10:03:21.387Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:21.388Z DRIVER « [RES] [SerialAPISetup] - command: SetTxStatusReport - success: true -2024-09-06T10:03:21.388Z CNTRLR Enabling TX status report successful... -2024-09-06T10:03:21.388Z CNTRLR finding SUC... -2024-09-06T10:03:21.389Z SERIAL » 0x01030056aa (5 bytes) -2024-09-06T10:03:21.389Z DRIVER » [REQ] [GetSUCNodeId] -2024-09-06T10:03:21.392Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:21.393Z SERIAL « 0x0104015600ac (6 bytes) -2024-09-06T10:03:21.393Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:21.394Z DRIVER « [RES] [GetSUCNodeId] - payload: 0x00 -2024-09-06T10:03:21.394Z CNTRLR No SUC present in the network -2024-09-06T10:03:21.395Z CNTRLR There is no SUC/SIS in the network - promoting ourselves... -2024-09-06T10:03:21.396Z SERIAL » 0x01080054010125010285 (10 bytes) -2024-09-06T10:03:21.396Z DRIVER » [REQ] [SetSUCNodeId] - payload: 0x0101250102 -2024-09-06T10:03:21.399Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:21.401Z SERIAL « 0x0104015401af (6 bytes) -2024-09-06T10:03:21.402Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:21.403Z DRIVER « [RES] [SetSUCNodeId] - was executed: true -2024-09-06T10:03:21.403Z CNTRLR Promotion to SUC/SIS succeeded. -2024-09-06T10:03:21.404Z DRIVER all queues idle -2024-09-06T10:03:21.410Z CNTRLR [Node 001] [Manufacturer Specific] manufacturerId: metadata updated -2024-09-06T10:03:21.410Z CNTRLR [Node 001] [Manufacturer Specific] productType: metadata updated -2024-09-06T10:03:21.410Z CNTRLR [Node 001] [Manufacturer Specific] productId: metadata updated -2024-09-06T10:03:21.411Z CNTRLR [Node 001] [+] [Manufacturer Specific] manufacturerId: 634 -2024-09-06T10:03:21.411Z CNTRLR [Node 001] [+] [Manufacturer Specific] productType: 4 -2024-09-06T10:03:21.411Z CNTRLR [Node 001] [+] [Manufacturer Specific] productId: 1552 -2024-09-06T10:03:21.411Z CNTRLR [Node 001] [Version] firmwareVersions: metadata updated -2024-09-06T10:03:21.412Z CNTRLR [Node 001] [+] [Version] firmwareVersions: 1.30 -2024-09-06T10:03:21.412Z CNTRLR [Node 001] [Version] zWaveProtocolVersion: metadata updated -2024-09-06T10:03:21.412Z CNTRLR [Node 001] [+] [Version] zWaveProtocolVersion: "7.21.3" -2024-09-06T10:03:21.412Z CNTRLR [Node 001] [Version] sdkVersion: metadata updated -2024-09-06T10:03:21.412Z CNTRLR [Node 001] [+] [Version] sdkVersion: "7.21.3" -2024-09-06T10:03:21.413Z CNTRLR Interview completed -2024-09-06T10:03:21.413Z DRIVER Network key for S0 configured, enabling S0 security manager... -2024-09-06T10:03:21.413Z DRIVER At least one network key for S2 configured, enabling S2 security manager... -2024-09-06T10:03:21.414Z DRIVER At least one network key for Z-Wave Long Range configured, enabling security m - anager... -2024-09-06T10:03:21.415Z DRIVER driver ready -2024-09-06T10:03:26.042Z CNTRLR Starting inclusion process with strategy Default... -2024-09-06T10:03:26.044Z DRIVER all queues busy -2024-09-06T10:03:26.046Z SERIAL » 0x0105004ac10372 (7 bytes) -2024-09-06T10:03:26.048Z DRIVER » [REQ] [AddNodeToNetwork] - node type: Any - high power: true - network wide: true - callback id: 3 -2024-09-06T10:03:26.054Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:26.056Z SERIAL « 0x0107004a03010000b0 (9 bytes) -2024-09-06T10:03:26.057Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:26.059Z DRIVER « [REQ] [AddNodeToNetwork] - status: Ready - callback id: 3 -2024-09-06T10:03:26.060Z CNTRLR The controller is now ready to add nodes -2024-09-06T10:03:26.060Z DRIVER all queues idle -2024-09-06T10:03:30.098Z SERIAL « 0x0107004a03020000b3 (9 bytes) -2024-09-06T10:03:30.099Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:30.101Z DRIVER « [REQ] [AddNodeToNetwork] - status: NodeFound - callback id: 3 -2024-09-06T10:03:30.102Z DRIVER handling request AddNodeToNetwork (74) -2024-09-06T10:03:30.102Z DRIVER 1 handler registered! -2024-09-06T10:03:30.103Z DRIVER invoking handler #0 -2024-09-06T10:03:30.104Z CNTRLR handling add node request (status = NodeFound) -2024-09-06T10:03:30.202Z SERIAL « 0x0112004a0304020b0201005e989f556c568f7467 (20 bytes) -2024-09-06T10:03:30.204Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:30.205Z DRIVER « [REQ] [AddNodeToNetwork] - status: AddingController - callback id: 3 -2024-09-06T10:03:30.206Z DRIVER handling request AddNodeToNetwork (74) -2024-09-06T10:03:30.207Z DRIVER 1 handler registered! -2024-09-06T10:03:30.207Z DRIVER invoking handler #0 -2024-09-06T10:03:30.207Z CNTRLR handling add node request (status = AddingController) -2024-09-06T10:03:30.211Z DRIVER the message was handled -2024-09-06T10:03:30.622Z SERIAL « 0x0107004a03050200b6 (9 bytes) -2024-09-06T10:03:30.624Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:30.625Z DRIVER « [REQ] [AddNodeToNetwork] - status: ProtocolDone - callback id: 3 -2024-09-06T10:03:30.626Z DRIVER handling request AddNodeToNetwork (74) -2024-09-06T10:03:30.626Z DRIVER 1 handler registered! -2024-09-06T10:03:30.627Z DRIVER invoking handler #0 -2024-09-06T10:03:30.627Z CNTRLR handling add node request (status = ProtocolDone) -2024-09-06T10:03:30.627Z CNTRLR finishing inclusion process... -2024-09-06T10:03:30.628Z DRIVER all queues busy -2024-09-06T10:03:30.628Z SERIAL » 0x0105004ac50471 (7 bytes) -2024-09-06T10:03:30.629Z DRIVER » [REQ] [AddNodeToNetwork] - action: Stop - high power: true - network wide: true - callback id: 4 -2024-09-06T10:03:30.632Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:30.669Z SERIAL « 0x0107004a04060200b2 (9 bytes) -2024-09-06T10:03:30.669Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:30.670Z DRIVER « [REQ] [AddNodeToNetwork] - status: Done - callback id: 4 -2024-09-06T10:03:30.671Z SERIAL » 0x0105004ac50075 (7 bytes) -2024-09-06T10:03:30.671Z DRIVER » [REQ] [AddNodeToNetwork] - action: Stop - high power: true - network wide: true - callback id: 0 -2024-09-06T10:03:30.677Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:30.678Z CNTRLR The inclusion process was stopped -2024-09-06T10:03:30.678Z CNTRLR finished adding node 2: - basic device class: Static Controller - generic device class: Remote Controller - specific device class: Unused - supported CCs: - · Z-Wave Plus Info (0x5e) - · Security (0x98) - · Security 2 (0x9f) - · Transport Service (0x55) - · Supervision (0x6c) - · CRC-16 Encapsulation (0x56) - · Multi Command (0x8f) - · Inclusion Controller (0x74) - controlled CCs: -2024-09-06T10:03:30.679Z CNTRLR » [Node 002] Assigning SUC return route... -2024-09-06T10:03:30.679Z CNTRLR » [Node 002] Deleting SUC return route... -2024-09-06T10:03:30.680Z SERIAL » 0x010500550205a8 (7 bytes) -2024-09-06T10:03:30.680Z DRIVER » [Node 002] [REQ] [DeleteSUCReturnRoute] - payload: 0x0205 -2024-09-06T10:03:30.684Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:30.688Z SERIAL « 0x0104015501ae (6 bytes) -2024-09-06T10:03:30.689Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:30.689Z DRIVER « [RES] [DeleteSUCReturnRoute] - was executed: true -2024-09-06T10:03:30.753Z SERIAL « 0x01210055050000000000000000000000000000000000000000000000000000000 (35 bytes) - 0008e -2024-09-06T10:03:30.754Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:30.756Z DRIVER « [REQ] [DeleteSUCReturnRoute] - callback id: 5 - transmit status: OK -2024-09-06T10:03:30.759Z SERIAL » 0x010500510206af (7 bytes) -2024-09-06T10:03:30.760Z DRIVER » [Node 002] [REQ] [AssignSUCReturnRoute] - payload: 0x0206 -2024-09-06T10:03:30.762Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:30.769Z SERIAL « 0x0104015101aa (6 bytes) -2024-09-06T10:03:30.770Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:30.771Z DRIVER « [RES] [AssignSUCReturnRoute] - was executed: true -2024-09-06T10:03:30.849Z SERIAL « 0x01210051060000000000000000000000000000000000000000000000000000000 (35 bytes) - 00089 -2024-09-06T10:03:30.849Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:30.854Z DRIVER « [REQ] [AssignSUCReturnRoute] - callback id: 6 - transmit status: OK -2024-09-06T10:03:30.858Z SERIAL » 0x010e00a90102029f04250000000007e0 (16 bytes) -2024-09-06T10:03:30.863Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x25 - │ callback id: 7 - └─[Security2CCKEXGet] -2024-09-06T10:03:30.868Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:30.875Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T10:03:30.876Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:30.877Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T10:03:30.891Z SERIAL « 0x011d00a90700000100e17f7f7f7f00000300000000030100007f7f7f7f7fd2 (31 bytes) -2024-09-06T10:03:30.892Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:30.893Z DRIVER « [REQ] [SendDataBridge] - callback id: 7 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -31 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T10:03:40.931Z CNTRLR [Node 002] Timed out while waiting for a response from the node (ZW0201) -2024-09-06T10:03:40.932Z CNTRLR [Node 002] Security S2 bootstrapping failed: did not receive the node's desire - d security classes. -2024-09-06T10:03:40.934Z DRIVER the message was handled -2024-09-06T10:03:40.935Z DRIVER all queues idle -2024-09-06T10:03:45.937Z DRIVER all queues busy -2024-09-06T10:03:45.940Z SERIAL » 0x0103003bc7 (5 bytes) -2024-09-06T10:03:45.943Z DRIVER » [REQ] [GetBackgroundRSSI] -2024-09-06T10:03:45.946Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:45.949Z SERIAL « 0x0107013b9493937f29 (9 bytes) -2024-09-06T10:03:45.950Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:45.952Z DRIVER « [RES] [GetBackgroundRSSI] - channel 0: -108 dBm - channel 1: -109 dBm - channel 2: -109 dBm - channel 3: N/A -2024-09-06T10:03:45.954Z DRIVER all queues idle -2024-09-06T10:04:11.380Z DRIVER ███████╗ ██╗ ██╗ █████╗ ██╗ ██╗ ███████╗ ██╗ ███████╗ - ╚══███╔╝ ██║ ██║ ██╔══██╗ ██║ ██║ ██╔════╝ ██║ ██╔════╝ - ███╔╝ █████╗ ██║ █╗ ██║ ███████║ ██║ ██║ █████╗ ██║ ███████╗ - ███╔╝ ╚════╝ ██║███╗██║ ██╔══██║ ╚██╗ ██╔╝ ██╔══╝ ██ ██║ ╚════██║ - ███████╗ ╚███╔███╔╝ ██║ ██║ ╚████╔╝ ███████╗ ╚█████╔╝ ███████║ - ╚══════╝ ╚══╝╚══╝ ╚═╝ ╚═╝ ╚═══╝ ╚══════╝ ╚════╝ ╚══════╝ -2024-09-06T10:04:11.383Z DRIVER version 13.2.0 -2024-09-06T10:04:11.384Z DRIVER -2024-09-06T10:04:11.384Z DRIVER starting driver... -2024-09-06T10:04:11.385Z DRIVER opening serial port /dev/serial/by-id/usb-Zooz_800_Z-Wave_Stick_533D004242-if0 - 0 -2024-09-06T10:04:11.400Z DRIVER serial port opened -2024-09-06T10:04:11.402Z SERIAL » 0x15 (1 bytes) -2024-09-06T10:04:12.409Z DRIVER loading configuration... -2024-09-06T10:04:12.414Z CONFIG version 13.2.0 -2024-09-06T10:04:12.725Z DRIVER beginning interview... -2024-09-06T10:04:12.726Z DRIVER added request handler for AddNodeToNetwork (0x4a)... - 1 registered -2024-09-06T10:04:12.726Z DRIVER added request handler for RemoveNodeFromNetwork (0x4b)... - 1 registered -2024-09-06T10:04:12.726Z DRIVER added request handler for ReplaceFailedNode (0x63)... - 1 registered -2024-09-06T10:04:12.727Z DRIVER added request handler for SetLearnMode (0x50)... - 1 registered -2024-09-06T10:04:12.727Z CNTRLR querying Serial API capabilities... -2024-09-06T10:04:12.736Z SERIAL » 0x01030007fb (5 bytes) -2024-09-06T10:04:12.736Z DRIVER » [REQ] [GetSerialApiCapabilities] -2024-09-06T10:04:12.743Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:12.745Z SERIAL « 0x012b0107011e027a00040610f6873e88cf2bc04ffbd7fde09700008000808680b (45 bytes) - a0500700000ee7fc000000035 -2024-09-06T10:04:12.746Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:12.747Z DRIVER « [RES] [GetSerialApiCapabilities] - payload: 0x011e027a00040610f6873e88cf2bc04ffbd7fde09700008000808680ba0500700 - 000ee7fc0000000 -2024-09-06T10:04:12.749Z CNTRLR received API capabilities: - firmware version: 1.30 - manufacturer ID: 0x027a - product type: 0x04 - product ID: 0x0610 - supported functions: - · GetSerialApiInitData (0x02) - · SetApplicationNodeInformation (0x03) - · GetControllerCapabilities (0x05) - · SetSerialApiTimeouts (0x06) - · GetSerialApiCapabilities (0x07) - · SoftReset (0x08) - · GetProtocolVersion (0x09) - · SerialAPIStarted (0x0a) - · SerialAPISetup (0x0b) - · SetRFReceiveMode (0x10) - · SendNodeInformation (0x12) - · SendData (0x13) - · SendDataMulticast (0x14) - · GetControllerVersion (0x15) - · SendDataAbort (0x16) - · FUNC_ID_ZW_GET_RANDOM (0x1c) - · GetControllerId (0x20) - · UNKNOWN_FUNC_MEMORY_GET_BYTE (0x21) - · UNKNOWN_FUNC_MEMORY_PUT_BYTE (0x22) - · UNKNOWN_FUNC_MEMORY_GET_BUFFER (0x23) - · UNKNOWN_FUNC_MEMORY_PUT_BUFFER (0x24) - · EnterBootloader (0x27) - · UNKNOWN_FUNC_UNKNOWN_0x28 (0x28) - · GetNVMId (0x29) - · ExtNVMReadLongBuffer (0x2a) - · ExtNVMReadLongByte (0x2c) - · NVMOperations (0x2e) - · ClearTxTimers (0x37) - · GetTxTimers (0x38) - · ClearNetworkStats (0x39) - · GetNetworkStats (0x3a) - · GetBackgroundRSSI (0x3b) - · SetListenBeforeTalkThreshold (0x3c) - · RemoveSpecificNodeIdFromNetwork (0x3f) - · GetNodeProtocolInfo (0x41) - · HardReset (0x42) - · FUNC_ID_ZW_REPLICATION_COMMAND_COMPLETE (0x44) - · FUNC_ID_ZW_REPLICATION_SEND_DATA (0x45) - · AssignReturnRoute (0x46) - · DeleteReturnRoute (0x47) - · RequestNodeNeighborUpdate (0x48) - · ApplicationUpdateRequest (0x49) - · AddNodeToNetwork (0x4a) - · RemoveNodeFromNetwork (0x4b) - · AddPrimaryController (0x4d) - · AssignPriorityReturnRoute (0x4f) - · SetLearnMode (0x50) - · AssignSUCReturnRoute (0x51) - · RequestNetworkUpdate (0x53) - · SetSUCNodeId (0x54) - · DeleteSUCReturnRoute (0x55) - · GetSUCNodeId (0x56) - · SendSUCNodeId (0x57) - · AssignPrioritySUCReturnRoute (0x58) - · ExploreRequestInclusion (0x5e) - · ExploreRequestExclusion (0x5f) - · RequestNodeInfo (0x60) - · RemoveFailedNode (0x61) - · IsFailedNode (0x62) - · ReplaceFailedNode (0x63) - · undefined (0x65) - · RequestProtocolCCEncryption (0x68) - · GetRoutingInfo (0x80) - · LockUnlockLastRoute (0x90) - · GetPriorityRoute (0x92) - · SetPriorityRoute (0x93) - · UNKNOWN_FUNC_UNKNOWN_0x98 (0x98) - · VirtualNodeSetNodeInfo (0xa0) - · VirtualNodeSendNodeInfo (0xa2) - · VirtualNodeSetLearnMode (0xa4) - · GetVirtualNodes (0xa5) - · IsVirtualNode (0xa6) - · BridgeApplicationCommand (0xa8) - · SendDataBridge (0xa9) - · SendDataMulticastBridge (0xab) - · GetLibrary (0xbd) - · SendTestFrame (0xbe) - · GetProtocolStatus (0xbf) - · StartWatchdog (0xd2) - · StopWatchdog (0xd3) - · SetMaximumRoutingAttempts (0xd4) - · SetMaxSmartStartInclusionRequestInterval (0xd6) - · undefined (0xd7) - · undefined (0xd8) - · Shutdown (0xd9) - · GetLongRangeNodes (0xda) - · GetLongRangeChannel (0xdb) - · SetLongRangeChannel (0xdc) - · SetLongRangeShadowNodeIDs (0xdd) - · Proprietary_DE (0xde) - · Proprietary_DF (0xdf) - · Proprietary_E7 (0xe7) - · Proprietary_E8 (0xe8) -2024-09-06T10:04:12.749Z CNTRLR querying additional controller information... -2024-09-06T10:04:12.751Z SERIAL » 0x01030002fe (5 bytes) -2024-09-06T10:04:12.751Z DRIVER » [REQ] [GetSerialApiInitData] -2024-09-06T10:04:12.756Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:12.761Z SERIAL « 0x012501020a081d030000000000000000000000000000000000000000000000000 (39 bytes) - 00000000800cd -2024-09-06T10:04:12.761Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:12.762Z DRIVER « [RES] [GetSerialApiInitData] - payload: 0x0a081d03000000000000000000000000000000000000000000000000000000000 - 800 -2024-09-06T10:04:12.763Z CNTRLR received additional controller information: - Z-Wave API version: 1 (official) - Z-Wave chip type: EFR32ZG23 / ZGM230S - node type Controller - controller role: primary - controller is the SIS: true - controller supports timers: false - Z-Wave Classic nodes: 1, 2 -2024-09-06T10:04:12.763Z CNTRLR querying version info... -2024-09-06T10:04:12.765Z SERIAL » 0x01030015e9 (5 bytes) -2024-09-06T10:04:12.765Z DRIVER » [REQ] [GetControllerVersion] -2024-09-06T10:04:12.767Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:12.772Z SERIAL « 0x011001155a2d5761766520372e3231000794 (18 bytes) -2024-09-06T10:04:12.772Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:12.773Z DRIVER « [RES] [GetControllerVersion] - payload: 0x5a2d5761766520372e32310007 -2024-09-06T10:04:12.774Z CNTRLR received version info: - controller type: Bridge Controller - library version: Z-Wave 7.21 -2024-09-06T10:04:12.774Z CNTRLR querying protocol version info... -2024-09-06T10:04:12.775Z SERIAL » 0x01030009f5 (5 bytes) -2024-09-06T10:04:12.776Z DRIVER » [REQ] [GetProtocolVersion] -2024-09-06T10:04:12.780Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:12.781Z SERIAL « 0x011901090007150300f4353162666237323665306662383733380f (27 bytes) -2024-09-06T10:04:12.781Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:12.782Z DRIVER « [RES] [GetProtocolVersion] - payload: 0x0007150300f435316266623732366530666238373338 -2024-09-06T10:04:12.783Z CNTRLR received protocol version info: - protocol type: Z-Wave - protocol version: 7.21.3 - appl. framework build no.: 244 - git commit hash: 35316266623732366530666238373338 -2024-09-06T10:04:12.784Z CNTRLR querying controller capabilities... -2024-09-06T10:04:12.785Z SERIAL » 0x01030005f9 (5 bytes) -2024-09-06T10:04:12.786Z DRIVER » [REQ] [GetControllerCapabilities] -2024-09-06T10:04:12.791Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:12.792Z SERIAL « 0x010401051ce3 (6 bytes) -2024-09-06T10:04:12.793Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:12.794Z DRIVER « [RES] [GetControllerCapabilities] - payload: 0x1c -2024-09-06T10:04:12.795Z CNTRLR received controller capabilities: - controller role: Primary - is the SUC: true - started this network: true - SIS is present: true - was real primary: true -2024-09-06T10:04:12.795Z CNTRLR querying serial API setup capabilities... -2024-09-06T10:04:12.797Z SERIAL » 0x0104000b01f1 (6 bytes) -2024-09-06T10:04:12.798Z DRIVER » [REQ] [SerialAPISetup] - command: GetSupportedCommands - payload: 0x01 -2024-09-06T10:04:12.804Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:12.805Z SERIAL « 0x0116010b01ff9f8007800000008000000000000000800085 (24 bytes) -2024-09-06T10:04:12.806Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:12.807Z DRIVER « [RES] [SerialAPISetup] - command: GetSupportedCommands - payload: 0xff9f80078000000080000000000000008000 -2024-09-06T10:04:12.808Z CNTRLR supported serial API setup commands: - · GetSupportedCommands - · SetTxStatusReport - · SetLongRangeMaximumTxPower - · SetPowerlevel - · GetLongRangeMaximumTxPower - · GetPowerlevel - · GetMaximumPayloadSize - · GetLongRangeMaximumPayloadSize - · SetPowerlevel16Bit - · GetPowerlevel16Bit - · GetRFRegion - · SetRFRegion - · SetNodeIDType -2024-09-06T10:04:12.809Z CNTRLR querying max. payload size... -2024-09-06T10:04:12.810Z SERIAL » 0x0104000b10e0 (6 bytes) -2024-09-06T10:04:12.811Z DRIVER » [REQ] [SerialAPISetup] - command: GetMaximumPayloadSize - payload: 0x10 -2024-09-06T10:04:12.815Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:12.816Z SERIAL « 0x0105010b102ece (7 bytes) -2024-09-06T10:04:12.816Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:12.817Z DRIVER « [RES] [SerialAPISetup] - command: GetMaximumPayloadSize - maximum payload size: 46 bytes -2024-09-06T10:04:12.818Z CNTRLR maximum payload size: 46 bytes -2024-09-06T10:04:12.818Z CNTRLR supported Z-Wave features: - · SmartStart -2024-09-06T10:04:12.819Z CNTRLR Querying configured RF region... -2024-09-06T10:04:12.819Z SERIAL » 0x0104000b20d0 (6 bytes) -2024-09-06T10:04:12.820Z DRIVER » [REQ] [SerialAPISetup] - command: GetRFRegion - payload: 0x20 -2024-09-06T10:04:12.824Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:12.825Z SERIAL « 0x0105010b2000d0 (7 bytes) -2024-09-06T10:04:12.825Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:12.826Z DRIVER « [RES] [SerialAPISetup] - command: GetRFRegion - region: Europe -2024-09-06T10:04:12.827Z CNTRLR The controller is using RF region Europe -2024-09-06T10:04:12.827Z CNTRLR Querying configured max. Long Range powerlevel... -2024-09-06T10:04:12.828Z SERIAL » 0x0104000b05f5 (6 bytes) -2024-09-06T10:04:12.828Z DRIVER » [REQ] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - payload: 0x05 -2024-09-06T10:04:12.832Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:12.832Z SERIAL « 0x0106010b05008c7a (8 bytes) -2024-09-06T10:04:12.833Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:12.833Z DRIVER « [RES] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - max. TX power (LR): 14.0 dBm -2024-09-06T10:04:12.834Z CNTRLR The max. LR powerlevel is 14.0 dBm -2024-09-06T10:04:12.834Z CNTRLR Querying configured Long Range channel information... -2024-09-06T10:04:12.835Z SERIAL » 0x010300db27 (5 bytes) -2024-09-06T10:04:12.835Z DRIVER » [REQ] [GetLongRangeChannel] -2024-09-06T10:04:12.839Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:12.840Z SERIAL « 0x010501db001030 (7 bytes) -2024-09-06T10:04:12.840Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:12.841Z DRIVER « [RES] [GetLongRangeChannel] - payload: 0x0010 -2024-09-06T10:04:12.842Z CNTRLR received Z-Wave Long Range channel information: - channel: Unsupported - supports auto channel selection: true -2024-09-06T10:04:12.842Z CNTRLR Performing soft reset... -2024-09-06T10:04:12.843Z SERIAL » 0x01030008f4 (5 bytes) -2024-09-06T10:04:12.844Z DRIVER » [REQ] [SoftReset] -2024-09-06T10:04:12.847Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:12.848Z CNTRLR Waiting for the controller to reconnect... -2024-09-06T10:04:12.849Z DRIVER all queues idle -2024-09-06T10:04:13.071Z SERIAL « 0x0112000a0700010100085e989f556c568f740025 (20 bytes) -2024-09-06T10:04:13.072Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:13.072Z DRIVER « [REQ] [SerialAPIStarted] - wake up reason: SoftwareReset - watchdog enabled: false - generic device class: 0x01 - specific device class: 0x00 - always listening: false - supports Long Range: false -2024-09-06T10:04:13.073Z CNTRLR reconnected and restarted -2024-09-06T10:04:13.073Z CNTRLR Starting hardware watchdog... -2024-09-06T10:04:13.073Z CNTRLR Switching serial API to 16-bit node IDs... -2024-09-06T10:04:13.073Z CNTRLR Switching serial API to 8-bit node IDs... -2024-09-06T10:04:13.074Z DRIVER all queues busy -2024-09-06T10:04:13.074Z SERIAL » 0x010300d22e (5 bytes) -2024-09-06T10:04:13.075Z DRIVER » [REQ] [StartWatchdog] -2024-09-06T10:04:13.076Z SERIAL » 0x0105000b800273 (7 bytes) -2024-09-06T10:04:13.076Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 16 bit -2024-09-06T10:04:13.082Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:13.082Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:13.083Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T10:04:13.083Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:13.084Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T10:04:13.084Z CNTRLR Switching to 16-bit node IDs successful -2024-09-06T10:04:13.085Z SERIAL » 0x0105000b800170 (7 bytes) -2024-09-06T10:04:13.085Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 8 bit -2024-09-06T10:04:13.087Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:13.090Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T10:04:13.091Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:13.091Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T10:04:13.092Z CNTRLR Switching to 8-bit node IDs successful -2024-09-06T10:04:13.092Z CNTRLR querying controller IDs... -2024-09-06T10:04:13.093Z SERIAL » 0x01030020dc (5 bytes) -2024-09-06T10:04:13.093Z DRIVER » [REQ] [GetControllerId] -2024-09-06T10:04:13.099Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:13.099Z SERIAL « 0x01080120f41ad2d20139 (10 bytes) -2024-09-06T10:04:13.100Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:13.100Z DRIVER « [RES] [GetControllerId] - home ID: 0xf41ad2d2 - own node ID: 1 -2024-09-06T10:04:13.101Z CNTRLR received controller IDs: - home ID: 0xf41ad2d2 - own node ID: 1 -2024-09-06T10:04:13.101Z CNTRLR Enabling TX status report... -2024-09-06T10:04:13.102Z SERIAL » 0x0105000b02ff0c (7 bytes) -2024-09-06T10:04:13.102Z DRIVER » [REQ] [SerialAPISetup] - command: SetTxStatusReport - enabled: true -2024-09-06T10:04:13.105Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:13.106Z SERIAL « 0x0105010b0201f3 (7 bytes) -2024-09-06T10:04:13.106Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:13.107Z DRIVER « [RES] [SerialAPISetup] - command: SetTxStatusReport - success: true -2024-09-06T10:04:13.107Z CNTRLR Enabling TX status report successful... -2024-09-06T10:04:13.107Z CNTRLR finding SUC... -2024-09-06T10:04:13.108Z SERIAL » 0x01030056aa (5 bytes) -2024-09-06T10:04:13.109Z DRIVER » [REQ] [GetSUCNodeId] -2024-09-06T10:04:13.118Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:13.119Z SERIAL « 0x0104015601ad (6 bytes) -2024-09-06T10:04:13.119Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:13.120Z DRIVER « [RES] [GetSUCNodeId] - payload: 0x01 -2024-09-06T10:04:13.122Z CNTRLR This is the SUC -2024-09-06T10:04:13.122Z DRIVER all queues idle -2024-09-06T10:04:13.147Z DRIVER Cache file for homeId 0xf41ad2d2 found, attempting to restore the network from - cache... -2024-09-06T10:04:13.150Z CNTRLR [Node 001] Embedded device config loaded -2024-09-06T10:04:13.151Z DRIVER Restoring the network from cache was successful! -2024-09-06T10:04:13.151Z CNTRLR [Node 001] [Manufacturer Specific] manufacturerId: metadata updated -2024-09-06T10:04:13.151Z CNTRLR [Node 001] [Manufacturer Specific] productType: metadata updated -2024-09-06T10:04:13.152Z CNTRLR [Node 001] [Manufacturer Specific] productId: metadata updated -2024-09-06T10:04:13.152Z CNTRLR [Node 001] [~] [Manufacturer Specific] manufacturerId: 634 => 634 -2024-09-06T10:04:13.152Z CNTRLR [Node 001] [~] [Manufacturer Specific] productType: 4 => 4 -2024-09-06T10:04:13.153Z CNTRLR [Node 001] [~] [Manufacturer Specific] productId: 1552 => 1552 -2024-09-06T10:04:13.153Z CNTRLR [Node 001] [Version] firmwareVersions: metadata updated -2024-09-06T10:04:13.153Z CNTRLR [Node 001] [~] [Version] firmwareVersions: 1.30 => 1.30 -2024-09-06T10:04:13.153Z CNTRLR [Node 001] [Version] zWaveProtocolVersion: metadata updated -2024-09-06T10:04:13.154Z CNTRLR [Node 001] [~] [Version] zWaveProtocolVersion: "7.21.3" => "7.21.3" -2024-09-06T10:04:13.154Z CNTRLR [Node 001] [Version] sdkVersion: metadata updated -2024-09-06T10:04:13.154Z CNTRLR [Node 001] [~] [Version] sdkVersion: "7.21.3" => "7.21.3" -2024-09-06T10:04:13.154Z CNTRLR Interview completed -2024-09-06T10:04:13.155Z DRIVER Network key for S0 configured, enabling S0 security manager... -2024-09-06T10:04:13.156Z DRIVER At least one network key for S2 configured, enabling S2 security manager... -2024-09-06T10:04:13.157Z DRIVER At least one network key for Z-Wave Long Range configured, enabling security m - anager... -2024-09-06T10:04:13.158Z DRIVER driver ready -2024-09-06T10:04:14.159Z CNTRLR Updating the controller NIF... -2024-09-06T10:04:14.160Z DRIVER all queues busy -2024-09-06T10:04:14.161Z SERIAL » 0x010f0003010100085e989f556c568f7436 (17 bytes) -2024-09-06T10:04:14.162Z DRIVER » [REQ] [SetApplicationNodeInformation] - is listening: true - generic device class: 0x01 - specific device class: 0x00 - supported CCs: - · Z-Wave Plus Info - · Security - · Security 2 - · Transport Service - · Supervision - · CRC-16 Encapsulation - · Multi Command - · Inclusion Controller - controlled CCs: -2024-09-06T10:04:14.166Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:14.168Z CNTRLR performing hard reset... -2024-09-06T10:04:14.170Z SERIAL » 0x0104004201b8 (6 bytes) -2024-09-06T10:04:14.171Z DRIVER » [REQ] [HardReset] - callback id: 1 -2024-09-06T10:04:14.173Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:14.195Z SERIAL « 0x0104004201b8 (6 bytes) -2024-09-06T10:04:14.196Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:14.196Z DRIVER « [REQ] [HardReset] - callback id: 1 -2024-09-06T10:04:14.197Z CNTRLR hard reset succeeded -2024-09-06T10:04:14.198Z CNTRLR querying Serial API capabilities... -2024-09-06T10:04:14.198Z SERIAL » 0x01030007fb (5 bytes) -2024-09-06T10:04:14.199Z DRIVER » [REQ] [GetSerialApiCapabilities] -2024-09-06T10:04:14.201Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:14.205Z SERIAL « 0x012b0107011e027a00040610f6873e88cf2bc04ffbd7fde09700008000808680b (45 bytes) - a0500700000ee7fc000000035 -2024-09-06T10:04:14.206Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:14.206Z DRIVER « [RES] [GetSerialApiCapabilities] - payload: 0x011e027a00040610f6873e88cf2bc04ffbd7fde09700008000808680ba0500700 - 000ee7fc0000000 -2024-09-06T10:04:14.207Z CNTRLR received API capabilities: - firmware version: 1.30 - manufacturer ID: 0x027a - product type: 0x04 - product ID: 0x0610 - supported functions: - · GetSerialApiInitData (0x02) - · SetApplicationNodeInformation (0x03) - · GetControllerCapabilities (0x05) - · SetSerialApiTimeouts (0x06) - · GetSerialApiCapabilities (0x07) - · SoftReset (0x08) - · GetProtocolVersion (0x09) - · SerialAPIStarted (0x0a) - · SerialAPISetup (0x0b) - · SetRFReceiveMode (0x10) - · SendNodeInformation (0x12) - · SendData (0x13) - · SendDataMulticast (0x14) - · GetControllerVersion (0x15) - · SendDataAbort (0x16) - · FUNC_ID_ZW_GET_RANDOM (0x1c) - · GetControllerId (0x20) - · UNKNOWN_FUNC_MEMORY_GET_BYTE (0x21) - · UNKNOWN_FUNC_MEMORY_PUT_BYTE (0x22) - · UNKNOWN_FUNC_MEMORY_GET_BUFFER (0x23) - · UNKNOWN_FUNC_MEMORY_PUT_BUFFER (0x24) - · EnterBootloader (0x27) - · UNKNOWN_FUNC_UNKNOWN_0x28 (0x28) - · GetNVMId (0x29) - · ExtNVMReadLongBuffer (0x2a) - · ExtNVMReadLongByte (0x2c) - · NVMOperations (0x2e) - · ClearTxTimers (0x37) - · GetTxTimers (0x38) - · ClearNetworkStats (0x39) - · GetNetworkStats (0x3a) - · GetBackgroundRSSI (0x3b) - · SetListenBeforeTalkThreshold (0x3c) - · RemoveSpecificNodeIdFromNetwork (0x3f) - · GetNodeProtocolInfo (0x41) - · HardReset (0x42) - · FUNC_ID_ZW_REPLICATION_COMMAND_COMPLETE (0x44) - · FUNC_ID_ZW_REPLICATION_SEND_DATA (0x45) - · AssignReturnRoute (0x46) - · DeleteReturnRoute (0x47) - · RequestNodeNeighborUpdate (0x48) - · ApplicationUpdateRequest (0x49) - · AddNodeToNetwork (0x4a) - · RemoveNodeFromNetwork (0x4b) - · AddPrimaryController (0x4d) - · AssignPriorityReturnRoute (0x4f) - · SetLearnMode (0x50) - · AssignSUCReturnRoute (0x51) - · RequestNetworkUpdate (0x53) - · SetSUCNodeId (0x54) - · DeleteSUCReturnRoute (0x55) - · GetSUCNodeId (0x56) - · SendSUCNodeId (0x57) - · AssignPrioritySUCReturnRoute (0x58) - · ExploreRequestInclusion (0x5e) - · ExploreRequestExclusion (0x5f) - · RequestNodeInfo (0x60) - · RemoveFailedNode (0x61) - · IsFailedNode (0x62) - · ReplaceFailedNode (0x63) - · undefined (0x65) - · RequestProtocolCCEncryption (0x68) - · GetRoutingInfo (0x80) - · LockUnlockLastRoute (0x90) - · GetPriorityRoute (0x92) - · SetPriorityRoute (0x93) - · UNKNOWN_FUNC_UNKNOWN_0x98 (0x98) - · VirtualNodeSetNodeInfo (0xa0) - · VirtualNodeSendNodeInfo (0xa2) - · VirtualNodeSetLearnMode (0xa4) - · GetVirtualNodes (0xa5) - · IsVirtualNode (0xa6) - · BridgeApplicationCommand (0xa8) - · SendDataBridge (0xa9) - · SendDataMulticastBridge (0xab) - · GetLibrary (0xbd) - · SendTestFrame (0xbe) - · GetProtocolStatus (0xbf) - · StartWatchdog (0xd2) - · StopWatchdog (0xd3) - · SetMaximumRoutingAttempts (0xd4) - · SetMaxSmartStartInclusionRequestInterval (0xd6) - · undefined (0xd7) - · undefined (0xd8) - · Shutdown (0xd9) - · GetLongRangeNodes (0xda) - · GetLongRangeChannel (0xdb) - · SetLongRangeChannel (0xdc) - · SetLongRangeShadowNodeIDs (0xdd) - · Proprietary_DE (0xde) - · Proprietary_DF (0xdf) - · Proprietary_E7 (0xe7) - · Proprietary_E8 (0xe8) -2024-09-06T10:04:14.208Z CNTRLR querying additional controller information... -2024-09-06T10:04:14.209Z SERIAL » 0x01030002fe (5 bytes) -2024-09-06T10:04:14.209Z DRIVER » [REQ] [GetSerialApiInitData] -2024-09-06T10:04:14.211Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:14.216Z SERIAL « 0x012501020a001d010000000000000000000000000000000000000000000000000 (39 bytes) - 00000000800c7 -2024-09-06T10:04:14.216Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:14.217Z DRIVER « [RES] [GetSerialApiInitData] - payload: 0x0a001d01000000000000000000000000000000000000000000000000000000000 - 800 -2024-09-06T10:04:14.218Z CNTRLR received additional controller information: - Z-Wave API version: 1 (official) - Z-Wave chip type: EFR32ZG23 / ZGM230S - node type Controller - controller role: primary - controller is the SIS: false - controller supports timers: false - Z-Wave Classic nodes: 1 -2024-09-06T10:04:14.218Z CNTRLR querying version info... -2024-09-06T10:04:14.219Z SERIAL » 0x01030015e9 (5 bytes) -2024-09-06T10:04:14.219Z DRIVER » [REQ] [GetControllerVersion] -2024-09-06T10:04:14.222Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:14.223Z SERIAL « 0x011001155a2d5761766520372e3231000794 (18 bytes) -2024-09-06T10:04:14.224Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:14.225Z DRIVER « [RES] [GetControllerVersion] - payload: 0x5a2d5761766520372e32310007 -2024-09-06T10:04:14.225Z CNTRLR received version info: - controller type: Bridge Controller - library version: Z-Wave 7.21 -2024-09-06T10:04:14.226Z CNTRLR querying protocol version info... -2024-09-06T10:04:14.226Z SERIAL » 0x01030009f5 (5 bytes) -2024-09-06T10:04:14.227Z DRIVER » [REQ] [GetProtocolVersion] -2024-09-06T10:04:14.229Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:14.232Z SERIAL « 0x011901090007150300f4353162666237323665306662383733380f (27 bytes) -2024-09-06T10:04:14.232Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:14.233Z DRIVER « [RES] [GetProtocolVersion] - payload: 0x0007150300f435316266623732366530666238373338 -2024-09-06T10:04:14.233Z CNTRLR received protocol version info: - protocol type: Z-Wave - protocol version: 7.21.3 - appl. framework build no.: 244 - git commit hash: 35316266623732366530666238373338 -2024-09-06T10:04:14.234Z CNTRLR querying controller capabilities... -2024-09-06T10:04:14.234Z SERIAL » 0x01030005f9 (5 bytes) -2024-09-06T10:04:14.235Z DRIVER » [REQ] [GetControllerCapabilities] -2024-09-06T10:04:14.237Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:14.238Z SERIAL « 0x0104010528d7 (6 bytes) -2024-09-06T10:04:14.238Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:14.239Z DRIVER « [RES] [GetControllerCapabilities] - payload: 0x28 -2024-09-06T10:04:14.239Z CNTRLR received controller capabilities: - controller role: Primary - is the SUC: false - started this network: true - SIS is present: false - was real primary: true -2024-09-06T10:04:14.240Z CNTRLR querying serial API setup capabilities... -2024-09-06T10:04:14.240Z SERIAL » 0x0104000b01f1 (6 bytes) -2024-09-06T10:04:14.241Z DRIVER » [REQ] [SerialAPISetup] - command: GetSupportedCommands - payload: 0x01 -2024-09-06T10:04:14.243Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:14.245Z SERIAL « 0x0116010b01ff9f8007800000008000000000000000800085 (24 bytes) -2024-09-06T10:04:14.246Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:14.246Z DRIVER « [RES] [SerialAPISetup] - command: GetSupportedCommands - payload: 0xff9f80078000000080000000000000008000 -2024-09-06T10:04:14.247Z CNTRLR supported serial API setup commands: - · GetSupportedCommands - · SetTxStatusReport - · SetLongRangeMaximumTxPower - · SetPowerlevel - · GetLongRangeMaximumTxPower - · GetPowerlevel - · GetMaximumPayloadSize - · GetLongRangeMaximumPayloadSize - · SetPowerlevel16Bit - · GetPowerlevel16Bit - · GetRFRegion - · SetRFRegion - · SetNodeIDType -2024-09-06T10:04:14.247Z CNTRLR querying max. payload size... -2024-09-06T10:04:14.248Z SERIAL » 0x0104000b10e0 (6 bytes) -2024-09-06T10:04:14.248Z DRIVER » [REQ] [SerialAPISetup] - command: GetMaximumPayloadSize - payload: 0x10 -2024-09-06T10:04:14.251Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:14.252Z SERIAL « 0x0105010b102ece (7 bytes) -2024-09-06T10:04:14.252Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:14.253Z DRIVER « [RES] [SerialAPISetup] - command: GetMaximumPayloadSize - maximum payload size: 46 bytes -2024-09-06T10:04:14.253Z CNTRLR maximum payload size: 46 bytes -2024-09-06T10:04:14.254Z CNTRLR supported Z-Wave features: - · SmartStart -2024-09-06T10:04:14.254Z CNTRLR Querying configured RF region... -2024-09-06T10:04:14.254Z SERIAL » 0x0104000b20d0 (6 bytes) -2024-09-06T10:04:14.255Z DRIVER » [REQ] [SerialAPISetup] - command: GetRFRegion - payload: 0x20 -2024-09-06T10:04:14.257Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:14.258Z SERIAL « 0x0105010b2000d0 (7 bytes) -2024-09-06T10:04:14.259Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:14.259Z DRIVER « [RES] [SerialAPISetup] - command: GetRFRegion - region: Europe -2024-09-06T10:04:14.260Z CNTRLR The controller is using RF region Europe -2024-09-06T10:04:14.260Z CNTRLR Querying configured max. Long Range powerlevel... -2024-09-06T10:04:14.261Z SERIAL » 0x0104000b05f5 (6 bytes) -2024-09-06T10:04:14.261Z DRIVER » [REQ] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - payload: 0x05 -2024-09-06T10:04:14.264Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:14.265Z SERIAL « 0x0106010b05008c7a (8 bytes) -2024-09-06T10:04:14.265Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:14.266Z DRIVER « [RES] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - max. TX power (LR): 14.0 dBm -2024-09-06T10:04:14.267Z CNTRLR The max. LR powerlevel is 14.0 dBm -2024-09-06T10:04:14.267Z CNTRLR Querying configured Long Range channel information... -2024-09-06T10:04:14.268Z SERIAL » 0x010300db27 (5 bytes) -2024-09-06T10:04:14.268Z DRIVER » [REQ] [GetLongRangeChannel] -2024-09-06T10:04:14.270Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:14.271Z SERIAL « 0x010501db001030 (7 bytes) -2024-09-06T10:04:14.272Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:14.272Z DRIVER « [RES] [GetLongRangeChannel] - payload: 0x0010 -2024-09-06T10:04:14.273Z CNTRLR received Z-Wave Long Range channel information: - channel: Unsupported - supports auto channel selection: true -2024-09-06T10:04:14.273Z CNTRLR Performing soft reset... -2024-09-06T10:04:14.274Z SERIAL » 0x01030008f4 (5 bytes) -2024-09-06T10:04:14.274Z DRIVER » [REQ] [SoftReset] -2024-09-06T10:04:14.276Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:14.277Z CNTRLR Waiting for the controller to reconnect... -2024-09-06T10:04:14.278Z DRIVER all queues idle -2024-09-06T10:04:14.504Z SERIAL « 0x0112000a0700010100085e989f556c568f740025 (20 bytes) -2024-09-06T10:04:14.505Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:14.507Z DRIVER « [REQ] [SerialAPIStarted] - wake up reason: SoftwareReset - watchdog enabled: false - generic device class: 0x01 - specific device class: 0x00 - always listening: false - supports Long Range: false -2024-09-06T10:04:14.508Z CNTRLR reconnected and restarted -2024-09-06T10:04:14.508Z CNTRLR Starting hardware watchdog... -2024-09-06T10:04:14.509Z CNTRLR Switching serial API to 16-bit node IDs... -2024-09-06T10:04:14.510Z CNTRLR Switching serial API to 8-bit node IDs... -2024-09-06T10:04:14.511Z DRIVER all queues busy -2024-09-06T10:04:14.513Z SERIAL » 0x010300d22e (5 bytes) -2024-09-06T10:04:14.514Z DRIVER » [REQ] [StartWatchdog] -2024-09-06T10:04:14.516Z SERIAL » 0x0105000b800273 (7 bytes) -2024-09-06T10:04:14.517Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 16 bit -2024-09-06T10:04:14.518Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:14.519Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:14.521Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T10:04:14.521Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:14.522Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T10:04:14.522Z CNTRLR Switching to 16-bit node IDs successful -2024-09-06T10:04:14.523Z SERIAL » 0x0105000b800170 (7 bytes) -2024-09-06T10:04:14.523Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 8 bit -2024-09-06T10:04:14.525Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:14.527Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T10:04:14.527Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:14.528Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T10:04:14.528Z CNTRLR Switching to 8-bit node IDs successful -2024-09-06T10:04:14.529Z CNTRLR querying controller IDs... -2024-09-06T10:04:14.529Z SERIAL » 0x01030020dc (5 bytes) -2024-09-06T10:04:14.530Z DRIVER » [REQ] [GetControllerId] -2024-09-06T10:04:14.533Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:14.534Z SERIAL « 0x01080120d1f692e50187 (10 bytes) -2024-09-06T10:04:14.535Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:14.535Z DRIVER « [RES] [GetControllerId] - home ID: 0xd1f692e5 - own node ID: 1 -2024-09-06T10:04:14.536Z CNTRLR received controller IDs: - home ID: 0xd1f692e5 - own node ID: 1 -2024-09-06T10:04:14.536Z CNTRLR Enabling TX status report... -2024-09-06T10:04:14.537Z SERIAL » 0x0105000b02ff0c (7 bytes) -2024-09-06T10:04:14.538Z DRIVER » [REQ] [SerialAPISetup] - command: SetTxStatusReport - enabled: true -2024-09-06T10:04:14.540Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:14.541Z SERIAL « 0x0105010b0201f3 (7 bytes) -2024-09-06T10:04:14.541Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:14.542Z DRIVER « [RES] [SerialAPISetup] - command: SetTxStatusReport - success: true -2024-09-06T10:04:14.542Z CNTRLR Enabling TX status report successful... -2024-09-06T10:04:14.543Z CNTRLR finding SUC... -2024-09-06T10:04:14.543Z SERIAL » 0x01030056aa (5 bytes) -2024-09-06T10:04:14.544Z DRIVER » [REQ] [GetSUCNodeId] -2024-09-06T10:04:14.546Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:14.547Z SERIAL « 0x0104015600ac (6 bytes) -2024-09-06T10:04:14.547Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:14.548Z DRIVER « [RES] [GetSUCNodeId] - payload: 0x00 -2024-09-06T10:04:14.549Z CNTRLR No SUC present in the network -2024-09-06T10:04:14.549Z CNTRLR There is no SUC/SIS in the network - promoting ourselves... -2024-09-06T10:04:14.550Z SERIAL » 0x01080054010125010285 (10 bytes) -2024-09-06T10:04:14.550Z DRIVER » [REQ] [SetSUCNodeId] - payload: 0x0101250102 -2024-09-06T10:04:14.553Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:14.555Z SERIAL « 0x0104015401af (6 bytes) -2024-09-06T10:04:14.556Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:14.556Z DRIVER « [RES] [SetSUCNodeId] - was executed: true -2024-09-06T10:04:14.557Z CNTRLR Promotion to SUC/SIS succeeded. -2024-09-06T10:04:14.557Z DRIVER all queues idle -2024-09-06T10:04:14.562Z CNTRLR [Node 001] [Manufacturer Specific] manufacturerId: metadata updated -2024-09-06T10:04:14.562Z CNTRLR [Node 001] [Manufacturer Specific] productType: metadata updated -2024-09-06T10:04:14.562Z CNTRLR [Node 001] [Manufacturer Specific] productId: metadata updated -2024-09-06T10:04:14.563Z CNTRLR [Node 001] [+] [Manufacturer Specific] manufacturerId: 634 -2024-09-06T10:04:14.563Z CNTRLR [Node 001] [+] [Manufacturer Specific] productType: 4 -2024-09-06T10:04:14.563Z CNTRLR [Node 001] [+] [Manufacturer Specific] productId: 1552 -2024-09-06T10:04:14.563Z CNTRLR [Node 001] [Version] firmwareVersions: metadata updated -2024-09-06T10:04:14.564Z CNTRLR [Node 001] [+] [Version] firmwareVersions: 1.30 -2024-09-06T10:04:14.564Z CNTRLR [Node 001] [Version] zWaveProtocolVersion: metadata updated -2024-09-06T10:04:14.564Z CNTRLR [Node 001] [+] [Version] zWaveProtocolVersion: "7.21.3" -2024-09-06T10:04:14.564Z CNTRLR [Node 001] [Version] sdkVersion: metadata updated -2024-09-06T10:04:14.564Z CNTRLR [Node 001] [+] [Version] sdkVersion: "7.21.3" -2024-09-06T10:04:14.564Z CNTRLR Interview completed -2024-09-06T10:04:14.565Z DRIVER Network key for S0 configured, enabling S0 security manager... -2024-09-06T10:04:14.565Z DRIVER At least one network key for S2 configured, enabling S2 security manager... -2024-09-06T10:04:14.566Z DRIVER At least one network key for Z-Wave Long Range configured, enabling security m - anager... -2024-09-06T10:04:14.566Z DRIVER driver ready -2024-09-06T10:04:19.199Z CNTRLR Starting inclusion process with strategy Default... -2024-09-06T10:04:19.201Z DRIVER all queues busy -2024-09-06T10:04:19.203Z SERIAL » 0x0105004ac10372 (7 bytes) -2024-09-06T10:04:19.204Z DRIVER » [REQ] [AddNodeToNetwork] - node type: Any - high power: true - network wide: true - callback id: 3 -2024-09-06T10:04:19.210Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:19.213Z SERIAL « 0x0107004a03010000b0 (9 bytes) -2024-09-06T10:04:19.214Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:19.215Z DRIVER « [REQ] [AddNodeToNetwork] - status: Ready - callback id: 3 -2024-09-06T10:04:19.216Z CNTRLR The controller is now ready to add nodes -2024-09-06T10:04:19.217Z DRIVER all queues idle -2024-09-06T10:04:23.253Z SERIAL « 0x0107004a03020000b3 (9 bytes) -2024-09-06T10:04:23.254Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:23.256Z DRIVER « [REQ] [AddNodeToNetwork] - status: NodeFound - callback id: 3 -2024-09-06T10:04:23.257Z DRIVER handling request AddNodeToNetwork (74) -2024-09-06T10:04:23.257Z DRIVER 1 handler registered! -2024-09-06T10:04:23.258Z DRIVER invoking handler #0 -2024-09-06T10:04:23.260Z CNTRLR handling add node request (status = NodeFound) -2024-09-06T10:04:23.358Z SERIAL « 0x0112004a0304020b0201005e989f556c568f7467 (20 bytes) -2024-09-06T10:04:23.359Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:23.361Z DRIVER « [REQ] [AddNodeToNetwork] - status: AddingController - callback id: 3 -2024-09-06T10:04:23.362Z DRIVER handling request AddNodeToNetwork (74) -2024-09-06T10:04:23.362Z DRIVER 1 handler registered! -2024-09-06T10:04:23.363Z DRIVER invoking handler #0 -2024-09-06T10:04:23.363Z CNTRLR handling add node request (status = AddingController) -2024-09-06T10:04:23.367Z DRIVER the message was handled -2024-09-06T10:04:23.777Z SERIAL « 0x0107004a03050200b6 (9 bytes) -2024-09-06T10:04:23.778Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:23.780Z DRIVER « [REQ] [AddNodeToNetwork] - status: ProtocolDone - callback id: 3 -2024-09-06T10:04:23.781Z DRIVER handling request AddNodeToNetwork (74) -2024-09-06T10:04:23.782Z DRIVER 1 handler registered! -2024-09-06T10:04:23.782Z DRIVER invoking handler #0 -2024-09-06T10:04:23.783Z CNTRLR handling add node request (status = ProtocolDone) -2024-09-06T10:04:23.783Z CNTRLR finishing inclusion process... -2024-09-06T10:04:23.785Z DRIVER all queues busy -2024-09-06T10:04:23.786Z SERIAL » 0x0105004ac50471 (7 bytes) -2024-09-06T10:04:23.787Z DRIVER » [REQ] [AddNodeToNetwork] - action: Stop - high power: true - network wide: true - callback id: 4 -2024-09-06T10:04:23.790Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:33.834Z SERIAL « 0x0107004a04060200b2 (9 bytes) -2024-09-06T10:04:33.835Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:33.839Z DRIVER « [REQ] [AddNodeToNetwork] - status: Done - callback id: 4 -2024-09-06T10:04:33.846Z SERIAL » 0x0105004ac50075 (7 bytes) -2024-09-06T10:04:33.847Z DRIVER » [REQ] [AddNodeToNetwork] - action: Stop - high power: true - network wide: true - callback id: 0 -2024-09-06T10:04:33.850Z SERIAL « 0x0107004a04060200b2 (9 bytes) -2024-09-06T10:04:33.853Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:33.853Z SERIAL « 0x0107004a04060200b2 (9 bytes) -2024-09-06T10:04:33.854Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:33.858Z SERIAL « 0x0107004a04060200b2 (9 bytes) -2024-09-06T10:04:33.859Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:33.861Z DRIVER « [REQ] [AddNodeToNetwork] - status: Done - callback id: 4 -2024-09-06T10:04:33.863Z DRIVER handling request AddNodeToNetwork (74) -2024-09-06T10:04:33.865Z DRIVER 1 handler registered! -2024-09-06T10:04:33.865Z DRIVER invoking handler #0 -2024-09-06T10:04:33.866Z CNTRLR handling add node request (status = Done) -2024-09-06T10:04:33.867Z DRIVER « [REQ] [AddNodeToNetwork] - status: Done - callback id: 4 -2024-09-06T10:04:33.868Z DRIVER handling request AddNodeToNetwork (74) -2024-09-06T10:04:33.869Z DRIVER 1 handler registered! -2024-09-06T10:04:33.870Z DRIVER invoking handler #0 -2024-09-06T10:04:33.870Z CNTRLR handling add node request (status = Done) -2024-09-06T10:04:33.871Z DRIVER « [REQ] [AddNodeToNetwork] - status: Done - callback id: 4 -2024-09-06T10:04:33.872Z DRIVER handling request AddNodeToNetwork (74) -2024-09-06T10:04:33.872Z DRIVER 1 handler registered! -2024-09-06T10:04:33.873Z DRIVER invoking handler #0 -2024-09-06T10:04:33.873Z CNTRLR handling add node request (status = Done) -2024-09-06T10:04:33.899Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:33.901Z CNTRLR The inclusion process was stopped -2024-09-06T10:04:33.901Z CNTRLR finished adding node 2: - basic device class: Static Controller - generic device class: Remote Controller - specific device class: Unused - supported CCs: - · Z-Wave Plus Info (0x5e) - · Security (0x98) - · Security 2 (0x9f) - · Transport Service (0x55) - · Supervision (0x6c) - · CRC-16 Encapsulation (0x56) - · Multi Command (0x8f) - · Inclusion Controller (0x74) - controlled CCs: -2024-09-06T10:04:33.902Z CNTRLR » [Node 002] Assigning SUC return route... -2024-09-06T10:04:33.903Z CNTRLR » [Node 002] Deleting SUC return route... -2024-09-06T10:04:33.904Z SERIAL » 0x010500550205a8 (7 bytes) -2024-09-06T10:04:33.906Z DRIVER » [Node 002] [REQ] [DeleteSUCReturnRoute] - payload: 0x0205 -2024-09-06T10:04:33.913Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:33.915Z SERIAL « 0x0104015501ae (6 bytes) -2024-09-06T10:04:33.916Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:33.917Z DRIVER « [RES] [DeleteSUCReturnRoute] - was executed: true -2024-09-06T10:04:33.980Z SERIAL « 0x01210055050000000000000000000000000000000000000000000000000000000 (35 bytes) - 0008e -2024-09-06T10:04:33.981Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:33.982Z DRIVER « [REQ] [DeleteSUCReturnRoute] - callback id: 5 - transmit status: OK -2024-09-06T10:04:33.985Z SERIAL » 0x010500510206af (7 bytes) -2024-09-06T10:04:33.985Z DRIVER » [Node 002] [REQ] [AssignSUCReturnRoute] - payload: 0x0206 -2024-09-06T10:04:33.988Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:33.995Z SERIAL « 0x0104015101aa (6 bytes) -2024-09-06T10:04:33.996Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:33.996Z DRIVER « [RES] [AssignSUCReturnRoute] - was executed: true -2024-09-06T10:04:34.074Z SERIAL « 0x01210051060000000000000000000000000000000000000000000000000000000 (35 bytes) - 00089 -2024-09-06T10:04:34.075Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:34.077Z DRIVER « [REQ] [AssignSUCReturnRoute] - callback id: 6 - transmit status: OK -2024-09-06T10:04:34.088Z SERIAL » 0x010e00a90102029f04250000000007e0 (16 bytes) -2024-09-06T10:04:34.089Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x25 - │ callback id: 7 - └─[Security2CCKEXGet] -2024-09-06T10:04:34.095Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:34.099Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T10:04:34.100Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:34.106Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T10:04:34.113Z SERIAL « 0x011d00a90700000100e17f7f7f7f00000300000000030100007f7f7f7f7fd2 (31 bytes) -2024-09-06T10:04:34.115Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:34.117Z DRIVER « [REQ] [SendDataBridge] - callback id: 7 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -31 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T10:04:44.150Z CNTRLR [Node 002] Timed out while waiting for a response from the node (ZW0201) -2024-09-06T10:04:44.152Z CNTRLR [Node 002] Security S2 bootstrapping failed: did not receive the node's desire - d security classes. -2024-09-06T10:04:44.154Z DRIVER the message was handled -2024-09-06T10:04:44.155Z DRIVER all queues idle -2024-09-06T10:05:09.130Z DRIVER ███████╗ ██╗ ██╗ █████╗ ██╗ ██╗ ███████╗ ██╗ ███████╗ - ╚══███╔╝ ██║ ██║ ██╔══██╗ ██║ ██║ ██╔════╝ ██║ ██╔════╝ - ███╔╝ █████╗ ██║ █╗ ██║ ███████║ ██║ ██║ █████╗ ██║ ███████╗ - ███╔╝ ╚════╝ ██║███╗██║ ██╔══██║ ╚██╗ ██╔╝ ██╔══╝ ██ ██║ ╚════██║ - ███████╗ ╚███╔███╔╝ ██║ ██║ ╚████╔╝ ███████╗ ╚█████╔╝ ███████║ - ╚══════╝ ╚══╝╚══╝ ╚═╝ ╚═╝ ╚═══╝ ╚══════╝ ╚════╝ ╚══════╝ -2024-09-06T10:05:09.132Z DRIVER version 13.2.0 -2024-09-06T10:05:09.132Z DRIVER -2024-09-06T10:05:09.133Z DRIVER starting driver... -2024-09-06T10:05:09.133Z DRIVER opening serial port /dev/serial/by-id/usb-Zooz_800_Z-Wave_Stick_533D004242-if0 - 0 -2024-09-06T10:05:09.143Z DRIVER serial port opened -2024-09-06T10:05:09.144Z SERIAL » 0x15 (1 bytes) -2024-09-06T10:05:10.148Z DRIVER loading configuration... -2024-09-06T10:05:10.153Z CONFIG version 13.2.0 -2024-09-06T10:05:10.477Z DRIVER beginning interview... -2024-09-06T10:05:10.478Z DRIVER added request handler for AddNodeToNetwork (0x4a)... - 1 registered -2024-09-06T10:05:10.479Z DRIVER added request handler for RemoveNodeFromNetwork (0x4b)... - 1 registered -2024-09-06T10:05:10.479Z DRIVER added request handler for ReplaceFailedNode (0x63)... - 1 registered -2024-09-06T10:05:10.479Z DRIVER added request handler for SetLearnMode (0x50)... - 1 registered -2024-09-06T10:05:10.480Z CNTRLR querying Serial API capabilities... -2024-09-06T10:05:10.489Z SERIAL » 0x01030007fb (5 bytes) -2024-09-06T10:05:10.490Z DRIVER » [REQ] [GetSerialApiCapabilities] -2024-09-06T10:05:10.495Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:10.497Z SERIAL « 0x012b0107011e027a00040610f6873e88cf2bc04ffbd7fde09700008000808680b (45 bytes) - a0500700000ee7fc000000035 -2024-09-06T10:05:10.498Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:10.498Z DRIVER « [RES] [GetSerialApiCapabilities] - payload: 0x011e027a00040610f6873e88cf2bc04ffbd7fde09700008000808680ba0500700 - 000ee7fc0000000 -2024-09-06T10:05:10.500Z CNTRLR received API capabilities: - firmware version: 1.30 - manufacturer ID: 0x027a - product type: 0x04 - product ID: 0x0610 - supported functions: - · GetSerialApiInitData (0x02) - · SetApplicationNodeInformation (0x03) - · GetControllerCapabilities (0x05) - · SetSerialApiTimeouts (0x06) - · GetSerialApiCapabilities (0x07) - · SoftReset (0x08) - · GetProtocolVersion (0x09) - · SerialAPIStarted (0x0a) - · SerialAPISetup (0x0b) - · SetRFReceiveMode (0x10) - · SendNodeInformation (0x12) - · SendData (0x13) - · SendDataMulticast (0x14) - · GetControllerVersion (0x15) - · SendDataAbort (0x16) - · FUNC_ID_ZW_GET_RANDOM (0x1c) - · GetControllerId (0x20) - · UNKNOWN_FUNC_MEMORY_GET_BYTE (0x21) - · UNKNOWN_FUNC_MEMORY_PUT_BYTE (0x22) - · UNKNOWN_FUNC_MEMORY_GET_BUFFER (0x23) - · UNKNOWN_FUNC_MEMORY_PUT_BUFFER (0x24) - · EnterBootloader (0x27) - · UNKNOWN_FUNC_UNKNOWN_0x28 (0x28) - · GetNVMId (0x29) - · ExtNVMReadLongBuffer (0x2a) - · ExtNVMReadLongByte (0x2c) - · NVMOperations (0x2e) - · ClearTxTimers (0x37) - · GetTxTimers (0x38) - · ClearNetworkStats (0x39) - · GetNetworkStats (0x3a) - · GetBackgroundRSSI (0x3b) - · SetListenBeforeTalkThreshold (0x3c) - · RemoveSpecificNodeIdFromNetwork (0x3f) - · GetNodeProtocolInfo (0x41) - · HardReset (0x42) - · FUNC_ID_ZW_REPLICATION_COMMAND_COMPLETE (0x44) - · FUNC_ID_ZW_REPLICATION_SEND_DATA (0x45) - · AssignReturnRoute (0x46) - · DeleteReturnRoute (0x47) - · RequestNodeNeighborUpdate (0x48) - · ApplicationUpdateRequest (0x49) - · AddNodeToNetwork (0x4a) - · RemoveNodeFromNetwork (0x4b) - · AddPrimaryController (0x4d) - · AssignPriorityReturnRoute (0x4f) - · SetLearnMode (0x50) - · AssignSUCReturnRoute (0x51) - · RequestNetworkUpdate (0x53) - · SetSUCNodeId (0x54) - · DeleteSUCReturnRoute (0x55) - · GetSUCNodeId (0x56) - · SendSUCNodeId (0x57) - · AssignPrioritySUCReturnRoute (0x58) - · ExploreRequestInclusion (0x5e) - · ExploreRequestExclusion (0x5f) - · RequestNodeInfo (0x60) - · RemoveFailedNode (0x61) - · IsFailedNode (0x62) - · ReplaceFailedNode (0x63) - · undefined (0x65) - · RequestProtocolCCEncryption (0x68) - · GetRoutingInfo (0x80) - · LockUnlockLastRoute (0x90) - · GetPriorityRoute (0x92) - · SetPriorityRoute (0x93) - · UNKNOWN_FUNC_UNKNOWN_0x98 (0x98) - · VirtualNodeSetNodeInfo (0xa0) - · VirtualNodeSendNodeInfo (0xa2) - · VirtualNodeSetLearnMode (0xa4) - · GetVirtualNodes (0xa5) - · IsVirtualNode (0xa6) - · BridgeApplicationCommand (0xa8) - · SendDataBridge (0xa9) - · SendDataMulticastBridge (0xab) - · GetLibrary (0xbd) - · SendTestFrame (0xbe) - · GetProtocolStatus (0xbf) - · StartWatchdog (0xd2) - · StopWatchdog (0xd3) - · SetMaximumRoutingAttempts (0xd4) - · SetMaxSmartStartInclusionRequestInterval (0xd6) - · undefined (0xd7) - · undefined (0xd8) - · Shutdown (0xd9) - · GetLongRangeNodes (0xda) - · GetLongRangeChannel (0xdb) - · SetLongRangeChannel (0xdc) - · SetLongRangeShadowNodeIDs (0xdd) - · Proprietary_DE (0xde) - · Proprietary_DF (0xdf) - · Proprietary_E7 (0xe7) - · Proprietary_E8 (0xe8) -2024-09-06T10:05:10.501Z CNTRLR querying additional controller information... -2024-09-06T10:05:10.502Z SERIAL » 0x01030002fe (5 bytes) -2024-09-06T10:05:10.502Z DRIVER » [REQ] [GetSerialApiInitData] -2024-09-06T10:05:10.508Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:10.512Z SERIAL « 0x012501020a081d030000000000000000000000000000000000000000000000000 (39 bytes) - 00000000800cd -2024-09-06T10:05:10.512Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:10.513Z DRIVER « [RES] [GetSerialApiInitData] - payload: 0x0a081d03000000000000000000000000000000000000000000000000000000000 - 800 -2024-09-06T10:05:10.514Z CNTRLR received additional controller information: - Z-Wave API version: 1 (official) - Z-Wave chip type: EFR32ZG23 / ZGM230S - node type Controller - controller role: primary - controller is the SIS: true - controller supports timers: false - Z-Wave Classic nodes: 1, 2 -2024-09-06T10:05:10.514Z CNTRLR querying version info... -2024-09-06T10:05:10.515Z SERIAL » 0x01030015e9 (5 bytes) -2024-09-06T10:05:10.515Z DRIVER » [REQ] [GetControllerVersion] -2024-09-06T10:05:10.518Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:10.523Z SERIAL « 0x011001155a2d5761766520372e3231000794 (18 bytes) -2024-09-06T10:05:10.524Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:10.524Z DRIVER « [RES] [GetControllerVersion] - payload: 0x5a2d5761766520372e32310007 -2024-09-06T10:05:10.525Z CNTRLR received version info: - controller type: Bridge Controller - library version: Z-Wave 7.21 -2024-09-06T10:05:10.526Z CNTRLR querying protocol version info... -2024-09-06T10:05:10.527Z SERIAL » 0x01030009f5 (5 bytes) -2024-09-06T10:05:10.527Z DRIVER » [REQ] [GetProtocolVersion] -2024-09-06T10:05:10.531Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:10.532Z SERIAL « 0x011901090007150300f4353162666237323665306662383733380f (27 bytes) -2024-09-06T10:05:10.533Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:10.533Z DRIVER « [RES] [GetProtocolVersion] - payload: 0x0007150300f435316266623732366530666238373338 -2024-09-06T10:05:10.534Z CNTRLR received protocol version info: - protocol type: Z-Wave - protocol version: 7.21.3 - appl. framework build no.: 244 - git commit hash: 35316266623732366530666238373338 -2024-09-06T10:05:10.535Z CNTRLR querying controller capabilities... -2024-09-06T10:05:10.536Z SERIAL » 0x01030005f9 (5 bytes) -2024-09-06T10:05:10.537Z DRIVER » [REQ] [GetControllerCapabilities] -2024-09-06T10:05:10.541Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:10.541Z SERIAL « 0x010401051ce3 (6 bytes) -2024-09-06T10:05:10.542Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:10.543Z DRIVER « [RES] [GetControllerCapabilities] - payload: 0x1c -2024-09-06T10:05:10.544Z CNTRLR received controller capabilities: - controller role: Primary - is the SUC: true - started this network: true - SIS is present: true - was real primary: true -2024-09-06T10:05:10.544Z CNTRLR querying serial API setup capabilities... -2024-09-06T10:05:10.545Z SERIAL » 0x0104000b01f1 (6 bytes) -2024-09-06T10:05:10.545Z DRIVER » [REQ] [SerialAPISetup] - command: GetSupportedCommands - payload: 0x01 -2024-09-06T10:05:10.550Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:10.551Z SERIAL « 0x0116010b01ff9f8007800000008000000000000000800085 (24 bytes) -2024-09-06T10:05:10.552Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:10.553Z DRIVER « [RES] [SerialAPISetup] - command: GetSupportedCommands - payload: 0xff9f80078000000080000000000000008000 -2024-09-06T10:05:10.555Z CNTRLR supported serial API setup commands: - · GetSupportedCommands - · SetTxStatusReport - · SetLongRangeMaximumTxPower - · SetPowerlevel - · GetLongRangeMaximumTxPower - · GetPowerlevel - · GetMaximumPayloadSize - · GetLongRangeMaximumPayloadSize - · SetPowerlevel16Bit - · GetPowerlevel16Bit - · GetRFRegion - · SetRFRegion - · SetNodeIDType -2024-09-06T10:05:10.555Z CNTRLR querying max. payload size... -2024-09-06T10:05:10.556Z SERIAL » 0x0104000b10e0 (6 bytes) -2024-09-06T10:05:10.557Z DRIVER » [REQ] [SerialAPISetup] - command: GetMaximumPayloadSize - payload: 0x10 -2024-09-06T10:05:10.563Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:10.564Z SERIAL « 0x0105010b102ece (7 bytes) -2024-09-06T10:05:10.564Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:10.565Z DRIVER « [RES] [SerialAPISetup] - command: GetMaximumPayloadSize - maximum payload size: 46 bytes -2024-09-06T10:05:10.566Z CNTRLR maximum payload size: 46 bytes -2024-09-06T10:05:10.567Z CNTRLR supported Z-Wave features: - · SmartStart -2024-09-06T10:05:10.568Z CNTRLR Querying configured RF region... -2024-09-06T10:05:10.569Z SERIAL » 0x0104000b20d0 (6 bytes) -2024-09-06T10:05:10.570Z DRIVER » [REQ] [SerialAPISetup] - command: GetRFRegion - payload: 0x20 -2024-09-06T10:05:10.576Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:10.577Z SERIAL « 0x0105010b2000d0 (7 bytes) -2024-09-06T10:05:10.577Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:10.578Z DRIVER « [RES] [SerialAPISetup] - command: GetRFRegion - region: Europe -2024-09-06T10:05:10.580Z CNTRLR The controller is using RF region Europe -2024-09-06T10:05:10.580Z CNTRLR Querying configured max. Long Range powerlevel... -2024-09-06T10:05:10.581Z SERIAL » 0x0104000b05f5 (6 bytes) -2024-09-06T10:05:10.582Z DRIVER » [REQ] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - payload: 0x05 -2024-09-06T10:05:10.588Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:10.589Z SERIAL « 0x0106010b05008c7a (8 bytes) -2024-09-06T10:05:10.590Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:10.591Z DRIVER « [RES] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - max. TX power (LR): 14.0 dBm -2024-09-06T10:05:10.592Z CNTRLR The max. LR powerlevel is 14.0 dBm -2024-09-06T10:05:10.592Z CNTRLR Querying configured Long Range channel information... -2024-09-06T10:05:10.593Z SERIAL » 0x010300db27 (5 bytes) -2024-09-06T10:05:10.594Z DRIVER » [REQ] [GetLongRangeChannel] -2024-09-06T10:05:10.598Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:10.599Z SERIAL « 0x010501db001030 (7 bytes) -2024-09-06T10:05:10.599Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:10.600Z DRIVER « [RES] [GetLongRangeChannel] - payload: 0x0010 -2024-09-06T10:05:10.601Z CNTRLR received Z-Wave Long Range channel information: - channel: Unsupported - supports auto channel selection: true -2024-09-06T10:05:10.601Z CNTRLR Performing soft reset... -2024-09-06T10:05:10.602Z SERIAL » 0x01030008f4 (5 bytes) -2024-09-06T10:05:10.603Z DRIVER » [REQ] [SoftReset] -2024-09-06T10:05:10.606Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:10.607Z CNTRLR Waiting for the controller to reconnect... -2024-09-06T10:05:10.608Z DRIVER all queues idle -2024-09-06T10:05:10.823Z SERIAL « 0x0112000a0700010100085e989f556c568f740025 (20 bytes) -2024-09-06T10:05:10.823Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:10.824Z DRIVER « [REQ] [SerialAPIStarted] - wake up reason: SoftwareReset - watchdog enabled: false - generic device class: 0x01 - specific device class: 0x00 - always listening: false - supports Long Range: false -2024-09-06T10:05:10.824Z CNTRLR reconnected and restarted -2024-09-06T10:05:10.824Z CNTRLR Starting hardware watchdog... -2024-09-06T10:05:10.824Z CNTRLR Switching serial API to 16-bit node IDs... -2024-09-06T10:05:10.825Z CNTRLR Switching serial API to 8-bit node IDs... -2024-09-06T10:05:10.825Z DRIVER all queues busy -2024-09-06T10:05:10.826Z SERIAL » 0x010300d22e (5 bytes) -2024-09-06T10:05:10.826Z DRIVER » [REQ] [StartWatchdog] -2024-09-06T10:05:10.827Z SERIAL » 0x0105000b800273 (7 bytes) -2024-09-06T10:05:10.827Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 16 bit -2024-09-06T10:05:10.828Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:10.829Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:10.831Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T10:05:10.832Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:10.832Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T10:05:10.833Z CNTRLR Switching to 16-bit node IDs successful -2024-09-06T10:05:10.833Z SERIAL » 0x0105000b800170 (7 bytes) -2024-09-06T10:05:10.834Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 8 bit -2024-09-06T10:05:10.839Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:10.840Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T10:05:10.841Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:10.842Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T10:05:10.842Z CNTRLR Switching to 8-bit node IDs successful -2024-09-06T10:05:10.843Z CNTRLR querying controller IDs... -2024-09-06T10:05:10.843Z SERIAL » 0x01030020dc (5 bytes) -2024-09-06T10:05:10.844Z DRIVER » [REQ] [GetControllerId] -2024-09-06T10:05:10.846Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:10.847Z SERIAL « 0x01080120d1f692e50187 (10 bytes) -2024-09-06T10:05:10.848Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:10.848Z DRIVER « [RES] [GetControllerId] - home ID: 0xd1f692e5 - own node ID: 1 -2024-09-06T10:05:10.849Z CNTRLR received controller IDs: - home ID: 0xd1f692e5 - own node ID: 1 -2024-09-06T10:05:10.849Z CNTRLR Enabling TX status report... -2024-09-06T10:05:10.850Z SERIAL » 0x0105000b02ff0c (7 bytes) -2024-09-06T10:05:10.850Z DRIVER » [REQ] [SerialAPISetup] - command: SetTxStatusReport - enabled: true -2024-09-06T10:05:10.854Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:10.854Z SERIAL « 0x0105010b0201f3 (7 bytes) -2024-09-06T10:05:10.855Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:10.855Z DRIVER « [RES] [SerialAPISetup] - command: SetTxStatusReport - success: true -2024-09-06T10:05:10.856Z CNTRLR Enabling TX status report successful... -2024-09-06T10:05:10.856Z CNTRLR finding SUC... -2024-09-06T10:05:10.857Z SERIAL » 0x01030056aa (5 bytes) -2024-09-06T10:05:10.857Z DRIVER » [REQ] [GetSUCNodeId] -2024-09-06T10:05:10.859Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:10.860Z SERIAL « 0x0104015601ad (6 bytes) -2024-09-06T10:05:10.860Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:10.861Z DRIVER « [RES] [GetSUCNodeId] - payload: 0x01 -2024-09-06T10:05:10.861Z CNTRLR This is the SUC -2024-09-06T10:05:10.862Z DRIVER all queues idle -2024-09-06T10:05:10.876Z DRIVER Cache file for homeId 0xd1f692e5 found, attempting to restore the network from - cache... -2024-09-06T10:05:10.878Z CNTRLR [Node 001] Embedded device config loaded -2024-09-06T10:05:10.879Z DRIVER Restoring the network from cache was successful! -2024-09-06T10:05:10.879Z CNTRLR [Node 001] [Manufacturer Specific] manufacturerId: metadata updated -2024-09-06T10:05:10.879Z CNTRLR [Node 001] [Manufacturer Specific] productType: metadata updated -2024-09-06T10:05:10.880Z CNTRLR [Node 001] [Manufacturer Specific] productId: metadata updated -2024-09-06T10:05:10.880Z CNTRLR [Node 001] [~] [Manufacturer Specific] manufacturerId: 634 => 634 -2024-09-06T10:05:10.881Z CNTRLR [Node 001] [~] [Manufacturer Specific] productType: 4 => 4 -2024-09-06T10:05:10.881Z CNTRLR [Node 001] [~] [Manufacturer Specific] productId: 1552 => 1552 -2024-09-06T10:05:10.881Z CNTRLR [Node 001] [Version] firmwareVersions: metadata updated -2024-09-06T10:05:10.882Z CNTRLR [Node 001] [~] [Version] firmwareVersions: 1.30 => 1.30 -2024-09-06T10:05:10.882Z CNTRLR [Node 001] [Version] zWaveProtocolVersion: metadata updated -2024-09-06T10:05:10.882Z CNTRLR [Node 001] [~] [Version] zWaveProtocolVersion: "7.21.3" => "7.21.3" -2024-09-06T10:05:10.883Z CNTRLR [Node 001] [Version] sdkVersion: metadata updated -2024-09-06T10:05:10.883Z CNTRLR [Node 001] [~] [Version] sdkVersion: "7.21.3" => "7.21.3" -2024-09-06T10:05:10.883Z CNTRLR Interview completed -2024-09-06T10:05:10.884Z DRIVER Network key for S0 configured, enabling S0 security manager... -2024-09-06T10:05:10.885Z DRIVER At least one network key for S2 configured, enabling S2 security manager... -2024-09-06T10:05:10.887Z DRIVER At least one network key for Z-Wave Long Range configured, enabling security m - anager... -2024-09-06T10:05:10.887Z DRIVER driver ready -2024-09-06T10:05:11.888Z CNTRLR Updating the controller NIF... -2024-09-06T10:05:11.889Z DRIVER all queues busy -2024-09-06T10:05:11.890Z SERIAL » 0x010f0003010100085e989f556c568f7436 (17 bytes) -2024-09-06T10:05:11.891Z DRIVER » [REQ] [SetApplicationNodeInformation] - is listening: true - generic device class: 0x01 - specific device class: 0x00 - supported CCs: - · Z-Wave Plus Info - · Security - · Security 2 - · Transport Service - · Supervision - · CRC-16 Encapsulation - · Multi Command - · Inclusion Controller - controlled CCs: -2024-09-06T10:05:11.895Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:11.896Z CNTRLR performing hard reset... -2024-09-06T10:05:11.897Z SERIAL » 0x0104004201b8 (6 bytes) -2024-09-06T10:05:11.897Z DRIVER » [REQ] [HardReset] - callback id: 1 -2024-09-06T10:05:11.901Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:11.922Z SERIAL « 0x0104004201b8 (6 bytes) -2024-09-06T10:05:11.923Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:11.924Z DRIVER « [REQ] [HardReset] - callback id: 1 -2024-09-06T10:05:11.925Z CNTRLR hard reset succeeded -2024-09-06T10:05:11.926Z CNTRLR querying Serial API capabilities... -2024-09-06T10:05:11.927Z SERIAL » 0x01030007fb (5 bytes) -2024-09-06T10:05:11.928Z DRIVER » [REQ] [GetSerialApiCapabilities] -2024-09-06T10:05:11.930Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:11.935Z SERIAL « 0x012b0107011e027a00040610f6873e88cf2bc04ffbd7fde09700008000808680b (45 bytes) - a0500700000ee7fc000000035 -2024-09-06T10:05:11.936Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:11.936Z DRIVER « [RES] [GetSerialApiCapabilities] - payload: 0x011e027a00040610f6873e88cf2bc04ffbd7fde09700008000808680ba0500700 - 000ee7fc0000000 -2024-09-06T10:05:11.938Z CNTRLR received API capabilities: - firmware version: 1.30 - manufacturer ID: 0x027a - product type: 0x04 - product ID: 0x0610 - supported functions: - · GetSerialApiInitData (0x02) - · SetApplicationNodeInformation (0x03) - · GetControllerCapabilities (0x05) - · SetSerialApiTimeouts (0x06) - · GetSerialApiCapabilities (0x07) - · SoftReset (0x08) - · GetProtocolVersion (0x09) - · SerialAPIStarted (0x0a) - · SerialAPISetup (0x0b) - · SetRFReceiveMode (0x10) - · SendNodeInformation (0x12) - · SendData (0x13) - · SendDataMulticast (0x14) - · GetControllerVersion (0x15) - · SendDataAbort (0x16) - · FUNC_ID_ZW_GET_RANDOM (0x1c) - · GetControllerId (0x20) - · UNKNOWN_FUNC_MEMORY_GET_BYTE (0x21) - · UNKNOWN_FUNC_MEMORY_PUT_BYTE (0x22) - · UNKNOWN_FUNC_MEMORY_GET_BUFFER (0x23) - · UNKNOWN_FUNC_MEMORY_PUT_BUFFER (0x24) - · EnterBootloader (0x27) - · UNKNOWN_FUNC_UNKNOWN_0x28 (0x28) - · GetNVMId (0x29) - · ExtNVMReadLongBuffer (0x2a) - · ExtNVMReadLongByte (0x2c) - · NVMOperations (0x2e) - · ClearTxTimers (0x37) - · GetTxTimers (0x38) - · ClearNetworkStats (0x39) - · GetNetworkStats (0x3a) - · GetBackgroundRSSI (0x3b) - · SetListenBeforeTalkThreshold (0x3c) - · RemoveSpecificNodeIdFromNetwork (0x3f) - · GetNodeProtocolInfo (0x41) - · HardReset (0x42) - · FUNC_ID_ZW_REPLICATION_COMMAND_COMPLETE (0x44) - · FUNC_ID_ZW_REPLICATION_SEND_DATA (0x45) - · AssignReturnRoute (0x46) - · DeleteReturnRoute (0x47) - · RequestNodeNeighborUpdate (0x48) - · ApplicationUpdateRequest (0x49) - · AddNodeToNetwork (0x4a) - · RemoveNodeFromNetwork (0x4b) - · AddPrimaryController (0x4d) - · AssignPriorityReturnRoute (0x4f) - · SetLearnMode (0x50) - · AssignSUCReturnRoute (0x51) - · RequestNetworkUpdate (0x53) - · SetSUCNodeId (0x54) - · DeleteSUCReturnRoute (0x55) - · GetSUCNodeId (0x56) - · SendSUCNodeId (0x57) - · AssignPrioritySUCReturnRoute (0x58) - · ExploreRequestInclusion (0x5e) - · ExploreRequestExclusion (0x5f) - · RequestNodeInfo (0x60) - · RemoveFailedNode (0x61) - · IsFailedNode (0x62) - · ReplaceFailedNode (0x63) - · undefined (0x65) - · RequestProtocolCCEncryption (0x68) - · GetRoutingInfo (0x80) - · LockUnlockLastRoute (0x90) - · GetPriorityRoute (0x92) - · SetPriorityRoute (0x93) - · UNKNOWN_FUNC_UNKNOWN_0x98 (0x98) - · VirtualNodeSetNodeInfo (0xa0) - · VirtualNodeSendNodeInfo (0xa2) - · VirtualNodeSetLearnMode (0xa4) - · GetVirtualNodes (0xa5) - · IsVirtualNode (0xa6) - · BridgeApplicationCommand (0xa8) - · SendDataBridge (0xa9) - · SendDataMulticastBridge (0xab) - · GetLibrary (0xbd) - · SendTestFrame (0xbe) - · GetProtocolStatus (0xbf) - · StartWatchdog (0xd2) - · StopWatchdog (0xd3) - · SetMaximumRoutingAttempts (0xd4) - · SetMaxSmartStartInclusionRequestInterval (0xd6) - · undefined (0xd7) - · undefined (0xd8) - · Shutdown (0xd9) - · GetLongRangeNodes (0xda) - · GetLongRangeChannel (0xdb) - · SetLongRangeChannel (0xdc) - · SetLongRangeShadowNodeIDs (0xdd) - · Proprietary_DE (0xde) - · Proprietary_DF (0xdf) - · Proprietary_E7 (0xe7) - · Proprietary_E8 (0xe8) -2024-09-06T10:05:11.938Z CNTRLR querying additional controller information... -2024-09-06T10:05:11.939Z SERIAL » 0x01030002fe (5 bytes) -2024-09-06T10:05:11.940Z DRIVER » [REQ] [GetSerialApiInitData] -2024-09-06T10:05:11.941Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:11.946Z SERIAL « 0x012501020a001d010000000000000000000000000000000000000000000000000 (39 bytes) - 00000000800c7 -2024-09-06T10:05:11.947Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:11.948Z DRIVER « [RES] [GetSerialApiInitData] - payload: 0x0a001d01000000000000000000000000000000000000000000000000000000000 - 800 -2024-09-06T10:05:11.948Z CNTRLR received additional controller information: - Z-Wave API version: 1 (official) - Z-Wave chip type: EFR32ZG23 / ZGM230S - node type Controller - controller role: primary - controller is the SIS: false - controller supports timers: false - Z-Wave Classic nodes: 1 -2024-09-06T10:05:11.949Z CNTRLR querying version info... -2024-09-06T10:05:11.950Z SERIAL » 0x01030015e9 (5 bytes) -2024-09-06T10:05:11.950Z DRIVER » [REQ] [GetControllerVersion] -2024-09-06T10:05:11.952Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:11.954Z SERIAL « 0x011001155a2d5761766520372e3231000794 (18 bytes) -2024-09-06T10:05:11.955Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:11.956Z DRIVER « [RES] [GetControllerVersion] - payload: 0x5a2d5761766520372e32310007 -2024-09-06T10:05:11.956Z CNTRLR received version info: - controller type: Bridge Controller - library version: Z-Wave 7.21 -2024-09-06T10:05:11.956Z CNTRLR querying protocol version info... -2024-09-06T10:05:11.957Z SERIAL » 0x01030009f5 (5 bytes) -2024-09-06T10:05:11.958Z DRIVER » [REQ] [GetProtocolVersion] -2024-09-06T10:05:11.959Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:11.962Z SERIAL « 0x011901090007150300f4353162666237323665306662383733380f (27 bytes) -2024-09-06T10:05:11.963Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:11.963Z DRIVER « [RES] [GetProtocolVersion] - payload: 0x0007150300f435316266623732366530666238373338 -2024-09-06T10:05:11.964Z CNTRLR received protocol version info: - protocol type: Z-Wave - protocol version: 7.21.3 - appl. framework build no.: 244 - git commit hash: 35316266623732366530666238373338 -2024-09-06T10:05:11.964Z CNTRLR querying controller capabilities... -2024-09-06T10:05:11.965Z SERIAL » 0x01030005f9 (5 bytes) -2024-09-06T10:05:11.965Z DRIVER » [REQ] [GetControllerCapabilities] -2024-09-06T10:05:11.967Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:11.968Z SERIAL « 0x0104010528d7 (6 bytes) -2024-09-06T10:05:11.969Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:11.969Z DRIVER « [RES] [GetControllerCapabilities] - payload: 0x28 -2024-09-06T10:05:11.970Z CNTRLR received controller capabilities: - controller role: Primary - is the SUC: false - started this network: true - SIS is present: false - was real primary: true -2024-09-06T10:05:11.970Z CNTRLR querying serial API setup capabilities... -2024-09-06T10:05:11.971Z SERIAL » 0x0104000b01f1 (6 bytes) -2024-09-06T10:05:11.971Z DRIVER » [REQ] [SerialAPISetup] - command: GetSupportedCommands - payload: 0x01 -2024-09-06T10:05:11.973Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:11.976Z SERIAL « 0x0116010b01ff9f8007800000008000000000000000800085 (24 bytes) -2024-09-06T10:05:11.976Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:11.977Z DRIVER « [RES] [SerialAPISetup] - command: GetSupportedCommands - payload: 0xff9f80078000000080000000000000008000 -2024-09-06T10:05:11.978Z CNTRLR supported serial API setup commands: - · GetSupportedCommands - · SetTxStatusReport - · SetLongRangeMaximumTxPower - · SetPowerlevel - · GetLongRangeMaximumTxPower - · GetPowerlevel - · GetMaximumPayloadSize - · GetLongRangeMaximumPayloadSize - · SetPowerlevel16Bit - · GetPowerlevel16Bit - · GetRFRegion - · SetRFRegion - · SetNodeIDType -2024-09-06T10:05:11.978Z CNTRLR querying max. payload size... -2024-09-06T10:05:11.979Z SERIAL » 0x0104000b10e0 (6 bytes) -2024-09-06T10:05:11.979Z DRIVER » [REQ] [SerialAPISetup] - command: GetMaximumPayloadSize - payload: 0x10 -2024-09-06T10:05:11.981Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:11.982Z SERIAL « 0x0105010b102ece (7 bytes) -2024-09-06T10:05:11.983Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:11.983Z DRIVER « [RES] [SerialAPISetup] - command: GetMaximumPayloadSize - maximum payload size: 46 bytes -2024-09-06T10:05:11.984Z CNTRLR maximum payload size: 46 bytes -2024-09-06T10:05:11.984Z CNTRLR supported Z-Wave features: - · SmartStart -2024-09-06T10:05:11.984Z CNTRLR Querying configured RF region... -2024-09-06T10:05:11.985Z SERIAL » 0x0104000b20d0 (6 bytes) -2024-09-06T10:05:11.986Z DRIVER » [REQ] [SerialAPISetup] - command: GetRFRegion - payload: 0x20 -2024-09-06T10:05:11.988Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:11.989Z SERIAL « 0x0105010b2000d0 (7 bytes) -2024-09-06T10:05:11.989Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:11.990Z DRIVER « [RES] [SerialAPISetup] - command: GetRFRegion - region: Europe -2024-09-06T10:05:11.990Z CNTRLR The controller is using RF region Europe -2024-09-06T10:05:11.991Z CNTRLR Querying configured max. Long Range powerlevel... -2024-09-06T10:05:11.992Z SERIAL » 0x0104000b05f5 (6 bytes) -2024-09-06T10:05:11.992Z DRIVER » [REQ] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - payload: 0x05 -2024-09-06T10:05:11.994Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:11.995Z SERIAL « 0x0106010b05008c7a (8 bytes) -2024-09-06T10:05:11.996Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:11.996Z DRIVER « [RES] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - max. TX power (LR): 14.0 dBm -2024-09-06T10:05:11.997Z CNTRLR The max. LR powerlevel is 14.0 dBm -2024-09-06T10:05:11.997Z CNTRLR Querying configured Long Range channel information... -2024-09-06T10:05:11.998Z SERIAL » 0x010300db27 (5 bytes) -2024-09-06T10:05:11.998Z DRIVER » [REQ] [GetLongRangeChannel] -2024-09-06T10:05:12.000Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:12.001Z SERIAL « 0x010501db001030 (7 bytes) -2024-09-06T10:05:12.002Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:12.002Z DRIVER « [RES] [GetLongRangeChannel] - payload: 0x0010 -2024-09-06T10:05:12.003Z CNTRLR received Z-Wave Long Range channel information: - channel: Unsupported - supports auto channel selection: true -2024-09-06T10:05:12.003Z CNTRLR Performing soft reset... -2024-09-06T10:05:12.004Z SERIAL » 0x01030008f4 (5 bytes) -2024-09-06T10:05:12.004Z DRIVER » [REQ] [SoftReset] -2024-09-06T10:05:12.006Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:12.007Z CNTRLR Waiting for the controller to reconnect... -2024-09-06T10:05:12.008Z DRIVER all queues idle -2024-09-06T10:05:12.226Z SERIAL « 0x0112000a0700010100085e989f556c568f740025 (20 bytes) -2024-09-06T10:05:12.226Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:12.227Z DRIVER « [REQ] [SerialAPIStarted] - wake up reason: SoftwareReset - watchdog enabled: false - generic device class: 0x01 - specific device class: 0x00 - always listening: false - supports Long Range: false -2024-09-06T10:05:12.228Z CNTRLR reconnected and restarted -2024-09-06T10:05:12.228Z CNTRLR Starting hardware watchdog... -2024-09-06T10:05:12.228Z CNTRLR Switching serial API to 16-bit node IDs... -2024-09-06T10:05:12.229Z CNTRLR Switching serial API to 8-bit node IDs... -2024-09-06T10:05:12.229Z DRIVER all queues busy -2024-09-06T10:05:12.230Z SERIAL » 0x010300d22e (5 bytes) -2024-09-06T10:05:12.230Z DRIVER » [REQ] [StartWatchdog] -2024-09-06T10:05:12.231Z SERIAL » 0x0105000b800273 (7 bytes) -2024-09-06T10:05:12.232Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 16 bit -2024-09-06T10:05:12.233Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:12.234Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:12.236Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T10:05:12.236Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:12.237Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T10:05:12.238Z CNTRLR Switching to 16-bit node IDs successful -2024-09-06T10:05:12.239Z SERIAL » 0x0105000b800170 (7 bytes) -2024-09-06T10:05:12.240Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 8 bit -2024-09-06T10:05:12.242Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:12.243Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T10:05:12.244Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:12.244Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T10:05:12.245Z CNTRLR Switching to 8-bit node IDs successful -2024-09-06T10:05:12.245Z CNTRLR querying controller IDs... -2024-09-06T10:05:12.246Z SERIAL » 0x01030020dc (5 bytes) -2024-09-06T10:05:12.247Z DRIVER » [REQ] [GetControllerId] -2024-09-06T10:05:12.249Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:12.250Z SERIAL « 0x01080120fd37611c0160 (10 bytes) -2024-09-06T10:05:12.251Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:12.252Z DRIVER « [RES] [GetControllerId] - home ID: 0xfd37611c - own node ID: 1 -2024-09-06T10:05:12.253Z CNTRLR received controller IDs: - home ID: 0xfd37611c - own node ID: 1 -2024-09-06T10:05:12.253Z CNTRLR Enabling TX status report... -2024-09-06T10:05:12.254Z SERIAL » 0x0105000b02ff0c (7 bytes) -2024-09-06T10:05:12.254Z DRIVER » [REQ] [SerialAPISetup] - command: SetTxStatusReport - enabled: true -2024-09-06T10:05:12.258Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:12.259Z SERIAL « 0x0105010b0201f3 (7 bytes) -2024-09-06T10:05:12.259Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:12.260Z DRIVER « [RES] [SerialAPISetup] - command: SetTxStatusReport - success: true -2024-09-06T10:05:12.261Z CNTRLR Enabling TX status report successful... -2024-09-06T10:05:12.262Z CNTRLR finding SUC... -2024-09-06T10:05:12.263Z SERIAL » 0x01030056aa (5 bytes) -2024-09-06T10:05:12.263Z DRIVER » [REQ] [GetSUCNodeId] -2024-09-06T10:05:12.265Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:12.266Z SERIAL « 0x0104015600ac (6 bytes) -2024-09-06T10:05:12.267Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:12.268Z DRIVER « [RES] [GetSUCNodeId] - payload: 0x00 -2024-09-06T10:05:12.269Z CNTRLR No SUC present in the network -2024-09-06T10:05:12.269Z CNTRLR There is no SUC/SIS in the network - promoting ourselves... -2024-09-06T10:05:12.271Z SERIAL » 0x01080054010125010285 (10 bytes) -2024-09-06T10:05:12.271Z DRIVER » [REQ] [SetSUCNodeId] - payload: 0x0101250102 -2024-09-06T10:05:12.274Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:12.276Z SERIAL « 0x0104015401af (6 bytes) -2024-09-06T10:05:12.277Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:12.278Z DRIVER « [RES] [SetSUCNodeId] - was executed: true -2024-09-06T10:05:12.279Z CNTRLR Promotion to SUC/SIS succeeded. -2024-09-06T10:05:12.280Z DRIVER all queues idle -2024-09-06T10:05:12.285Z CNTRLR [Node 001] [Manufacturer Specific] manufacturerId: metadata updated -2024-09-06T10:05:12.285Z CNTRLR [Node 001] [Manufacturer Specific] productType: metadata updated -2024-09-06T10:05:12.286Z CNTRLR [Node 001] [Manufacturer Specific] productId: metadata updated -2024-09-06T10:05:12.286Z CNTRLR [Node 001] [+] [Manufacturer Specific] manufacturerId: 634 -2024-09-06T10:05:12.286Z CNTRLR [Node 001] [+] [Manufacturer Specific] productType: 4 -2024-09-06T10:05:12.286Z CNTRLR [Node 001] [+] [Manufacturer Specific] productId: 1552 -2024-09-06T10:05:12.287Z CNTRLR [Node 001] [Version] firmwareVersions: metadata updated -2024-09-06T10:05:12.287Z CNTRLR [Node 001] [+] [Version] firmwareVersions: 1.30 -2024-09-06T10:05:12.287Z CNTRLR [Node 001] [Version] zWaveProtocolVersion: metadata updated -2024-09-06T10:05:12.287Z CNTRLR [Node 001] [+] [Version] zWaveProtocolVersion: "7.21.3" -2024-09-06T10:05:12.287Z CNTRLR [Node 001] [Version] sdkVersion: metadata updated -2024-09-06T10:05:12.288Z CNTRLR [Node 001] [+] [Version] sdkVersion: "7.21.3" -2024-09-06T10:05:12.288Z CNTRLR Interview completed -2024-09-06T10:05:12.288Z DRIVER Network key for S0 configured, enabling S0 security manager... -2024-09-06T10:05:12.288Z DRIVER At least one network key for S2 configured, enabling S2 security manager... -2024-09-06T10:05:12.289Z DRIVER At least one network key for Z-Wave Long Range configured, enabling security m - anager... -2024-09-06T10:05:12.290Z DRIVER driver ready -2024-09-06T10:05:16.928Z CNTRLR Starting inclusion process with strategy Default... -2024-09-06T10:05:16.930Z DRIVER all queues busy -2024-09-06T10:05:16.932Z SERIAL » 0x0105004ac10372 (7 bytes) -2024-09-06T10:05:16.933Z DRIVER » [REQ] [AddNodeToNetwork] - node type: Any - high power: true - network wide: true - callback id: 3 -2024-09-06T10:05:16.935Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:16.941Z SERIAL « 0x0107004a03010000b0 (9 bytes) -2024-09-06T10:05:16.942Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:16.943Z DRIVER « [REQ] [AddNodeToNetwork] - status: Ready - callback id: 3 -2024-09-06T10:05:16.944Z CNTRLR The controller is now ready to add nodes -2024-09-06T10:05:16.944Z DRIVER all queues idle -2024-09-06T10:05:20.983Z SERIAL « 0x0107004a03020000b3 (9 bytes) -2024-09-06T10:05:20.984Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:20.986Z DRIVER « [REQ] [AddNodeToNetwork] - status: NodeFound - callback id: 3 -2024-09-06T10:05:20.987Z DRIVER handling request AddNodeToNetwork (74) -2024-09-06T10:05:20.988Z DRIVER 1 handler registered! -2024-09-06T10:05:20.988Z DRIVER invoking handler #0 -2024-09-06T10:05:20.990Z CNTRLR handling add node request (status = NodeFound) -2024-09-06T10:05:21.087Z SERIAL « 0x0112004a0304020b0201005e989f556c568f7467 (20 bytes) -2024-09-06T10:05:21.088Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:21.090Z DRIVER « [REQ] [AddNodeToNetwork] - status: AddingController - callback id: 3 -2024-09-06T10:05:21.091Z DRIVER handling request AddNodeToNetwork (74) -2024-09-06T10:05:21.091Z DRIVER 1 handler registered! -2024-09-06T10:05:21.092Z DRIVER invoking handler #0 -2024-09-06T10:05:21.092Z CNTRLR handling add node request (status = AddingController) -2024-09-06T10:05:21.097Z DRIVER the message was handled -2024-09-06T10:05:21.507Z SERIAL « 0x0107004a03050200b6 (9 bytes) -2024-09-06T10:05:21.508Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:21.510Z DRIVER « [REQ] [AddNodeToNetwork] - status: ProtocolDone - callback id: 3 -2024-09-06T10:05:21.511Z DRIVER handling request AddNodeToNetwork (74) -2024-09-06T10:05:21.511Z DRIVER 1 handler registered! -2024-09-06T10:05:21.512Z DRIVER invoking handler #0 -2024-09-06T10:05:21.512Z CNTRLR handling add node request (status = ProtocolDone) -2024-09-06T10:05:21.514Z CNTRLR finishing inclusion process... -2024-09-06T10:05:21.516Z DRIVER all queues busy -2024-09-06T10:05:21.518Z SERIAL » 0x0105004ac50471 (7 bytes) -2024-09-06T10:05:21.520Z DRIVER » [REQ] [AddNodeToNetwork] - action: Stop - high power: true - network wide: true - callback id: 4 -2024-09-06T10:05:21.522Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:24.089Z SERIAL « 0x0107004a04060200b2 (9 bytes) -2024-09-06T10:05:24.090Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:24.090Z SERIAL « 0x0107004a04060200b2 (9 bytes) -2024-09-06T10:05:24.091Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:24.092Z DRIVER « [REQ] [AddNodeToNetwork] - status: Done - callback id: 4 -2024-09-06T10:05:24.093Z SERIAL » 0x0105004ac50075 (7 bytes) -2024-09-06T10:05:24.094Z DRIVER » [REQ] [AddNodeToNetwork] - action: Stop - high power: true - network wide: true - callback id: 0 -2024-09-06T10:05:24.095Z DRIVER « [REQ] [AddNodeToNetwork] - status: Done - callback id: 4 -2024-09-06T10:05:24.095Z DRIVER handling request AddNodeToNetwork (74) -2024-09-06T10:05:24.096Z DRIVER 1 handler registered! -2024-09-06T10:05:24.096Z DRIVER invoking handler #0 -2024-09-06T10:05:24.096Z CNTRLR handling add node request (status = Done) -2024-09-06T10:05:24.102Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:24.104Z CNTRLR The inclusion process was stopped -2024-09-06T10:05:24.104Z CNTRLR finished adding node 2: - basic device class: Static Controller - generic device class: Remote Controller - specific device class: Unused - supported CCs: - · Z-Wave Plus Info (0x5e) - · Security (0x98) - · Security 2 (0x9f) - · Transport Service (0x55) - · Supervision (0x6c) - · CRC-16 Encapsulation (0x56) - · Multi Command (0x8f) - · Inclusion Controller (0x74) - controlled CCs: -2024-09-06T10:05:24.105Z CNTRLR » [Node 002] Assigning SUC return route... -2024-09-06T10:05:24.105Z CNTRLR » [Node 002] Deleting SUC return route... -2024-09-06T10:05:24.106Z SERIAL » 0x010500550205a8 (7 bytes) -2024-09-06T10:05:24.107Z DRIVER » [Node 002] [REQ] [DeleteSUCReturnRoute] - payload: 0x0205 -2024-09-06T10:05:24.113Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:24.115Z SERIAL « 0x0104015501ae (6 bytes) -2024-09-06T10:05:24.116Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:24.117Z DRIVER « [RES] [DeleteSUCReturnRoute] - was executed: true -2024-09-06T10:05:24.180Z SERIAL « 0x01210055050000000000000000000000000000000000000000000000000000000 (35 bytes) - 0008e -2024-09-06T10:05:24.181Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:24.181Z DRIVER « [REQ] [DeleteSUCReturnRoute] - callback id: 5 - transmit status: OK -2024-09-06T10:05:24.183Z SERIAL » 0x010500510206af (7 bytes) -2024-09-06T10:05:24.184Z DRIVER » [Node 002] [REQ] [AssignSUCReturnRoute] - payload: 0x0206 -2024-09-06T10:05:24.186Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:24.193Z SERIAL « 0x0104015101aa (6 bytes) -2024-09-06T10:05:24.194Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:24.194Z DRIVER « [RES] [AssignSUCReturnRoute] - was executed: true -2024-09-06T10:05:24.271Z SERIAL « 0x01210051060000000000000000000000000000000000000000000000000000000 (35 bytes) - 00089 -2024-09-06T10:05:24.272Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:24.275Z DRIVER « [REQ] [AssignSUCReturnRoute] - callback id: 6 - transmit status: OK -2024-09-06T10:05:24.283Z SERIAL » 0x010e00a90102029f04250000000007e0 (16 bytes) -2024-09-06T10:05:24.284Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x25 - │ callback id: 7 - └─[Security2CCKEXGet] -2024-09-06T10:05:24.290Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:24.297Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T10:05:24.298Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:24.299Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T10:06:42.101Z DRIVER ███████╗ ██╗ ██╗ █████╗ ██╗ ██╗ ███████╗ ██╗ ███████╗ - ╚══███╔╝ ██║ ██║ ██╔══██╗ ██║ ██║ ██╔════╝ ██║ ██╔════╝ - ███╔╝ █████╗ ██║ █╗ ██║ ███████║ ██║ ██║ █████╗ ██║ ███████╗ - ███╔╝ ╚════╝ ██║███╗██║ ██╔══██║ ╚██╗ ██╔╝ ██╔══╝ ██ ██║ ╚════██║ - ███████╗ ╚███╔███╔╝ ██║ ██║ ╚████╔╝ ███████╗ ╚█████╔╝ ███████║ - ╚══════╝ ╚══╝╚══╝ ╚═╝ ╚═╝ ╚═══╝ ╚══════╝ ╚════╝ ╚══════╝ -2024-09-06T10:06:42.103Z DRIVER version 13.2.0 -2024-09-06T10:06:42.103Z DRIVER -2024-09-06T10:06:42.104Z DRIVER starting driver... -2024-09-06T10:06:42.104Z DRIVER opening serial port /dev/serial/by-id/usb-Zooz_800_Z-Wave_Stick_533D004242-if0 - 0 -2024-09-06T10:06:42.113Z DRIVER serial port opened -2024-09-06T10:06:42.114Z SERIAL » 0x15 (1 bytes) -2024-09-06T10:06:43.117Z DRIVER loading configuration... -2024-09-06T10:06:43.119Z CONFIG version 13.2.0 -2024-09-06T10:06:43.424Z DRIVER beginning interview... -2024-09-06T10:06:43.425Z DRIVER added request handler for AddNodeToNetwork (0x4a)... - 1 registered -2024-09-06T10:06:43.425Z DRIVER added request handler for RemoveNodeFromNetwork (0x4b)... - 1 registered -2024-09-06T10:06:43.426Z DRIVER added request handler for ReplaceFailedNode (0x63)... - 1 registered -2024-09-06T10:06:43.426Z DRIVER added request handler for SetLearnMode (0x50)... - 1 registered -2024-09-06T10:06:43.426Z CNTRLR querying Serial API capabilities... -2024-09-06T10:06:43.434Z SERIAL » 0x01030007fb (5 bytes) -2024-09-06T10:06:43.435Z DRIVER » [REQ] [GetSerialApiCapabilities] -2024-09-06T10:06:43.441Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:43.443Z SERIAL « 0x012b0107011e027a00040610f6873e88cf2bc04ffbd7fde09700008000808680b (45 bytes) - a0500700000ee7fc000000035 -2024-09-06T10:06:43.444Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:43.445Z DRIVER « [RES] [GetSerialApiCapabilities] - payload: 0x011e027a00040610f6873e88cf2bc04ffbd7fde09700008000808680ba0500700 - 000ee7fc0000000 -2024-09-06T10:06:43.447Z CNTRLR received API capabilities: - firmware version: 1.30 - manufacturer ID: 0x027a - product type: 0x04 - product ID: 0x0610 - supported functions: - · GetSerialApiInitData (0x02) - · SetApplicationNodeInformation (0x03) - · GetControllerCapabilities (0x05) - · SetSerialApiTimeouts (0x06) - · GetSerialApiCapabilities (0x07) - · SoftReset (0x08) - · GetProtocolVersion (0x09) - · SerialAPIStarted (0x0a) - · SerialAPISetup (0x0b) - · SetRFReceiveMode (0x10) - · SendNodeInformation (0x12) - · SendData (0x13) - · SendDataMulticast (0x14) - · GetControllerVersion (0x15) - · SendDataAbort (0x16) - · FUNC_ID_ZW_GET_RANDOM (0x1c) - · GetControllerId (0x20) - · UNKNOWN_FUNC_MEMORY_GET_BYTE (0x21) - · UNKNOWN_FUNC_MEMORY_PUT_BYTE (0x22) - · UNKNOWN_FUNC_MEMORY_GET_BUFFER (0x23) - · UNKNOWN_FUNC_MEMORY_PUT_BUFFER (0x24) - · EnterBootloader (0x27) - · UNKNOWN_FUNC_UNKNOWN_0x28 (0x28) - · GetNVMId (0x29) - · ExtNVMReadLongBuffer (0x2a) - · ExtNVMReadLongByte (0x2c) - · NVMOperations (0x2e) - · ClearTxTimers (0x37) - · GetTxTimers (0x38) - · ClearNetworkStats (0x39) - · GetNetworkStats (0x3a) - · GetBackgroundRSSI (0x3b) - · SetListenBeforeTalkThreshold (0x3c) - · RemoveSpecificNodeIdFromNetwork (0x3f) - · GetNodeProtocolInfo (0x41) - · HardReset (0x42) - · FUNC_ID_ZW_REPLICATION_COMMAND_COMPLETE (0x44) - · FUNC_ID_ZW_REPLICATION_SEND_DATA (0x45) - · AssignReturnRoute (0x46) - · DeleteReturnRoute (0x47) - · RequestNodeNeighborUpdate (0x48) - · ApplicationUpdateRequest (0x49) - · AddNodeToNetwork (0x4a) - · RemoveNodeFromNetwork (0x4b) - · AddPrimaryController (0x4d) - · AssignPriorityReturnRoute (0x4f) - · SetLearnMode (0x50) - · AssignSUCReturnRoute (0x51) - · RequestNetworkUpdate (0x53) - · SetSUCNodeId (0x54) - · DeleteSUCReturnRoute (0x55) - · GetSUCNodeId (0x56) - · SendSUCNodeId (0x57) - · AssignPrioritySUCReturnRoute (0x58) - · ExploreRequestInclusion (0x5e) - · ExploreRequestExclusion (0x5f) - · RequestNodeInfo (0x60) - · RemoveFailedNode (0x61) - · IsFailedNode (0x62) - · ReplaceFailedNode (0x63) - · undefined (0x65) - · RequestProtocolCCEncryption (0x68) - · GetRoutingInfo (0x80) - · LockUnlockLastRoute (0x90) - · GetPriorityRoute (0x92) - · SetPriorityRoute (0x93) - · UNKNOWN_FUNC_UNKNOWN_0x98 (0x98) - · VirtualNodeSetNodeInfo (0xa0) - · VirtualNodeSendNodeInfo (0xa2) - · VirtualNodeSetLearnMode (0xa4) - · GetVirtualNodes (0xa5) - · IsVirtualNode (0xa6) - · BridgeApplicationCommand (0xa8) - · SendDataBridge (0xa9) - · SendDataMulticastBridge (0xab) - · GetLibrary (0xbd) - · SendTestFrame (0xbe) - · GetProtocolStatus (0xbf) - · StartWatchdog (0xd2) - · StopWatchdog (0xd3) - · SetMaximumRoutingAttempts (0xd4) - · SetMaxSmartStartInclusionRequestInterval (0xd6) - · undefined (0xd7) - · undefined (0xd8) - · Shutdown (0xd9) - · GetLongRangeNodes (0xda) - · GetLongRangeChannel (0xdb) - · SetLongRangeChannel (0xdc) - · SetLongRangeShadowNodeIDs (0xdd) - · Proprietary_DE (0xde) - · Proprietary_DF (0xdf) - · Proprietary_E7 (0xe7) - · Proprietary_E8 (0xe8) -2024-09-06T10:06:43.447Z CNTRLR querying additional controller information... -2024-09-06T10:06:43.449Z SERIAL » 0x01030002fe (5 bytes) -2024-09-06T10:06:43.449Z DRIVER » [REQ] [GetSerialApiInitData] -2024-09-06T10:06:43.456Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:43.458Z SERIAL « 0x012501020a081d030000000000000000000000000000000000000000000000000 (39 bytes) - 00000000800cd -2024-09-06T10:06:43.458Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:43.459Z DRIVER « [RES] [GetSerialApiInitData] - payload: 0x0a081d03000000000000000000000000000000000000000000000000000000000 - 800 -2024-09-06T10:06:43.460Z CNTRLR received additional controller information: - Z-Wave API version: 1 (official) - Z-Wave chip type: EFR32ZG23 / ZGM230S - node type Controller - controller role: primary - controller is the SIS: true - controller supports timers: false - Z-Wave Classic nodes: 1, 2 -2024-09-06T10:06:43.460Z CNTRLR querying version info... -2024-09-06T10:06:43.461Z SERIAL » 0x01030015e9 (5 bytes) -2024-09-06T10:06:43.462Z DRIVER » [REQ] [GetControllerVersion] -2024-09-06T10:06:43.463Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:43.468Z SERIAL « 0x011001155a2d5761766520372e3231000794 (18 bytes) -2024-09-06T10:06:43.469Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:43.469Z DRIVER « [RES] [GetControllerVersion] - payload: 0x5a2d5761766520372e32310007 -2024-09-06T10:06:43.470Z CNTRLR received version info: - controller type: Bridge Controller - library version: Z-Wave 7.21 -2024-09-06T10:06:43.470Z CNTRLR querying protocol version info... -2024-09-06T10:06:43.471Z SERIAL » 0x01030009f5 (5 bytes) -2024-09-06T10:06:43.471Z DRIVER » [REQ] [GetProtocolVersion] -2024-09-06T10:06:43.477Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:43.477Z SERIAL « 0x011901090007150300f4353162666237323665306662383733380f (27 bytes) -2024-09-06T10:06:43.478Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:43.478Z DRIVER « [RES] [GetProtocolVersion] - payload: 0x0007150300f435316266623732366530666238373338 -2024-09-06T10:06:43.479Z CNTRLR received protocol version info: - protocol type: Z-Wave - protocol version: 7.21.3 - appl. framework build no.: 244 - git commit hash: 35316266623732366530666238373338 -2024-09-06T10:06:43.480Z CNTRLR querying controller capabilities... -2024-09-06T10:06:43.481Z SERIAL » 0x01030005f9 (5 bytes) -2024-09-06T10:06:43.481Z DRIVER » [REQ] [GetControllerCapabilities] -2024-09-06T10:06:43.485Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:43.486Z SERIAL « 0x010401051ce3 (6 bytes) -2024-09-06T10:06:43.486Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:43.487Z DRIVER « [RES] [GetControllerCapabilities] - payload: 0x1c -2024-09-06T10:06:43.488Z CNTRLR received controller capabilities: - controller role: Primary - is the SUC: true - started this network: true - SIS is present: true - was real primary: true -2024-09-06T10:06:43.488Z CNTRLR querying serial API setup capabilities... -2024-09-06T10:06:43.489Z SERIAL » 0x0104000b01f1 (6 bytes) -2024-09-06T10:06:43.489Z DRIVER » [REQ] [SerialAPISetup] - command: GetSupportedCommands - payload: 0x01 -2024-09-06T10:06:43.494Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:43.495Z SERIAL « 0x0116010b01ff9f8007800000008000000000000000800085 (24 bytes) -2024-09-06T10:06:43.495Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:43.496Z DRIVER « [RES] [SerialAPISetup] - command: GetSupportedCommands - payload: 0xff9f80078000000080000000000000008000 -2024-09-06T10:06:43.497Z CNTRLR supported serial API setup commands: - · GetSupportedCommands - · SetTxStatusReport - · SetLongRangeMaximumTxPower - · SetPowerlevel - · GetLongRangeMaximumTxPower - · GetPowerlevel - · GetMaximumPayloadSize - · GetLongRangeMaximumPayloadSize - · SetPowerlevel16Bit - · GetPowerlevel16Bit - · GetRFRegion - · SetRFRegion - · SetNodeIDType -2024-09-06T10:06:43.497Z CNTRLR querying max. payload size... -2024-09-06T10:06:43.498Z SERIAL » 0x0104000b10e0 (6 bytes) -2024-09-06T10:06:43.498Z DRIVER » [REQ] [SerialAPISetup] - command: GetMaximumPayloadSize - payload: 0x10 -2024-09-06T10:06:43.503Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:43.503Z SERIAL « 0x0105010b102ece (7 bytes) -2024-09-06T10:06:43.503Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:43.504Z DRIVER « [RES] [SerialAPISetup] - command: GetMaximumPayloadSize - maximum payload size: 46 bytes -2024-09-06T10:06:43.505Z CNTRLR maximum payload size: 46 bytes -2024-09-06T10:06:43.505Z CNTRLR supported Z-Wave features: - · SmartStart -2024-09-06T10:06:43.505Z CNTRLR Querying configured RF region... -2024-09-06T10:06:43.506Z SERIAL » 0x0104000b20d0 (6 bytes) -2024-09-06T10:06:43.507Z DRIVER » [REQ] [SerialAPISetup] - command: GetRFRegion - payload: 0x20 -2024-09-06T10:06:43.511Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:43.512Z SERIAL « 0x0105010b2000d0 (7 bytes) -2024-09-06T10:06:43.512Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:43.513Z DRIVER « [RES] [SerialAPISetup] - command: GetRFRegion - region: Europe -2024-09-06T10:06:43.514Z CNTRLR The controller is using RF region Europe -2024-09-06T10:06:43.514Z CNTRLR Querying configured max. Long Range powerlevel... -2024-09-06T10:06:43.515Z SERIAL » 0x0104000b05f5 (6 bytes) -2024-09-06T10:06:43.515Z DRIVER » [REQ] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - payload: 0x05 -2024-09-06T10:06:43.519Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:43.520Z SERIAL « 0x0106010b05008c7a (8 bytes) -2024-09-06T10:06:43.520Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:43.520Z DRIVER « [RES] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - max. TX power (LR): 14.0 dBm -2024-09-06T10:06:43.521Z CNTRLR The max. LR powerlevel is 14.0 dBm -2024-09-06T10:06:43.521Z CNTRLR Querying configured Long Range channel information... -2024-09-06T10:06:43.522Z SERIAL » 0x010300db27 (5 bytes) -2024-09-06T10:06:43.523Z DRIVER » [REQ] [GetLongRangeChannel] -2024-09-06T10:06:43.527Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:43.527Z SERIAL « 0x010501db001030 (7 bytes) -2024-09-06T10:06:43.528Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:43.528Z DRIVER « [RES] [GetLongRangeChannel] - payload: 0x0010 -2024-09-06T10:06:43.529Z CNTRLR received Z-Wave Long Range channel information: - channel: Unsupported - supports auto channel selection: true -2024-09-06T10:06:43.529Z CNTRLR Performing soft reset... -2024-09-06T10:06:43.530Z SERIAL » 0x01030008f4 (5 bytes) -2024-09-06T10:06:43.531Z DRIVER » [REQ] [SoftReset] -2024-09-06T10:06:43.534Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:43.535Z CNTRLR Waiting for the controller to reconnect... -2024-09-06T10:06:43.536Z DRIVER all queues idle -2024-09-06T10:06:43.752Z SERIAL « 0x0112000a0700010100085e989f556c568f740025 (20 bytes) -2024-09-06T10:06:43.753Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:43.753Z DRIVER « [REQ] [SerialAPIStarted] - wake up reason: SoftwareReset - watchdog enabled: false - generic device class: 0x01 - specific device class: 0x00 - always listening: false - supports Long Range: false -2024-09-06T10:06:43.754Z CNTRLR reconnected and restarted -2024-09-06T10:06:43.754Z CNTRLR Starting hardware watchdog... -2024-09-06T10:06:43.754Z CNTRLR Switching serial API to 16-bit node IDs... -2024-09-06T10:06:43.754Z CNTRLR Switching serial API to 8-bit node IDs... -2024-09-06T10:06:43.755Z DRIVER all queues busy -2024-09-06T10:06:43.755Z SERIAL » 0x010300d22e (5 bytes) -2024-09-06T10:06:43.756Z DRIVER » [REQ] [StartWatchdog] -2024-09-06T10:06:43.756Z SERIAL » 0x0105000b800273 (7 bytes) -2024-09-06T10:06:43.757Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 16 bit -2024-09-06T10:06:43.764Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:43.765Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:43.766Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T10:06:43.766Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:43.767Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T10:06:43.768Z CNTRLR Switching to 16-bit node IDs successful -2024-09-06T10:06:43.769Z SERIAL » 0x0105000b800170 (7 bytes) -2024-09-06T10:06:43.769Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 8 bit -2024-09-06T10:06:43.773Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:43.791Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T10:06:43.792Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:43.793Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T10:06:43.795Z CNTRLR Switching to 8-bit node IDs successful -2024-09-06T10:06:43.795Z CNTRLR querying controller IDs... -2024-09-06T10:06:43.796Z SERIAL » 0x01030020dc (5 bytes) -2024-09-06T10:06:43.797Z DRIVER » [REQ] [GetControllerId] -2024-09-06T10:06:43.798Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:43.800Z SERIAL « 0x01080120fd37611c0160 (10 bytes) -2024-09-06T10:06:43.800Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:43.801Z DRIVER « [RES] [GetControllerId] - home ID: 0xfd37611c - own node ID: 1 -2024-09-06T10:06:43.802Z CNTRLR received controller IDs: - home ID: 0xfd37611c - own node ID: 1 -2024-09-06T10:06:43.802Z CNTRLR Enabling TX status report... -2024-09-06T10:06:43.803Z SERIAL » 0x0105000b02ff0c (7 bytes) -2024-09-06T10:06:43.804Z DRIVER » [REQ] [SerialAPISetup] - command: SetTxStatusReport - enabled: true -2024-09-06T10:06:43.808Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:43.809Z SERIAL « 0x0105010b0201f3 (7 bytes) -2024-09-06T10:06:43.810Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:43.810Z DRIVER « [RES] [SerialAPISetup] - command: SetTxStatusReport - success: true -2024-09-06T10:06:43.811Z CNTRLR Enabling TX status report successful... -2024-09-06T10:06:43.812Z CNTRLR finding SUC... -2024-09-06T10:06:43.813Z SERIAL » 0x01030056aa (5 bytes) -2024-09-06T10:06:43.813Z DRIVER » [REQ] [GetSUCNodeId] -2024-09-06T10:06:43.815Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:43.816Z SERIAL « 0x0104015601ad (6 bytes) -2024-09-06T10:06:43.817Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:43.817Z DRIVER « [RES] [GetSUCNodeId] - payload: 0x01 -2024-09-06T10:06:43.818Z CNTRLR This is the SUC -2024-09-06T10:06:43.819Z DRIVER all queues idle -2024-09-06T10:06:43.839Z DRIVER Cache file for homeId 0xfd37611c found, attempting to restore the network from - cache... -2024-09-06T10:06:43.847Z CNTRLR [Node 001] Embedded device config loaded -2024-09-06T10:06:43.848Z DRIVER Restoring the network from cache was successful! -2024-09-06T10:06:43.848Z CNTRLR [Node 001] [Manufacturer Specific] manufacturerId: metadata updated -2024-09-06T10:06:43.848Z CNTRLR [Node 001] [Manufacturer Specific] productType: metadata updated -2024-09-06T10:06:43.848Z CNTRLR [Node 001] [Manufacturer Specific] productId: metadata updated -2024-09-06T10:06:43.849Z CNTRLR [Node 001] [~] [Manufacturer Specific] manufacturerId: 634 => 634 -2024-09-06T10:06:43.849Z CNTRLR [Node 001] [~] [Manufacturer Specific] productType: 4 => 4 -2024-09-06T10:06:43.849Z CNTRLR [Node 001] [~] [Manufacturer Specific] productId: 1552 => 1552 -2024-09-06T10:06:43.850Z CNTRLR [Node 001] [Version] firmwareVersions: metadata updated -2024-09-06T10:06:43.850Z CNTRLR [Node 001] [~] [Version] firmwareVersions: 1.30 => 1.30 -2024-09-06T10:06:43.850Z CNTRLR [Node 001] [Version] zWaveProtocolVersion: metadata updated -2024-09-06T10:06:43.850Z CNTRLR [Node 001] [~] [Version] zWaveProtocolVersion: "7.21.3" => "7.21.3" -2024-09-06T10:06:43.851Z CNTRLR [Node 001] [Version] sdkVersion: metadata updated -2024-09-06T10:06:43.851Z CNTRLR [Node 001] [~] [Version] sdkVersion: "7.21.3" => "7.21.3" -2024-09-06T10:06:43.851Z CNTRLR Interview completed -2024-09-06T10:06:43.851Z DRIVER Network key for S0 configured, enabling S0 security manager... -2024-09-06T10:06:43.852Z DRIVER At least one network key for S2 configured, enabling S2 security manager... -2024-09-06T10:06:43.853Z DRIVER At least one network key for Z-Wave Long Range configured, enabling security m - anager... -2024-09-06T10:06:43.854Z DRIVER driver ready -2024-09-06T10:06:44.856Z CNTRLR Updating the controller NIF... -2024-09-06T10:06:44.858Z DRIVER all queues busy -2024-09-06T10:06:44.861Z SERIAL » 0x010f0003010100085e989f556c568f7436 (17 bytes) -2024-09-06T10:06:44.862Z DRIVER » [REQ] [SetApplicationNodeInformation] - is listening: true - generic device class: 0x01 - specific device class: 0x00 - supported CCs: - · Z-Wave Plus Info - · Security - · Security 2 - · Transport Service - · Supervision - · CRC-16 Encapsulation - · Multi Command - · Inclusion Controller - controlled CCs: -2024-09-06T10:06:44.867Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:44.869Z CNTRLR performing hard reset... -2024-09-06T10:06:44.872Z SERIAL » 0x0104004201b8 (6 bytes) -2024-09-06T10:06:44.873Z DRIVER » [REQ] [HardReset] - callback id: 1 -2024-09-06T10:06:44.875Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:44.896Z SERIAL « 0x0104004201b8 (6 bytes) -2024-09-06T10:06:44.896Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:44.897Z DRIVER « [REQ] [HardReset] - callback id: 1 -2024-09-06T10:06:44.898Z CNTRLR hard reset succeeded -2024-09-06T10:06:44.898Z CNTRLR querying Serial API capabilities... -2024-09-06T10:06:44.899Z SERIAL » 0x01030007fb (5 bytes) -2024-09-06T10:06:44.899Z DRIVER » [REQ] [GetSerialApiCapabilities] -2024-09-06T10:06:44.902Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:44.906Z SERIAL « 0x012b0107011e027a00040610f6873e88cf2bc04ffbd7fde09700008000808680b (45 bytes) - a0500700000ee7fc000000035 -2024-09-06T10:06:44.907Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:44.908Z DRIVER « [RES] [GetSerialApiCapabilities] - payload: 0x011e027a00040610f6873e88cf2bc04ffbd7fde09700008000808680ba0500700 - 000ee7fc0000000 -2024-09-06T10:06:44.908Z CNTRLR received API capabilities: - firmware version: 1.30 - manufacturer ID: 0x027a - product type: 0x04 - product ID: 0x0610 - supported functions: - · GetSerialApiInitData (0x02) - · SetApplicationNodeInformation (0x03) - · GetControllerCapabilities (0x05) - · SetSerialApiTimeouts (0x06) - · GetSerialApiCapabilities (0x07) - · SoftReset (0x08) - · GetProtocolVersion (0x09) - · SerialAPIStarted (0x0a) - · SerialAPISetup (0x0b) - · SetRFReceiveMode (0x10) - · SendNodeInformation (0x12) - · SendData (0x13) - · SendDataMulticast (0x14) - · GetControllerVersion (0x15) - · SendDataAbort (0x16) - · FUNC_ID_ZW_GET_RANDOM (0x1c) - · GetControllerId (0x20) - · UNKNOWN_FUNC_MEMORY_GET_BYTE (0x21) - · UNKNOWN_FUNC_MEMORY_PUT_BYTE (0x22) - · UNKNOWN_FUNC_MEMORY_GET_BUFFER (0x23) - · UNKNOWN_FUNC_MEMORY_PUT_BUFFER (0x24) - · EnterBootloader (0x27) - · UNKNOWN_FUNC_UNKNOWN_0x28 (0x28) - · GetNVMId (0x29) - · ExtNVMReadLongBuffer (0x2a) - · ExtNVMReadLongByte (0x2c) - · NVMOperations (0x2e) - · ClearTxTimers (0x37) - · GetTxTimers (0x38) - · ClearNetworkStats (0x39) - · GetNetworkStats (0x3a) - · GetBackgroundRSSI (0x3b) - · SetListenBeforeTalkThreshold (0x3c) - · RemoveSpecificNodeIdFromNetwork (0x3f) - · GetNodeProtocolInfo (0x41) - · HardReset (0x42) - · FUNC_ID_ZW_REPLICATION_COMMAND_COMPLETE (0x44) - · FUNC_ID_ZW_REPLICATION_SEND_DATA (0x45) - · AssignReturnRoute (0x46) - · DeleteReturnRoute (0x47) - · RequestNodeNeighborUpdate (0x48) - · ApplicationUpdateRequest (0x49) - · AddNodeToNetwork (0x4a) - · RemoveNodeFromNetwork (0x4b) - · AddPrimaryController (0x4d) - · AssignPriorityReturnRoute (0x4f) - · SetLearnMode (0x50) - · AssignSUCReturnRoute (0x51) - · RequestNetworkUpdate (0x53) - · SetSUCNodeId (0x54) - · DeleteSUCReturnRoute (0x55) - · GetSUCNodeId (0x56) - · SendSUCNodeId (0x57) - · AssignPrioritySUCReturnRoute (0x58) - · ExploreRequestInclusion (0x5e) - · ExploreRequestExclusion (0x5f) - · RequestNodeInfo (0x60) - · RemoveFailedNode (0x61) - · IsFailedNode (0x62) - · ReplaceFailedNode (0x63) - · undefined (0x65) - · RequestProtocolCCEncryption (0x68) - · GetRoutingInfo (0x80) - · LockUnlockLastRoute (0x90) - · GetPriorityRoute (0x92) - · SetPriorityRoute (0x93) - · UNKNOWN_FUNC_UNKNOWN_0x98 (0x98) - · VirtualNodeSetNodeInfo (0xa0) - · VirtualNodeSendNodeInfo (0xa2) - · VirtualNodeSetLearnMode (0xa4) - · GetVirtualNodes (0xa5) - · IsVirtualNode (0xa6) - · BridgeApplicationCommand (0xa8) - · SendDataBridge (0xa9) - · SendDataMulticastBridge (0xab) - · GetLibrary (0xbd) - · SendTestFrame (0xbe) - · GetProtocolStatus (0xbf) - · StartWatchdog (0xd2) - · StopWatchdog (0xd3) - · SetMaximumRoutingAttempts (0xd4) - · SetMaxSmartStartInclusionRequestInterval (0xd6) - · undefined (0xd7) - · undefined (0xd8) - · Shutdown (0xd9) - · GetLongRangeNodes (0xda) - · GetLongRangeChannel (0xdb) - · SetLongRangeChannel (0xdc) - · SetLongRangeShadowNodeIDs (0xdd) - · Proprietary_DE (0xde) - · Proprietary_DF (0xdf) - · Proprietary_E7 (0xe7) - · Proprietary_E8 (0xe8) -2024-09-06T10:06:44.909Z CNTRLR querying additional controller information... -2024-09-06T10:06:44.909Z SERIAL » 0x01030002fe (5 bytes) -2024-09-06T10:06:44.910Z DRIVER » [REQ] [GetSerialApiInitData] -2024-09-06T10:06:44.912Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:44.917Z SERIAL « 0x012501020a001d010000000000000000000000000000000000000000000000000 (39 bytes) - 00000000800c7 -2024-09-06T10:06:44.918Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:44.918Z DRIVER « [RES] [GetSerialApiInitData] - payload: 0x0a001d01000000000000000000000000000000000000000000000000000000000 - 800 -2024-09-06T10:06:44.919Z CNTRLR received additional controller information: - Z-Wave API version: 1 (official) - Z-Wave chip type: EFR32ZG23 / ZGM230S - node type Controller - controller role: primary - controller is the SIS: false - controller supports timers: false - Z-Wave Classic nodes: 1 -2024-09-06T10:06:44.919Z CNTRLR querying version info... -2024-09-06T10:06:44.920Z SERIAL » 0x01030015e9 (5 bytes) -2024-09-06T10:06:44.921Z DRIVER » [REQ] [GetControllerVersion] -2024-09-06T10:06:44.923Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:44.925Z SERIAL « 0x011001155a2d5761766520372e3231000794 (18 bytes) -2024-09-06T10:06:44.925Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:44.926Z DRIVER « [RES] [GetControllerVersion] - payload: 0x5a2d5761766520372e32310007 -2024-09-06T10:06:44.926Z CNTRLR received version info: - controller type: Bridge Controller - library version: Z-Wave 7.21 -2024-09-06T10:06:44.927Z CNTRLR querying protocol version info... -2024-09-06T10:06:44.927Z SERIAL » 0x01030009f5 (5 bytes) -2024-09-06T10:06:44.928Z DRIVER » [REQ] [GetProtocolVersion] -2024-09-06T10:06:44.929Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:44.932Z SERIAL « 0x011901090007150300f4353162666237323665306662383733380f (27 bytes) -2024-09-06T10:06:44.933Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:44.933Z DRIVER « [RES] [GetProtocolVersion] - payload: 0x0007150300f435316266623732366530666238373338 -2024-09-06T10:06:44.934Z CNTRLR received protocol version info: - protocol type: Z-Wave - protocol version: 7.21.3 - appl. framework build no.: 244 - git commit hash: 35316266623732366530666238373338 -2024-09-06T10:06:44.934Z CNTRLR querying controller capabilities... -2024-09-06T10:06:44.935Z SERIAL » 0x01030005f9 (5 bytes) -2024-09-06T10:06:44.935Z DRIVER » [REQ] [GetControllerCapabilities] -2024-09-06T10:06:44.938Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:44.939Z SERIAL « 0x0104010528d7 (6 bytes) -2024-09-06T10:06:44.939Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:44.940Z DRIVER « [RES] [GetControllerCapabilities] - payload: 0x28 -2024-09-06T10:06:44.941Z CNTRLR received controller capabilities: - controller role: Primary - is the SUC: false - started this network: true - SIS is present: false - was real primary: true -2024-09-06T10:06:44.941Z CNTRLR querying serial API setup capabilities... -2024-09-06T10:06:44.941Z SERIAL » 0x0104000b01f1 (6 bytes) -2024-09-06T10:06:44.942Z DRIVER » [REQ] [SerialAPISetup] - command: GetSupportedCommands - payload: 0x01 -2024-09-06T10:06:44.947Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:44.948Z SERIAL « 0x0116010b01ff9f8007800000008000000000000000800085 (24 bytes) -2024-09-06T10:06:44.948Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:44.949Z DRIVER « [RES] [SerialAPISetup] - command: GetSupportedCommands - payload: 0xff9f80078000000080000000000000008000 -2024-09-06T10:06:44.949Z CNTRLR supported serial API setup commands: - · GetSupportedCommands - · SetTxStatusReport - · SetLongRangeMaximumTxPower - · SetPowerlevel - · GetLongRangeMaximumTxPower - · GetPowerlevel - · GetMaximumPayloadSize - · GetLongRangeMaximumPayloadSize - · SetPowerlevel16Bit - · GetPowerlevel16Bit - · GetRFRegion - · SetRFRegion - · SetNodeIDType -2024-09-06T10:06:44.949Z CNTRLR querying max. payload size... -2024-09-06T10:06:44.950Z SERIAL » 0x0104000b10e0 (6 bytes) -2024-09-06T10:06:44.951Z DRIVER » [REQ] [SerialAPISetup] - command: GetMaximumPayloadSize - payload: 0x10 -2024-09-06T10:06:44.954Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:44.955Z SERIAL « 0x0105010b102ece (7 bytes) -2024-09-06T10:06:44.955Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:44.956Z DRIVER « [RES] [SerialAPISetup] - command: GetMaximumPayloadSize - maximum payload size: 46 bytes -2024-09-06T10:06:44.957Z CNTRLR maximum payload size: 46 bytes -2024-09-06T10:06:44.957Z CNTRLR supported Z-Wave features: - · SmartStart -2024-09-06T10:06:44.957Z CNTRLR Querying configured RF region... -2024-09-06T10:06:44.958Z SERIAL » 0x0104000b20d0 (6 bytes) -2024-09-06T10:06:44.958Z DRIVER » [REQ] [SerialAPISetup] - command: GetRFRegion - payload: 0x20 -2024-09-06T10:06:44.960Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:44.962Z SERIAL « 0x0105010b2000d0 (7 bytes) -2024-09-06T10:06:44.962Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:44.963Z DRIVER « [RES] [SerialAPISetup] - command: GetRFRegion - region: Europe -2024-09-06T10:06:44.963Z CNTRLR The controller is using RF region Europe -2024-09-06T10:06:44.963Z CNTRLR Querying configured max. Long Range powerlevel... -2024-09-06T10:06:44.964Z SERIAL » 0x0104000b05f5 (6 bytes) -2024-09-06T10:06:44.964Z DRIVER » [REQ] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - payload: 0x05 -2024-09-06T10:06:44.966Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:44.968Z SERIAL « 0x0106010b05008c7a (8 bytes) -2024-09-06T10:06:44.968Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:44.969Z DRIVER « [RES] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - max. TX power (LR): 14.0 dBm -2024-09-06T10:06:44.969Z CNTRLR The max. LR powerlevel is 14.0 dBm -2024-09-06T10:06:44.970Z CNTRLR Querying configured Long Range channel information... -2024-09-06T10:06:44.970Z SERIAL » 0x010300db27 (5 bytes) -2024-09-06T10:06:44.971Z DRIVER » [REQ] [GetLongRangeChannel] -2024-09-06T10:06:44.973Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:44.974Z SERIAL « 0x010501db001030 (7 bytes) -2024-09-06T10:06:44.974Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:44.975Z DRIVER « [RES] [GetLongRangeChannel] - payload: 0x0010 -2024-09-06T10:06:44.975Z CNTRLR received Z-Wave Long Range channel information: - channel: Unsupported - supports auto channel selection: true -2024-09-06T10:06:44.976Z CNTRLR Performing soft reset... -2024-09-06T10:06:44.976Z SERIAL » 0x01030008f4 (5 bytes) -2024-09-06T10:06:44.977Z DRIVER » [REQ] [SoftReset] -2024-09-06T10:06:44.978Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:44.979Z CNTRLR Waiting for the controller to reconnect... -2024-09-06T10:06:44.979Z DRIVER all queues idle -2024-09-06T10:06:45.206Z SERIAL « 0x0112000a0700010100085e989f556c568f740025 (20 bytes) -2024-09-06T10:06:45.207Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:45.209Z DRIVER « [REQ] [SerialAPIStarted] - wake up reason: SoftwareReset - watchdog enabled: false - generic device class: 0x01 - specific device class: 0x00 - always listening: false - supports Long Range: false -2024-09-06T10:06:45.210Z CNTRLR reconnected and restarted -2024-09-06T10:06:45.210Z CNTRLR Starting hardware watchdog... -2024-09-06T10:06:45.211Z CNTRLR Switching serial API to 16-bit node IDs... -2024-09-06T10:06:45.212Z CNTRLR Switching serial API to 8-bit node IDs... -2024-09-06T10:06:45.213Z DRIVER all queues busy -2024-09-06T10:06:45.216Z SERIAL » 0x010300d22e (5 bytes) -2024-09-06T10:06:45.217Z DRIVER » [REQ] [StartWatchdog] -2024-09-06T10:06:45.221Z SERIAL » 0x0105000b800273 (7 bytes) -2024-09-06T10:06:45.222Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 16 bit -2024-09-06T10:06:45.224Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:45.225Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:45.226Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T10:06:45.227Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:45.228Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T10:06:45.228Z CNTRLR Switching to 16-bit node IDs successful -2024-09-06T10:06:45.229Z SERIAL » 0x0105000b800170 (7 bytes) -2024-09-06T10:06:45.230Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 8 bit -2024-09-06T10:06:45.233Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:45.234Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T10:06:45.235Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:45.236Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T10:06:45.237Z CNTRLR Switching to 8-bit node IDs successful -2024-09-06T10:06:45.237Z CNTRLR querying controller IDs... -2024-09-06T10:06:45.238Z SERIAL » 0x01030020dc (5 bytes) -2024-09-06T10:06:45.239Z DRIVER » [REQ] [GetControllerId] -2024-09-06T10:06:45.242Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:45.243Z SERIAL « 0x01080120de273aaf01bb (10 bytes) -2024-09-06T10:06:45.244Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:45.245Z DRIVER « [RES] [GetControllerId] - home ID: 0xde273aaf - own node ID: 1 -2024-09-06T10:06:45.246Z CNTRLR received controller IDs: - home ID: 0xde273aaf - own node ID: 1 -2024-09-06T10:06:45.246Z CNTRLR Enabling TX status report... -2024-09-06T10:06:45.247Z SERIAL » 0x0105000b02ff0c (7 bytes) -2024-09-06T10:06:45.248Z DRIVER » [REQ] [SerialAPISetup] - command: SetTxStatusReport - enabled: true -2024-09-06T10:06:45.251Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:45.251Z SERIAL « 0x0105010b0201f3 (7 bytes) -2024-09-06T10:06:45.252Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:45.253Z DRIVER « [RES] [SerialAPISetup] - command: SetTxStatusReport - success: true -2024-09-06T10:06:45.253Z CNTRLR Enabling TX status report successful... -2024-09-06T10:06:45.254Z CNTRLR finding SUC... -2024-09-06T10:06:45.254Z SERIAL » 0x01030056aa (5 bytes) -2024-09-06T10:06:45.255Z DRIVER » [REQ] [GetSUCNodeId] -2024-09-06T10:06:45.258Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:45.259Z SERIAL « 0x0104015600ac (6 bytes) -2024-09-06T10:06:45.259Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:45.260Z DRIVER « [RES] [GetSUCNodeId] - payload: 0x00 -2024-09-06T10:06:45.261Z CNTRLR No SUC present in the network -2024-09-06T10:06:45.261Z CNTRLR There is no SUC/SIS in the network - promoting ourselves... -2024-09-06T10:06:45.263Z SERIAL » 0x01080054010125010285 (10 bytes) -2024-09-06T10:06:45.263Z DRIVER » [REQ] [SetSUCNodeId] - payload: 0x0101250102 -2024-09-06T10:06:45.268Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:45.269Z SERIAL « 0x0104015401af (6 bytes) -2024-09-06T10:06:45.270Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:45.271Z DRIVER « [RES] [SetSUCNodeId] - was executed: true -2024-09-06T10:06:45.272Z CNTRLR Promotion to SUC/SIS succeeded. -2024-09-06T10:06:45.272Z DRIVER all queues idle -2024-09-06T10:06:45.278Z CNTRLR [Node 001] [Manufacturer Specific] manufacturerId: metadata updated -2024-09-06T10:06:45.278Z CNTRLR [Node 001] [Manufacturer Specific] productType: metadata updated -2024-09-06T10:06:45.279Z CNTRLR [Node 001] [Manufacturer Specific] productId: metadata updated -2024-09-06T10:06:45.279Z CNTRLR [Node 001] [+] [Manufacturer Specific] manufacturerId: 634 -2024-09-06T10:06:45.279Z CNTRLR [Node 001] [+] [Manufacturer Specific] productType: 4 -2024-09-06T10:06:45.279Z CNTRLR [Node 001] [+] [Manufacturer Specific] productId: 1552 -2024-09-06T10:06:45.280Z CNTRLR [Node 001] [Version] firmwareVersions: metadata updated -2024-09-06T10:06:45.280Z CNTRLR [Node 001] [+] [Version] firmwareVersions: 1.30 -2024-09-06T10:06:45.280Z CNTRLR [Node 001] [Version] zWaveProtocolVersion: metadata updated -2024-09-06T10:06:45.281Z CNTRLR [Node 001] [+] [Version] zWaveProtocolVersion: "7.21.3" -2024-09-06T10:06:45.281Z CNTRLR [Node 001] [Version] sdkVersion: metadata updated -2024-09-06T10:06:45.281Z CNTRLR [Node 001] [+] [Version] sdkVersion: "7.21.3" -2024-09-06T10:06:45.281Z CNTRLR Interview completed -2024-09-06T10:06:45.282Z DRIVER Network key for S0 configured, enabling S0 security manager... -2024-09-06T10:06:45.282Z DRIVER At least one network key for S2 configured, enabling S2 security manager... -2024-09-06T10:06:45.283Z DRIVER At least one network key for Z-Wave Long Range configured, enabling security m - anager... -2024-09-06T10:06:45.284Z DRIVER driver ready -2024-09-06T10:06:49.900Z CNTRLR Starting inclusion process with strategy Default... -2024-09-06T10:06:49.902Z DRIVER all queues busy -2024-09-06T10:06:49.904Z SERIAL » 0x0105004ac10372 (7 bytes) -2024-09-06T10:06:49.905Z DRIVER » [REQ] [AddNodeToNetwork] - node type: Any - high power: true - network wide: true - callback id: 3 -2024-09-06T10:06:49.908Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:49.914Z SERIAL « 0x0107004a03010000b0 (9 bytes) -2024-09-06T10:06:49.916Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:49.917Z DRIVER « [REQ] [AddNodeToNetwork] - status: Ready - callback id: 3 -2024-09-06T10:06:49.918Z CNTRLR The controller is now ready to add nodes -2024-09-06T10:06:49.919Z DRIVER all queues idle -2024-09-06T10:06:53.955Z SERIAL « 0x0107004a03020000b3 (9 bytes) -2024-09-06T10:06:53.956Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:53.958Z DRIVER « [REQ] [AddNodeToNetwork] - status: NodeFound - callback id: 3 -2024-09-06T10:06:53.959Z DRIVER handling request AddNodeToNetwork (74) -2024-09-06T10:06:53.959Z DRIVER 1 handler registered! -2024-09-06T10:06:53.960Z DRIVER invoking handler #0 -2024-09-06T10:06:53.961Z CNTRLR handling add node request (status = NodeFound) -2024-09-06T10:06:54.063Z SERIAL « 0x0112004a0304020b0201005e989f556c568f7467 (20 bytes) -2024-09-06T10:06:54.065Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:54.066Z DRIVER « [REQ] [AddNodeToNetwork] - status: AddingController - callback id: 3 -2024-09-06T10:06:54.067Z DRIVER handling request AddNodeToNetwork (74) -2024-09-06T10:06:54.067Z DRIVER 1 handler registered! -2024-09-06T10:06:54.068Z DRIVER invoking handler #0 -2024-09-06T10:06:54.068Z CNTRLR handling add node request (status = AddingController) -2024-09-06T10:06:54.071Z DRIVER the message was handled -2024-09-06T10:06:54.478Z SERIAL « 0x0107004a03050200b6 (9 bytes) -2024-09-06T10:06:54.480Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:54.482Z DRIVER « [REQ] [AddNodeToNetwork] - status: ProtocolDone - callback id: 3 -2024-09-06T10:06:54.482Z DRIVER handling request AddNodeToNetwork (74) -2024-09-06T10:06:54.483Z DRIVER 1 handler registered! -2024-09-06T10:06:54.483Z DRIVER invoking handler #0 -2024-09-06T10:06:54.484Z CNTRLR handling add node request (status = ProtocolDone) -2024-09-06T10:06:54.485Z CNTRLR finishing inclusion process... -2024-09-06T10:06:54.486Z DRIVER all queues busy -2024-09-06T10:06:54.489Z SERIAL » 0x0105004ac50471 (7 bytes) -2024-09-06T10:06:54.491Z DRIVER » [REQ] [AddNodeToNetwork] - action: Stop - high power: true - network wide: true - callback id: 4 -2024-09-06T10:06:54.493Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:54.531Z SERIAL « 0x0107004a04060200b2 (9 bytes) -2024-09-06T10:06:54.531Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:54.532Z DRIVER « [REQ] [AddNodeToNetwork] - status: Done - callback id: 4 -2024-09-06T10:06:54.533Z SERIAL » 0x0105004ac50075 (7 bytes) -2024-09-06T10:06:54.533Z DRIVER » [REQ] [AddNodeToNetwork] - action: Stop - high power: true - network wide: true - callback id: 0 -2024-09-06T10:06:54.539Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:54.540Z CNTRLR The inclusion process was stopped -2024-09-06T10:06:54.540Z CNTRLR finished adding node 2: - basic device class: Static Controller - generic device class: Remote Controller - specific device class: Unused - supported CCs: - · Z-Wave Plus Info (0x5e) - · Security (0x98) - · Security 2 (0x9f) - · Transport Service (0x55) - · Supervision (0x6c) - · CRC-16 Encapsulation (0x56) - · Multi Command (0x8f) - · Inclusion Controller (0x74) - controlled CCs: -2024-09-06T10:06:54.540Z CNTRLR » [Node 002] Assigning SUC return route... -2024-09-06T10:06:54.541Z CNTRLR » [Node 002] Deleting SUC return route... -2024-09-06T10:06:54.541Z SERIAL » 0x010500550205a8 (7 bytes) -2024-09-06T10:06:54.542Z DRIVER » [Node 002] [REQ] [DeleteSUCReturnRoute] - payload: 0x0205 -2024-09-06T10:06:54.546Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:54.550Z SERIAL « 0x0104015501ae (6 bytes) -2024-09-06T10:06:54.551Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:54.552Z DRIVER « [RES] [DeleteSUCReturnRoute] - was executed: true -2024-09-06T10:06:54.615Z SERIAL « 0x01210055050000000000000000000000000000000000000000000000000000000 (35 bytes) - 0008e -2024-09-06T10:06:54.617Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:54.618Z DRIVER « [REQ] [DeleteSUCReturnRoute] - callback id: 5 - transmit status: OK -2024-09-06T10:06:54.621Z SERIAL » 0x010500510206af (7 bytes) -2024-09-06T10:06:54.621Z DRIVER » [Node 002] [REQ] [AssignSUCReturnRoute] - payload: 0x0206 -2024-09-06T10:06:54.624Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:54.631Z SERIAL « 0x0104015101aa (6 bytes) -2024-09-06T10:06:54.631Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:54.632Z DRIVER « [RES] [AssignSUCReturnRoute] - was executed: true -2024-09-06T10:06:54.703Z SERIAL « 0x01210051060000000000000000000000000000000000000000000000000000000 (35 bytes) - 00089 -2024-09-06T10:06:54.705Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:54.706Z DRIVER « [REQ] [AssignSUCReturnRoute] - callback id: 6 - transmit status: OK -2024-09-06T10:06:54.714Z SERIAL » 0x010e00a90102029f04250000000007e0 (16 bytes) -2024-09-06T10:06:54.715Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x25 - │ callback id: 7 - └─[Security2CCKEXGet] -2024-09-06T10:06:54.719Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:54.726Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T10:06:54.726Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:54.727Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T10:57:31.571Z DRIVER ███████╗ ██╗ ██╗ █████╗ ██╗ ██╗ ███████╗ ██╗ ███████╗ - ╚══███╔╝ ██║ ██║ ██╔══██╗ ██║ ██║ ██╔════╝ ██║ ██╔════╝ - ███╔╝ █████╗ ██║ █╗ ██║ ███████║ ██║ ██║ █████╗ ██║ ███████╗ - ███╔╝ ╚════╝ ██║███╗██║ ██╔══██║ ╚██╗ ██╔╝ ██╔══╝ ██ ██║ ╚════██║ - ███████╗ ╚███╔███╔╝ ██║ ██║ ╚████╔╝ ███████╗ ╚█████╔╝ ███████║ - ╚══════╝ ╚══╝╚══╝ ╚═╝ ╚═╝ ╚═══╝ ╚══════╝ ╚════╝ ╚══════╝ -2024-09-06T10:57:31.573Z DRIVER version 13.2.0 -2024-09-06T10:57:31.573Z DRIVER -2024-09-06T10:57:31.574Z DRIVER starting driver... -2024-09-06T10:57:31.574Z DRIVER opening serial port /dev/serial/by-id/usb-Zooz_800_Z-Wave_Stick_533D004242-if0 - 0 -2024-09-06T10:57:31.583Z DRIVER serial port opened -2024-09-06T10:57:31.584Z SERIAL » 0x15 (1 bytes) -2024-09-06T10:57:32.589Z DRIVER loading configuration... -2024-09-06T10:57:32.595Z CONFIG version 13.2.0 -2024-09-06T10:57:32.915Z DRIVER beginning interview... -2024-09-06T10:57:32.916Z DRIVER added request handler for AddNodeToNetwork (0x4a)... - 1 registered -2024-09-06T10:57:32.916Z DRIVER added request handler for RemoveNodeFromNetwork (0x4b)... - 1 registered -2024-09-06T10:57:32.917Z DRIVER added request handler for ReplaceFailedNode (0x63)... - 1 registered -2024-09-06T10:57:32.917Z DRIVER added request handler for SetLearnMode (0x50)... - 1 registered -2024-09-06T10:57:32.917Z CNTRLR querying Serial API capabilities... -2024-09-06T10:57:32.926Z SERIAL » 0x01030007fb (5 bytes) -2024-09-06T10:57:32.926Z DRIVER » [REQ] [GetSerialApiCapabilities] -2024-09-06T10:57:32.932Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:32.934Z SERIAL « 0x012b0107011e027a00040610f6873e88cf2bc04ffbd7fde09700008000808680b (45 bytes) - a0500700000ee7fc000000035 -2024-09-06T10:57:32.935Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:32.936Z DRIVER « [RES] [GetSerialApiCapabilities] - payload: 0x011e027a00040610f6873e88cf2bc04ffbd7fde09700008000808680ba0500700 - 000ee7fc0000000 -2024-09-06T10:57:32.938Z CNTRLR received API capabilities: - firmware version: 1.30 - manufacturer ID: 0x027a - product type: 0x04 - product ID: 0x0610 - supported functions: - · GetSerialApiInitData (0x02) - · SetApplicationNodeInformation (0x03) - · GetControllerCapabilities (0x05) - · SetSerialApiTimeouts (0x06) - · GetSerialApiCapabilities (0x07) - · SoftReset (0x08) - · GetProtocolVersion (0x09) - · SerialAPIStarted (0x0a) - · SerialAPISetup (0x0b) - · SetRFReceiveMode (0x10) - · SendNodeInformation (0x12) - · SendData (0x13) - · SendDataMulticast (0x14) - · GetControllerVersion (0x15) - · SendDataAbort (0x16) - · FUNC_ID_ZW_GET_RANDOM (0x1c) - · GetControllerId (0x20) - · UNKNOWN_FUNC_MEMORY_GET_BYTE (0x21) - · UNKNOWN_FUNC_MEMORY_PUT_BYTE (0x22) - · UNKNOWN_FUNC_MEMORY_GET_BUFFER (0x23) - · UNKNOWN_FUNC_MEMORY_PUT_BUFFER (0x24) - · EnterBootloader (0x27) - · UNKNOWN_FUNC_UNKNOWN_0x28 (0x28) - · GetNVMId (0x29) - · ExtNVMReadLongBuffer (0x2a) - · ExtNVMReadLongByte (0x2c) - · NVMOperations (0x2e) - · ClearTxTimers (0x37) - · GetTxTimers (0x38) - · ClearNetworkStats (0x39) - · GetNetworkStats (0x3a) - · GetBackgroundRSSI (0x3b) - · SetListenBeforeTalkThreshold (0x3c) - · RemoveSpecificNodeIdFromNetwork (0x3f) - · GetNodeProtocolInfo (0x41) - · HardReset (0x42) - · FUNC_ID_ZW_REPLICATION_COMMAND_COMPLETE (0x44) - · FUNC_ID_ZW_REPLICATION_SEND_DATA (0x45) - · AssignReturnRoute (0x46) - · DeleteReturnRoute (0x47) - · RequestNodeNeighborUpdate (0x48) - · ApplicationUpdateRequest (0x49) - · AddNodeToNetwork (0x4a) - · RemoveNodeFromNetwork (0x4b) - · AddPrimaryController (0x4d) - · AssignPriorityReturnRoute (0x4f) - · SetLearnMode (0x50) - · AssignSUCReturnRoute (0x51) - · RequestNetworkUpdate (0x53) - · SetSUCNodeId (0x54) - · DeleteSUCReturnRoute (0x55) - · GetSUCNodeId (0x56) - · SendSUCNodeId (0x57) - · AssignPrioritySUCReturnRoute (0x58) - · ExploreRequestInclusion (0x5e) - · ExploreRequestExclusion (0x5f) - · RequestNodeInfo (0x60) - · RemoveFailedNode (0x61) - · IsFailedNode (0x62) - · ReplaceFailedNode (0x63) - · undefined (0x65) - · RequestProtocolCCEncryption (0x68) - · GetRoutingInfo (0x80) - · LockUnlockLastRoute (0x90) - · GetPriorityRoute (0x92) - · SetPriorityRoute (0x93) - · UNKNOWN_FUNC_UNKNOWN_0x98 (0x98) - · VirtualNodeSetNodeInfo (0xa0) - · VirtualNodeSendNodeInfo (0xa2) - · VirtualNodeSetLearnMode (0xa4) - · GetVirtualNodes (0xa5) - · IsVirtualNode (0xa6) - · BridgeApplicationCommand (0xa8) - · SendDataBridge (0xa9) - · SendDataMulticastBridge (0xab) - · GetLibrary (0xbd) - · SendTestFrame (0xbe) - · GetProtocolStatus (0xbf) - · StartWatchdog (0xd2) - · StopWatchdog (0xd3) - · SetMaximumRoutingAttempts (0xd4) - · SetMaxSmartStartInclusionRequestInterval (0xd6) - · undefined (0xd7) - · undefined (0xd8) - · Shutdown (0xd9) - · GetLongRangeNodes (0xda) - · GetLongRangeChannel (0xdb) - · SetLongRangeChannel (0xdc) - · SetLongRangeShadowNodeIDs (0xdd) - · Proprietary_DE (0xde) - · Proprietary_DF (0xdf) - · Proprietary_E7 (0xe7) - · Proprietary_E8 (0xe8) -2024-09-06T10:57:32.939Z CNTRLR querying additional controller information... -2024-09-06T10:57:32.940Z SERIAL » 0x01030002fe (5 bytes) -2024-09-06T10:57:32.940Z DRIVER » [REQ] [GetSerialApiInitData] -2024-09-06T10:57:32.948Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:32.948Z SERIAL « 0x012501020a081d030000000000000000000000000000000000000000000000000 (39 bytes) - 00000000800cd -2024-09-06T10:57:32.949Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:32.950Z DRIVER « [RES] [GetSerialApiInitData] - payload: 0x0a081d03000000000000000000000000000000000000000000000000000000000 - 800 -2024-09-06T10:57:32.950Z CNTRLR received additional controller information: - Z-Wave API version: 1 (official) - Z-Wave chip type: EFR32ZG23 / ZGM230S - node type Controller - controller role: primary - controller is the SIS: true - controller supports timers: false - Z-Wave Classic nodes: 1, 2 -2024-09-06T10:57:32.951Z CNTRLR querying version info... -2024-09-06T10:57:32.952Z SERIAL » 0x01030015e9 (5 bytes) -2024-09-06T10:57:32.952Z DRIVER » [REQ] [GetControllerVersion] -2024-09-06T10:57:32.957Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:32.958Z SERIAL « 0x011001155a2d5761766520372e3231000794 (18 bytes) -2024-09-06T10:57:32.959Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:32.959Z DRIVER « [RES] [GetControllerVersion] - payload: 0x5a2d5761766520372e32310007 -2024-09-06T10:57:32.960Z CNTRLR received version info: - controller type: Bridge Controller - library version: Z-Wave 7.21 -2024-09-06T10:57:32.960Z CNTRLR querying protocol version info... -2024-09-06T10:57:32.961Z SERIAL » 0x01030009f5 (5 bytes) -2024-09-06T10:57:32.961Z DRIVER » [REQ] [GetProtocolVersion] -2024-09-06T10:57:32.966Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:32.967Z SERIAL « 0x011901090007150300f4353162666237323665306662383733380f (27 bytes) -2024-09-06T10:57:32.967Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:32.968Z DRIVER « [RES] [GetProtocolVersion] - payload: 0x0007150300f435316266623732366530666238373338 -2024-09-06T10:57:32.968Z CNTRLR received protocol version info: - protocol type: Z-Wave - protocol version: 7.21.3 - appl. framework build no.: 244 - git commit hash: 35316266623732366530666238373338 -2024-09-06T10:57:32.969Z CNTRLR querying controller capabilities... -2024-09-06T10:57:32.970Z SERIAL » 0x01030005f9 (5 bytes) -2024-09-06T10:57:32.970Z DRIVER » [REQ] [GetControllerCapabilities] -2024-09-06T10:57:32.975Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:32.976Z SERIAL « 0x010401051ce3 (6 bytes) -2024-09-06T10:57:32.977Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:32.977Z DRIVER « [RES] [GetControllerCapabilities] - payload: 0x1c -2024-09-06T10:57:32.978Z CNTRLR received controller capabilities: - controller role: Primary - is the SUC: true - started this network: true - SIS is present: true - was real primary: true -2024-09-06T10:57:32.978Z CNTRLR querying serial API setup capabilities... -2024-09-06T10:57:32.979Z SERIAL » 0x0104000b01f1 (6 bytes) -2024-09-06T10:57:32.979Z DRIVER » [REQ] [SerialAPISetup] - command: GetSupportedCommands - payload: 0x01 -2024-09-06T10:57:32.984Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:32.984Z SERIAL « 0x0116010b01ff9f8007800000008000000000000000800085 (24 bytes) -2024-09-06T10:57:32.985Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:32.986Z DRIVER « [RES] [SerialAPISetup] - command: GetSupportedCommands - payload: 0xff9f80078000000080000000000000008000 -2024-09-06T10:57:32.987Z CNTRLR supported serial API setup commands: - · GetSupportedCommands - · SetTxStatusReport - · SetLongRangeMaximumTxPower - · SetPowerlevel - · GetLongRangeMaximumTxPower - · GetPowerlevel - · GetMaximumPayloadSize - · GetLongRangeMaximumPayloadSize - · SetPowerlevel16Bit - · GetPowerlevel16Bit - · GetRFRegion - · SetRFRegion - · SetNodeIDType -2024-09-06T10:57:32.987Z CNTRLR querying max. payload size... -2024-09-06T10:57:32.988Z SERIAL » 0x0104000b10e0 (6 bytes) -2024-09-06T10:57:32.988Z DRIVER » [REQ] [SerialAPISetup] - command: GetMaximumPayloadSize - payload: 0x10 -2024-09-06T10:57:32.992Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:32.993Z SERIAL « 0x0105010b102ece (7 bytes) -2024-09-06T10:57:32.993Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:32.994Z DRIVER « [RES] [SerialAPISetup] - command: GetMaximumPayloadSize - maximum payload size: 46 bytes -2024-09-06T10:57:32.994Z CNTRLR maximum payload size: 46 bytes -2024-09-06T10:57:32.995Z CNTRLR supported Z-Wave features: - · SmartStart -2024-09-06T10:57:32.995Z CNTRLR Querying configured RF region... -2024-09-06T10:57:32.996Z SERIAL » 0x0104000b20d0 (6 bytes) -2024-09-06T10:57:32.996Z DRIVER » [REQ] [SerialAPISetup] - command: GetRFRegion - payload: 0x20 -2024-09-06T10:57:33.001Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:33.001Z SERIAL « 0x0105010b2000d0 (7 bytes) -2024-09-06T10:57:33.002Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:33.002Z DRIVER « [RES] [SerialAPISetup] - command: GetRFRegion - region: Europe -2024-09-06T10:57:33.003Z CNTRLR The controller is using RF region Europe -2024-09-06T10:57:33.003Z CNTRLR Querying configured max. Long Range powerlevel... -2024-09-06T10:57:33.004Z SERIAL » 0x0104000b05f5 (6 bytes) -2024-09-06T10:57:33.005Z DRIVER » [REQ] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - payload: 0x05 -2024-09-06T10:57:33.009Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:33.009Z SERIAL « 0x0106010b05008c7a (8 bytes) -2024-09-06T10:57:33.010Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:33.010Z DRIVER « [RES] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - max. TX power (LR): 14.0 dBm -2024-09-06T10:57:33.011Z CNTRLR The max. LR powerlevel is 14.0 dBm -2024-09-06T10:57:33.011Z CNTRLR Querying configured Long Range channel information... -2024-09-06T10:57:33.012Z SERIAL » 0x010300db27 (5 bytes) -2024-09-06T10:57:33.012Z DRIVER » [REQ] [GetLongRangeChannel] -2024-09-06T10:57:33.016Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:33.016Z SERIAL « 0x010501db001030 (7 bytes) -2024-09-06T10:57:33.017Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:33.017Z DRIVER « [RES] [GetLongRangeChannel] - payload: 0x0010 -2024-09-06T10:57:33.018Z CNTRLR received Z-Wave Long Range channel information: - channel: Unsupported - supports auto channel selection: true -2024-09-06T10:57:33.019Z CNTRLR Performing soft reset... -2024-09-06T10:57:33.020Z SERIAL » 0x01030008f4 (5 bytes) -2024-09-06T10:57:33.020Z DRIVER » [REQ] [SoftReset] -2024-09-06T10:57:33.024Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:33.025Z CNTRLR Waiting for the controller to reconnect... -2024-09-06T10:57:33.026Z DRIVER all queues idle -2024-09-06T10:57:33.248Z SERIAL « 0x0112000a0700010100085e989f556c568f740025 (20 bytes) -2024-09-06T10:57:33.249Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:33.249Z DRIVER « [REQ] [SerialAPIStarted] - wake up reason: SoftwareReset - watchdog enabled: false - generic device class: 0x01 - specific device class: 0x00 - always listening: false - supports Long Range: false -2024-09-06T10:57:33.250Z CNTRLR reconnected and restarted -2024-09-06T10:57:33.250Z CNTRLR Starting hardware watchdog... -2024-09-06T10:57:33.250Z CNTRLR Switching serial API to 16-bit node IDs... -2024-09-06T10:57:33.251Z CNTRLR Switching serial API to 8-bit node IDs... -2024-09-06T10:57:33.251Z DRIVER all queues busy -2024-09-06T10:57:33.251Z SERIAL » 0x010300d22e (5 bytes) -2024-09-06T10:57:33.252Z DRIVER » [REQ] [StartWatchdog] -2024-09-06T10:57:33.253Z SERIAL » 0x0105000b800273 (7 bytes) -2024-09-06T10:57:33.253Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 16 bit -2024-09-06T10:57:33.254Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:33.255Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:33.257Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T10:57:33.257Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:33.258Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T10:57:33.258Z CNTRLR Switching to 16-bit node IDs successful -2024-09-06T10:57:33.259Z SERIAL » 0x0105000b800170 (7 bytes) -2024-09-06T10:57:33.259Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 8 bit -2024-09-06T10:57:33.261Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:33.263Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T10:57:33.263Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:33.264Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T10:57:33.265Z CNTRLR Switching to 8-bit node IDs successful -2024-09-06T10:57:33.266Z CNTRLR querying controller IDs... -2024-09-06T10:57:33.267Z SERIAL » 0x01030020dc (5 bytes) -2024-09-06T10:57:33.267Z DRIVER » [REQ] [GetControllerId] -2024-09-06T10:57:33.271Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:33.271Z SERIAL « 0x01080120de273aaf01bb (10 bytes) -2024-09-06T10:57:33.272Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:33.272Z DRIVER « [RES] [GetControllerId] - home ID: 0xde273aaf - own node ID: 1 -2024-09-06T10:57:33.273Z CNTRLR received controller IDs: - home ID: 0xde273aaf - own node ID: 1 -2024-09-06T10:57:33.273Z CNTRLR Enabling TX status report... -2024-09-06T10:57:33.274Z SERIAL » 0x0105000b02ff0c (7 bytes) -2024-09-06T10:57:33.274Z DRIVER » [REQ] [SerialAPISetup] - command: SetTxStatusReport - enabled: true -2024-09-06T10:57:33.277Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:33.278Z SERIAL « 0x0105010b0201f3 (7 bytes) -2024-09-06T10:57:33.278Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:33.279Z DRIVER « [RES] [SerialAPISetup] - command: SetTxStatusReport - success: true -2024-09-06T10:57:33.279Z CNTRLR Enabling TX status report successful... -2024-09-06T10:57:33.279Z CNTRLR finding SUC... -2024-09-06T10:57:33.280Z SERIAL » 0x01030056aa (5 bytes) -2024-09-06T10:57:33.280Z DRIVER » [REQ] [GetSUCNodeId] -2024-09-06T10:57:33.287Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:33.288Z SERIAL « 0x0104015601ad (6 bytes) -2024-09-06T10:57:33.288Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:33.289Z DRIVER « [RES] [GetSUCNodeId] - payload: 0x01 -2024-09-06T10:57:33.290Z CNTRLR This is the SUC -2024-09-06T10:57:33.290Z DRIVER all queues idle -2024-09-06T10:57:33.298Z DRIVER Cache file for homeId 0xde273aaf found, attempting to restore the network from - cache... -2024-09-06T10:57:33.307Z CNTRLR [Node 001] Embedded device config loaded -2024-09-06T10:57:33.307Z DRIVER Restoring the network from cache was successful! -2024-09-06T10:57:33.308Z CNTRLR [Node 001] [Manufacturer Specific] manufacturerId: metadata updated -2024-09-06T10:57:33.308Z CNTRLR [Node 001] [Manufacturer Specific] productType: metadata updated -2024-09-06T10:57:33.308Z CNTRLR [Node 001] [Manufacturer Specific] productId: metadata updated -2024-09-06T10:57:33.308Z CNTRLR [Node 001] [~] [Manufacturer Specific] manufacturerId: 634 => 634 -2024-09-06T10:57:33.309Z CNTRLR [Node 001] [~] [Manufacturer Specific] productType: 4 => 4 -2024-09-06T10:57:33.309Z CNTRLR [Node 001] [~] [Manufacturer Specific] productId: 1552 => 1552 -2024-09-06T10:57:33.310Z CNTRLR [Node 001] [Version] firmwareVersions: metadata updated -2024-09-06T10:57:33.310Z CNTRLR [Node 001] [~] [Version] firmwareVersions: 1.30 => 1.30 -2024-09-06T10:57:33.310Z CNTRLR [Node 001] [Version] zWaveProtocolVersion: metadata updated -2024-09-06T10:57:33.310Z CNTRLR [Node 001] [~] [Version] zWaveProtocolVersion: "7.21.3" => "7.21.3" -2024-09-06T10:57:33.310Z CNTRLR [Node 001] [Version] sdkVersion: metadata updated -2024-09-06T10:57:33.311Z CNTRLR [Node 001] [~] [Version] sdkVersion: "7.21.3" => "7.21.3" -2024-09-06T10:57:33.311Z CNTRLR Interview completed -2024-09-06T10:57:33.311Z DRIVER Network key for S0 configured, enabling S0 security manager... -2024-09-06T10:57:33.312Z DRIVER At least one network key for S2 configured, enabling S2 security manager... -2024-09-06T10:57:33.313Z DRIVER At least one network key for Z-Wave Long Range configured, enabling security m - anager... -2024-09-06T10:57:33.314Z DRIVER driver ready -2024-09-06T10:57:34.316Z CNTRLR Updating the controller NIF... -2024-09-06T10:57:34.318Z DRIVER all queues busy -2024-09-06T10:57:34.321Z SERIAL » 0x010f0003010100085e989f556c568f7436 (17 bytes) -2024-09-06T10:57:34.323Z DRIVER » [REQ] [SetApplicationNodeInformation] - is listening: true - generic device class: 0x01 - specific device class: 0x00 - supported CCs: - · Z-Wave Plus Info - · Security - · Security 2 - · Transport Service - · Supervision - · CRC-16 Encapsulation - · Multi Command - · Inclusion Controller - controlled CCs: -2024-09-06T10:57:34.328Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:34.330Z CNTRLR performing hard reset... -2024-09-06T10:57:34.332Z SERIAL » 0x0104004201b8 (6 bytes) -2024-09-06T10:57:34.333Z DRIVER » [REQ] [HardReset] - callback id: 1 -2024-09-06T10:57:34.336Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:34.357Z SERIAL « 0x0104004201b8 (6 bytes) -2024-09-06T10:57:34.358Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:34.359Z DRIVER « [REQ] [HardReset] - callback id: 1 -2024-09-06T10:57:34.359Z CNTRLR hard reset succeeded -2024-09-06T10:57:34.360Z CNTRLR querying Serial API capabilities... -2024-09-06T10:57:34.361Z SERIAL » 0x01030007fb (5 bytes) -2024-09-06T10:57:34.361Z DRIVER » [REQ] [GetSerialApiCapabilities] -2024-09-06T10:57:34.363Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:34.368Z SERIAL « 0x012b0107011e027a00040610f6873e88cf2bc04ffbd7fde09700008000808680b (45 bytes) - a0500700000ee7fc000000035 -2024-09-06T10:57:34.368Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:34.369Z DRIVER « [RES] [GetSerialApiCapabilities] - payload: 0x011e027a00040610f6873e88cf2bc04ffbd7fde09700008000808680ba0500700 - 000ee7fc0000000 -2024-09-06T10:57:34.370Z CNTRLR received API capabilities: - firmware version: 1.30 - manufacturer ID: 0x027a - product type: 0x04 - product ID: 0x0610 - supported functions: - · GetSerialApiInitData (0x02) - · SetApplicationNodeInformation (0x03) - · GetControllerCapabilities (0x05) - · SetSerialApiTimeouts (0x06) - · GetSerialApiCapabilities (0x07) - · SoftReset (0x08) - · GetProtocolVersion (0x09) - · SerialAPIStarted (0x0a) - · SerialAPISetup (0x0b) - · SetRFReceiveMode (0x10) - · SendNodeInformation (0x12) - · SendData (0x13) - · SendDataMulticast (0x14) - · GetControllerVersion (0x15) - · SendDataAbort (0x16) - · FUNC_ID_ZW_GET_RANDOM (0x1c) - · GetControllerId (0x20) - · UNKNOWN_FUNC_MEMORY_GET_BYTE (0x21) - · UNKNOWN_FUNC_MEMORY_PUT_BYTE (0x22) - · UNKNOWN_FUNC_MEMORY_GET_BUFFER (0x23) - · UNKNOWN_FUNC_MEMORY_PUT_BUFFER (0x24) - · EnterBootloader (0x27) - · UNKNOWN_FUNC_UNKNOWN_0x28 (0x28) - · GetNVMId (0x29) - · ExtNVMReadLongBuffer (0x2a) - · ExtNVMReadLongByte (0x2c) - · NVMOperations (0x2e) - · ClearTxTimers (0x37) - · GetTxTimers (0x38) - · ClearNetworkStats (0x39) - · GetNetworkStats (0x3a) - · GetBackgroundRSSI (0x3b) - · SetListenBeforeTalkThreshold (0x3c) - · RemoveSpecificNodeIdFromNetwork (0x3f) - · GetNodeProtocolInfo (0x41) - · HardReset (0x42) - · FUNC_ID_ZW_REPLICATION_COMMAND_COMPLETE (0x44) - · FUNC_ID_ZW_REPLICATION_SEND_DATA (0x45) - · AssignReturnRoute (0x46) - · DeleteReturnRoute (0x47) - · RequestNodeNeighborUpdate (0x48) - · ApplicationUpdateRequest (0x49) - · AddNodeToNetwork (0x4a) - · RemoveNodeFromNetwork (0x4b) - · AddPrimaryController (0x4d) - · AssignPriorityReturnRoute (0x4f) - · SetLearnMode (0x50) - · AssignSUCReturnRoute (0x51) - · RequestNetworkUpdate (0x53) - · SetSUCNodeId (0x54) - · DeleteSUCReturnRoute (0x55) - · GetSUCNodeId (0x56) - · SendSUCNodeId (0x57) - · AssignPrioritySUCReturnRoute (0x58) - · ExploreRequestInclusion (0x5e) - · ExploreRequestExclusion (0x5f) - · RequestNodeInfo (0x60) - · RemoveFailedNode (0x61) - · IsFailedNode (0x62) - · ReplaceFailedNode (0x63) - · undefined (0x65) - · RequestProtocolCCEncryption (0x68) - · GetRoutingInfo (0x80) - · LockUnlockLastRoute (0x90) - · GetPriorityRoute (0x92) - · SetPriorityRoute (0x93) - · UNKNOWN_FUNC_UNKNOWN_0x98 (0x98) - · VirtualNodeSetNodeInfo (0xa0) - · VirtualNodeSendNodeInfo (0xa2) - · VirtualNodeSetLearnMode (0xa4) - · GetVirtualNodes (0xa5) - · IsVirtualNode (0xa6) - · BridgeApplicationCommand (0xa8) - · SendDataBridge (0xa9) - · SendDataMulticastBridge (0xab) - · GetLibrary (0xbd) - · SendTestFrame (0xbe) - · GetProtocolStatus (0xbf) - · StartWatchdog (0xd2) - · StopWatchdog (0xd3) - · SetMaximumRoutingAttempts (0xd4) - · SetMaxSmartStartInclusionRequestInterval (0xd6) - · undefined (0xd7) - · undefined (0xd8) - · Shutdown (0xd9) - · GetLongRangeNodes (0xda) - · GetLongRangeChannel (0xdb) - · SetLongRangeChannel (0xdc) - · SetLongRangeShadowNodeIDs (0xdd) - · Proprietary_DE (0xde) - · Proprietary_DF (0xdf) - · Proprietary_E7 (0xe7) - · Proprietary_E8 (0xe8) -2024-09-06T10:57:34.370Z CNTRLR querying additional controller information... -2024-09-06T10:57:34.371Z SERIAL » 0x01030002fe (5 bytes) -2024-09-06T10:57:34.371Z DRIVER » [REQ] [GetSerialApiInitData] -2024-09-06T10:57:34.373Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:34.378Z SERIAL « 0x012501020a001d010000000000000000000000000000000000000000000000000 (39 bytes) - 00000000800c7 -2024-09-06T10:57:34.379Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:34.379Z DRIVER « [RES] [GetSerialApiInitData] - payload: 0x0a001d01000000000000000000000000000000000000000000000000000000000 - 800 -2024-09-06T10:57:34.380Z CNTRLR received additional controller information: - Z-Wave API version: 1 (official) - Z-Wave chip type: EFR32ZG23 / ZGM230S - node type Controller - controller role: primary - controller is the SIS: false - controller supports timers: false - Z-Wave Classic nodes: 1 -2024-09-06T10:57:34.380Z CNTRLR querying version info... -2024-09-06T10:57:34.381Z SERIAL » 0x01030015e9 (5 bytes) -2024-09-06T10:57:34.382Z DRIVER » [REQ] [GetControllerVersion] -2024-09-06T10:57:34.384Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:34.386Z SERIAL « 0x011001155a2d5761766520372e3231000794 (18 bytes) -2024-09-06T10:57:34.387Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:34.387Z DRIVER « [RES] [GetControllerVersion] - payload: 0x5a2d5761766520372e32310007 -2024-09-06T10:57:34.388Z CNTRLR received version info: - controller type: Bridge Controller - library version: Z-Wave 7.21 -2024-09-06T10:57:34.388Z CNTRLR querying protocol version info... -2024-09-06T10:57:34.389Z SERIAL » 0x01030009f5 (5 bytes) -2024-09-06T10:57:34.389Z DRIVER » [REQ] [GetProtocolVersion] -2024-09-06T10:57:34.391Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:34.394Z SERIAL « 0x011901090007150300f4353162666237323665306662383733380f (27 bytes) -2024-09-06T10:57:34.395Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:34.395Z DRIVER « [RES] [GetProtocolVersion] - payload: 0x0007150300f435316266623732366530666238373338 -2024-09-06T10:57:34.396Z CNTRLR received protocol version info: - protocol type: Z-Wave - protocol version: 7.21.3 - appl. framework build no.: 244 - git commit hash: 35316266623732366530666238373338 -2024-09-06T10:57:34.396Z CNTRLR querying controller capabilities... -2024-09-06T10:57:34.397Z SERIAL » 0x01030005f9 (5 bytes) -2024-09-06T10:57:34.397Z DRIVER » [REQ] [GetControllerCapabilities] -2024-09-06T10:57:34.399Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:34.400Z SERIAL « 0x0104010528d7 (6 bytes) -2024-09-06T10:57:34.401Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:34.401Z DRIVER « [RES] [GetControllerCapabilities] - payload: 0x28 -2024-09-06T10:57:34.402Z CNTRLR received controller capabilities: - controller role: Primary - is the SUC: false - started this network: true - SIS is present: false - was real primary: true -2024-09-06T10:57:34.402Z CNTRLR querying serial API setup capabilities... -2024-09-06T10:57:34.403Z SERIAL » 0x0104000b01f1 (6 bytes) -2024-09-06T10:57:34.403Z DRIVER » [REQ] [SerialAPISetup] - command: GetSupportedCommands - payload: 0x01 -2024-09-06T10:57:34.408Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:34.409Z SERIAL « 0x0116010b01ff9f8007800000008000000000000000800085 (24 bytes) -2024-09-06T10:57:34.409Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:34.410Z DRIVER « [RES] [SerialAPISetup] - command: GetSupportedCommands - payload: 0xff9f80078000000080000000000000008000 -2024-09-06T10:57:34.410Z CNTRLR supported serial API setup commands: - · GetSupportedCommands - · SetTxStatusReport - · SetLongRangeMaximumTxPower - · SetPowerlevel - · GetLongRangeMaximumTxPower - · GetPowerlevel - · GetMaximumPayloadSize - · GetLongRangeMaximumPayloadSize - · SetPowerlevel16Bit - · GetPowerlevel16Bit - · GetRFRegion - · SetRFRegion - · SetNodeIDType -2024-09-06T10:57:34.410Z CNTRLR querying max. payload size... -2024-09-06T10:57:34.411Z SERIAL » 0x0104000b10e0 (6 bytes) -2024-09-06T10:57:34.412Z DRIVER » [REQ] [SerialAPISetup] - command: GetMaximumPayloadSize - payload: 0x10 -2024-09-06T10:57:34.414Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:34.415Z SERIAL « 0x0105010b102ece (7 bytes) -2024-09-06T10:57:34.416Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:34.416Z DRIVER « [RES] [SerialAPISetup] - command: GetMaximumPayloadSize - maximum payload size: 46 bytes -2024-09-06T10:57:34.417Z CNTRLR maximum payload size: 46 bytes -2024-09-06T10:57:34.417Z CNTRLR supported Z-Wave features: - · SmartStart -2024-09-06T10:57:34.418Z CNTRLR Querying configured RF region... -2024-09-06T10:57:34.418Z SERIAL » 0x0104000b20d0 (6 bytes) -2024-09-06T10:57:34.419Z DRIVER » [REQ] [SerialAPISetup] - command: GetRFRegion - payload: 0x20 -2024-09-06T10:57:34.421Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:34.422Z SERIAL « 0x0105010b2000d0 (7 bytes) -2024-09-06T10:57:34.423Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:34.423Z DRIVER « [RES] [SerialAPISetup] - command: GetRFRegion - region: Europe -2024-09-06T10:57:34.424Z CNTRLR The controller is using RF region Europe -2024-09-06T10:57:34.424Z CNTRLR Querying configured max. Long Range powerlevel... -2024-09-06T10:57:34.425Z SERIAL » 0x0104000b05f5 (6 bytes) -2024-09-06T10:57:34.425Z DRIVER » [REQ] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - payload: 0x05 -2024-09-06T10:57:34.428Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:34.429Z SERIAL « 0x0106010b05008c7a (8 bytes) -2024-09-06T10:57:34.429Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:34.429Z DRIVER « [RES] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - max. TX power (LR): 14.0 dBm -2024-09-06T10:57:34.430Z CNTRLR The max. LR powerlevel is 14.0 dBm -2024-09-06T10:57:34.430Z CNTRLR Querying configured Long Range channel information... -2024-09-06T10:57:34.431Z SERIAL » 0x010300db27 (5 bytes) -2024-09-06T10:57:34.431Z DRIVER » [REQ] [GetLongRangeChannel] -2024-09-06T10:57:34.433Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:34.434Z SERIAL « 0x010501db001030 (7 bytes) -2024-09-06T10:57:34.435Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:34.435Z DRIVER « [RES] [GetLongRangeChannel] - payload: 0x0010 -2024-09-06T10:57:34.436Z CNTRLR received Z-Wave Long Range channel information: - channel: Unsupported - supports auto channel selection: true -2024-09-06T10:57:34.436Z CNTRLR Performing soft reset... -2024-09-06T10:57:34.437Z SERIAL » 0x01030008f4 (5 bytes) -2024-09-06T10:57:34.437Z DRIVER » [REQ] [SoftReset] -2024-09-06T10:57:34.439Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:34.440Z CNTRLR Waiting for the controller to reconnect... -2024-09-06T10:57:34.441Z DRIVER all queues idle -2024-09-06T10:57:34.659Z SERIAL « 0x0112000a0700010100085e989f556c568f740025 (20 bytes) -2024-09-06T10:57:34.659Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:34.660Z DRIVER « [REQ] [SerialAPIStarted] - wake up reason: SoftwareReset - watchdog enabled: false - generic device class: 0x01 - specific device class: 0x00 - always listening: false - supports Long Range: false -2024-09-06T10:57:34.661Z CNTRLR reconnected and restarted -2024-09-06T10:57:34.661Z CNTRLR Starting hardware watchdog... -2024-09-06T10:57:34.661Z CNTRLR Switching serial API to 16-bit node IDs... -2024-09-06T10:57:34.662Z CNTRLR Switching serial API to 8-bit node IDs... -2024-09-06T10:57:34.662Z DRIVER all queues busy -2024-09-06T10:57:34.663Z SERIAL » 0x010300d22e (5 bytes) -2024-09-06T10:57:34.664Z DRIVER » [REQ] [StartWatchdog] -2024-09-06T10:57:34.665Z SERIAL » 0x0105000b800273 (7 bytes) -2024-09-06T10:57:34.666Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 16 bit -2024-09-06T10:57:34.667Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:34.668Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:34.670Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T10:57:34.670Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:34.671Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T10:57:34.671Z CNTRLR Switching to 16-bit node IDs successful -2024-09-06T10:57:34.672Z SERIAL » 0x0105000b800170 (7 bytes) -2024-09-06T10:57:34.672Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 8 bit -2024-09-06T10:57:34.675Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:34.676Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T10:57:34.677Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:34.677Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T10:57:34.678Z CNTRLR Switching to 8-bit node IDs successful -2024-09-06T10:57:34.679Z CNTRLR querying controller IDs... -2024-09-06T10:57:34.679Z SERIAL » 0x01030020dc (5 bytes) -2024-09-06T10:57:34.680Z DRIVER » [REQ] [GetControllerId] -2024-09-06T10:57:34.682Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:34.683Z SERIAL « 0x01080120f6cb98710103 (10 bytes) -2024-09-06T10:57:34.684Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:34.684Z DRIVER « [RES] [GetControllerId] - home ID: 0xf6cb9871 - own node ID: 1 -2024-09-06T10:57:34.685Z CNTRLR received controller IDs: - home ID: 0xf6cb9871 - own node ID: 1 -2024-09-06T10:57:34.685Z CNTRLR Enabling TX status report... -2024-09-06T10:57:34.686Z SERIAL » 0x0105000b02ff0c (7 bytes) -2024-09-06T10:57:34.686Z DRIVER » [REQ] [SerialAPISetup] - command: SetTxStatusReport - enabled: true -2024-09-06T10:57:34.690Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:34.690Z SERIAL « 0x0105010b0201f3 (7 bytes) -2024-09-06T10:57:34.691Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:34.691Z DRIVER « [RES] [SerialAPISetup] - command: SetTxStatusReport - success: true -2024-09-06T10:57:34.692Z CNTRLR Enabling TX status report successful... -2024-09-06T10:57:34.692Z CNTRLR finding SUC... -2024-09-06T10:57:34.693Z SERIAL » 0x01030056aa (5 bytes) -2024-09-06T10:57:34.693Z DRIVER » [REQ] [GetSUCNodeId] -2024-09-06T10:57:34.695Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:34.696Z SERIAL « 0x0104015600ac (6 bytes) -2024-09-06T10:57:34.697Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:34.697Z DRIVER « [RES] [GetSUCNodeId] - payload: 0x00 -2024-09-06T10:57:34.698Z CNTRLR No SUC present in the network -2024-09-06T10:57:34.698Z CNTRLR There is no SUC/SIS in the network - promoting ourselves... -2024-09-06T10:57:34.699Z SERIAL » 0x01080054010125010285 (10 bytes) -2024-09-06T10:57:34.699Z DRIVER » [REQ] [SetSUCNodeId] - payload: 0x0101250102 -2024-09-06T10:57:34.702Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:34.704Z SERIAL « 0x0104015401af (6 bytes) -2024-09-06T10:57:34.705Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:34.705Z DRIVER « [RES] [SetSUCNodeId] - was executed: true -2024-09-06T10:57:34.706Z CNTRLR Promotion to SUC/SIS succeeded. -2024-09-06T10:57:34.706Z DRIVER all queues idle -2024-09-06T10:57:34.712Z CNTRLR [Node 001] [Manufacturer Specific] manufacturerId: metadata updated -2024-09-06T10:57:34.712Z CNTRLR [Node 001] [Manufacturer Specific] productType: metadata updated -2024-09-06T10:57:34.713Z CNTRLR [Node 001] [Manufacturer Specific] productId: metadata updated -2024-09-06T10:57:34.713Z CNTRLR [Node 001] [+] [Manufacturer Specific] manufacturerId: 634 -2024-09-06T10:57:34.713Z CNTRLR [Node 001] [+] [Manufacturer Specific] productType: 4 -2024-09-06T10:57:34.713Z CNTRLR [Node 001] [+] [Manufacturer Specific] productId: 1552 -2024-09-06T10:57:34.714Z CNTRLR [Node 001] [Version] firmwareVersions: metadata updated -2024-09-06T10:57:34.714Z CNTRLR [Node 001] [+] [Version] firmwareVersions: 1.30 -2024-09-06T10:57:34.714Z CNTRLR [Node 001] [Version] zWaveProtocolVersion: metadata updated -2024-09-06T10:57:34.714Z CNTRLR [Node 001] [+] [Version] zWaveProtocolVersion: "7.21.3" -2024-09-06T10:57:34.715Z CNTRLR [Node 001] [Version] sdkVersion: metadata updated -2024-09-06T10:57:34.715Z CNTRLR [Node 001] [+] [Version] sdkVersion: "7.21.3" -2024-09-06T10:57:34.715Z CNTRLR Interview completed -2024-09-06T10:57:34.715Z DRIVER Network key for S0 configured, enabling S0 security manager... -2024-09-06T10:57:34.716Z DRIVER At least one network key for S2 configured, enabling S2 security manager... -2024-09-06T10:57:34.717Z DRIVER At least one network key for Z-Wave Long Range configured, enabling security m - anager... -2024-09-06T10:57:34.718Z DRIVER driver ready -2024-09-06T10:57:39.362Z CNTRLR Starting inclusion process with strategy Default... -2024-09-06T10:57:39.364Z DRIVER all queues busy -2024-09-06T10:57:39.366Z SERIAL » 0x0105004ac10372 (7 bytes) -2024-09-06T10:57:39.367Z DRIVER » [REQ] [AddNodeToNetwork] - node type: Any - high power: true - network wide: true - callback id: 3 -2024-09-06T10:57:39.370Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:39.376Z SERIAL « 0x0107004a03010000b0 (9 bytes) -2024-09-06T10:57:39.378Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:39.379Z DRIVER « [REQ] [AddNodeToNetwork] - status: Ready - callback id: 3 -2024-09-06T10:57:39.381Z CNTRLR The controller is now ready to add nodes -2024-09-06T10:57:39.382Z DRIVER all queues idle -2024-09-06T10:57:43.417Z SERIAL « 0x0107004a03020000b3 (9 bytes) -2024-09-06T10:57:43.419Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:43.420Z DRIVER « [REQ] [AddNodeToNetwork] - status: NodeFound - callback id: 3 -2024-09-06T10:57:43.421Z DRIVER handling request AddNodeToNetwork (74) -2024-09-06T10:57:43.422Z DRIVER 1 handler registered! -2024-09-06T10:57:43.422Z DRIVER invoking handler #0 -2024-09-06T10:57:43.423Z CNTRLR handling add node request (status = NodeFound) -2024-09-06T10:57:43.521Z SERIAL « 0x0112004a0304020b0201005e989f556c568f7467 (20 bytes) -2024-09-06T10:57:43.523Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:43.524Z DRIVER « [REQ] [AddNodeToNetwork] - status: AddingController - callback id: 3 -2024-09-06T10:57:43.525Z DRIVER handling request AddNodeToNetwork (74) -2024-09-06T10:57:43.526Z DRIVER 1 handler registered! -2024-09-06T10:57:43.526Z DRIVER invoking handler #0 -2024-09-06T10:57:43.526Z CNTRLR handling add node request (status = AddingController) -2024-09-06T10:57:43.531Z DRIVER the message was handled -2024-09-06T10:57:43.939Z SERIAL « 0x0107004a03050200b6 (9 bytes) -2024-09-06T10:57:43.941Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:43.942Z DRIVER « [REQ] [AddNodeToNetwork] - status: ProtocolDone - callback id: 3 -2024-09-06T10:57:43.943Z DRIVER handling request AddNodeToNetwork (74) -2024-09-06T10:57:43.944Z DRIVER 1 handler registered! -2024-09-06T10:57:43.944Z DRIVER invoking handler #0 -2024-09-06T10:57:43.945Z CNTRLR handling add node request (status = ProtocolDone) -2024-09-06T10:57:43.945Z CNTRLR finishing inclusion process... -2024-09-06T10:57:43.947Z DRIVER all queues busy -2024-09-06T10:57:43.949Z SERIAL » 0x0105004ac50471 (7 bytes) -2024-09-06T10:57:43.950Z DRIVER » [REQ] [AddNodeToNetwork] - action: Stop - high power: true - network wide: true - callback id: 4 -2024-09-06T10:57:43.953Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:43.993Z SERIAL « 0x0107004a04060200b2 (9 bytes) -2024-09-06T10:57:43.994Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:43.995Z DRIVER « [REQ] [AddNodeToNetwork] - status: Done - callback id: 4 -2024-09-06T10:57:43.996Z SERIAL » 0x0105004ac50075 (7 bytes) -2024-09-06T10:57:43.996Z DRIVER » [REQ] [AddNodeToNetwork] - action: Stop - high power: true - network wide: true - callback id: 0 -2024-09-06T10:57:44.001Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:44.002Z CNTRLR The inclusion process was stopped -2024-09-06T10:57:44.003Z CNTRLR finished adding node 2: - basic device class: Static Controller - generic device class: Remote Controller - specific device class: Unused - supported CCs: - · Z-Wave Plus Info (0x5e) - · Security (0x98) - · Security 2 (0x9f) - · Transport Service (0x55) - · Supervision (0x6c) - · CRC-16 Encapsulation (0x56) - · Multi Command (0x8f) - · Inclusion Controller (0x74) - controlled CCs: -2024-09-06T10:57:44.003Z CNTRLR » [Node 002] Assigning SUC return route... -2024-09-06T10:57:44.003Z CNTRLR » [Node 002] Deleting SUC return route... -2024-09-06T10:57:44.004Z SERIAL » 0x010500550205a8 (7 bytes) -2024-09-06T10:57:44.005Z DRIVER » [Node 002] [REQ] [DeleteSUCReturnRoute] - payload: 0x0205 -2024-09-06T10:57:44.009Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:44.013Z SERIAL « 0x0104015501ae (6 bytes) -2024-09-06T10:57:44.014Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:44.014Z DRIVER « [RES] [DeleteSUCReturnRoute] - was executed: true -2024-09-06T10:57:44.078Z SERIAL « 0x01210055050000000000000000000000000000000000000000000000000000000 (35 bytes) - 0008e -2024-09-06T10:57:44.080Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:44.082Z DRIVER « [REQ] [DeleteSUCReturnRoute] - callback id: 5 - transmit status: OK -2024-09-06T10:57:44.086Z SERIAL » 0x010500510206af (7 bytes) -2024-09-06T10:57:44.087Z DRIVER » [Node 002] [REQ] [AssignSUCReturnRoute] - payload: 0x0206 -2024-09-06T10:57:44.090Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:44.096Z SERIAL « 0x0104015101aa (6 bytes) -2024-09-06T10:57:44.097Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:44.098Z DRIVER « [RES] [AssignSUCReturnRoute] - was executed: true -2024-09-06T10:57:44.170Z SERIAL « 0x01210051060000000000000000000000000000000000000000000000000000000 (35 bytes) - 00089 -2024-09-06T10:57:44.171Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:44.174Z DRIVER « [REQ] [AssignSUCReturnRoute] - callback id: 6 - transmit status: OK -2024-09-06T10:57:44.179Z SERIAL » 0x010e00a90102029f04250000000007e0 (16 bytes) -2024-09-06T10:57:44.179Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x25 - │ callback id: 7 - └─[Security2CCKEXGet] -2024-09-06T10:57:44.183Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:44.190Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T10:57:44.191Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:44.191Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T10:57:44.203Z SERIAL « 0x011d00a90700000100e07f7f7f7f00000300000000030100007f7f7f7f7fd3 (31 bytes) -2024-09-06T10:57:44.203Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:44.204Z DRIVER « [REQ] [SendDataBridge] - callback id: 7 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -32 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T10:57:54.232Z CNTRLR [Node 002] Timed out while waiting for a response from the node (ZW0201) -2024-09-06T10:57:54.233Z CNTRLR [Node 002] Security S2 bootstrapping failed: did not receive the node's desire - d security classes. -2024-09-06T10:57:54.235Z DRIVER the message was handled -2024-09-06T10:57:54.236Z DRIVER all queues idle -2024-09-06T10:59:17.023Z DRIVER ███████╗ ██╗ ██╗ █████╗ ██╗ ██╗ ███████╗ ██╗ ███████╗ - ╚══███╔╝ ██║ ██║ ██╔══██╗ ██║ ██║ ██╔════╝ ██║ ██╔════╝ - ███╔╝ █████╗ ██║ █╗ ██║ ███████║ ██║ ██║ █████╗ ██║ ███████╗ - ███╔╝ ╚════╝ ██║███╗██║ ██╔══██║ ╚██╗ ██╔╝ ██╔══╝ ██ ██║ ╚════██║ - ███████╗ ╚███╔███╔╝ ██║ ██║ ╚████╔╝ ███████╗ ╚█████╔╝ ███████║ - ╚══════╝ ╚══╝╚══╝ ╚═╝ ╚═╝ ╚═══╝ ╚══════╝ ╚════╝ ╚══════╝ -2024-09-06T10:59:17.025Z DRIVER version 13.2.0 -2024-09-06T10:59:17.026Z DRIVER -2024-09-06T10:59:17.026Z DRIVER starting driver... -2024-09-06T10:59:17.026Z DRIVER opening serial port /dev/serial/by-id/usb-Zooz_800_Z-Wave_Stick_533D004242-if0 - 0 -2024-09-06T10:59:17.035Z DRIVER serial port opened -2024-09-06T10:59:17.036Z SERIAL » 0x15 (1 bytes) -2024-09-06T10:59:18.040Z DRIVER loading configuration... -2024-09-06T10:59:18.042Z CONFIG version 13.2.0 -2024-09-06T10:59:18.358Z DRIVER beginning interview... -2024-09-06T10:59:18.359Z DRIVER added request handler for AddNodeToNetwork (0x4a)... - 1 registered -2024-09-06T10:59:18.359Z DRIVER added request handler for RemoveNodeFromNetwork (0x4b)... - 1 registered -2024-09-06T10:59:18.359Z DRIVER added request handler for ReplaceFailedNode (0x63)... - 1 registered -2024-09-06T10:59:18.359Z DRIVER added request handler for SetLearnMode (0x50)... - 1 registered -2024-09-06T10:59:18.359Z CNTRLR querying Serial API capabilities... -2024-09-06T10:59:18.361Z SERIAL » 0x01030007fb (5 bytes) -2024-09-06T10:59:18.361Z DRIVER » [REQ] [GetSerialApiCapabilities] -2024-09-06T10:59:18.364Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:18.375Z SERIAL « 0x012b0107011e027a00040610f6873e88cf2bc04ffbd7fde09700008000808680b (45 bytes) - a0500700000ee7fc000000035 -2024-09-06T10:59:18.375Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:18.376Z DRIVER « [RES] [GetSerialApiCapabilities] - payload: 0x011e027a00040610f6873e88cf2bc04ffbd7fde09700008000808680ba0500700 - 000ee7fc0000000 -2024-09-06T10:59:18.377Z CNTRLR received API capabilities: - firmware version: 1.30 - manufacturer ID: 0x027a - product type: 0x04 - product ID: 0x0610 - supported functions: - · GetSerialApiInitData (0x02) - · SetApplicationNodeInformation (0x03) - · GetControllerCapabilities (0x05) - · SetSerialApiTimeouts (0x06) - · GetSerialApiCapabilities (0x07) - · SoftReset (0x08) - · GetProtocolVersion (0x09) - · SerialAPIStarted (0x0a) - · SerialAPISetup (0x0b) - · SetRFReceiveMode (0x10) - · SendNodeInformation (0x12) - · SendData (0x13) - · SendDataMulticast (0x14) - · GetControllerVersion (0x15) - · SendDataAbort (0x16) - · FUNC_ID_ZW_GET_RANDOM (0x1c) - · GetControllerId (0x20) - · UNKNOWN_FUNC_MEMORY_GET_BYTE (0x21) - · UNKNOWN_FUNC_MEMORY_PUT_BYTE (0x22) - · UNKNOWN_FUNC_MEMORY_GET_BUFFER (0x23) - · UNKNOWN_FUNC_MEMORY_PUT_BUFFER (0x24) - · EnterBootloader (0x27) - · UNKNOWN_FUNC_UNKNOWN_0x28 (0x28) - · GetNVMId (0x29) - · ExtNVMReadLongBuffer (0x2a) - · ExtNVMReadLongByte (0x2c) - · NVMOperations (0x2e) - · ClearTxTimers (0x37) - · GetTxTimers (0x38) - · ClearNetworkStats (0x39) - · GetNetworkStats (0x3a) - · GetBackgroundRSSI (0x3b) - · SetListenBeforeTalkThreshold (0x3c) - · RemoveSpecificNodeIdFromNetwork (0x3f) - · GetNodeProtocolInfo (0x41) - · HardReset (0x42) - · FUNC_ID_ZW_REPLICATION_COMMAND_COMPLETE (0x44) - · FUNC_ID_ZW_REPLICATION_SEND_DATA (0x45) - · AssignReturnRoute (0x46) - · DeleteReturnRoute (0x47) - · RequestNodeNeighborUpdate (0x48) - · ApplicationUpdateRequest (0x49) - · AddNodeToNetwork (0x4a) - · RemoveNodeFromNetwork (0x4b) - · AddPrimaryController (0x4d) - · AssignPriorityReturnRoute (0x4f) - · SetLearnMode (0x50) - · AssignSUCReturnRoute (0x51) - · RequestNetworkUpdate (0x53) - · SetSUCNodeId (0x54) - · DeleteSUCReturnRoute (0x55) - · GetSUCNodeId (0x56) - · SendSUCNodeId (0x57) - · AssignPrioritySUCReturnRoute (0x58) - · ExploreRequestInclusion (0x5e) - · ExploreRequestExclusion (0x5f) - · RequestNodeInfo (0x60) - · RemoveFailedNode (0x61) - · IsFailedNode (0x62) - · ReplaceFailedNode (0x63) - · undefined (0x65) - · RequestProtocolCCEncryption (0x68) - · GetRoutingInfo (0x80) - · LockUnlockLastRoute (0x90) - · GetPriorityRoute (0x92) - · SetPriorityRoute (0x93) - · UNKNOWN_FUNC_UNKNOWN_0x98 (0x98) - · VirtualNodeSetNodeInfo (0xa0) - · VirtualNodeSendNodeInfo (0xa2) - · VirtualNodeSetLearnMode (0xa4) - · GetVirtualNodes (0xa5) - · IsVirtualNode (0xa6) - · BridgeApplicationCommand (0xa8) - · SendDataBridge (0xa9) - · SendDataMulticastBridge (0xab) - · GetLibrary (0xbd) - · SendTestFrame (0xbe) - · GetProtocolStatus (0xbf) - · StartWatchdog (0xd2) - · StopWatchdog (0xd3) - · SetMaximumRoutingAttempts (0xd4) - · SetMaxSmartStartInclusionRequestInterval (0xd6) - · undefined (0xd7) - · undefined (0xd8) - · Shutdown (0xd9) - · GetLongRangeNodes (0xda) - · GetLongRangeChannel (0xdb) - · SetLongRangeChannel (0xdc) - · SetLongRangeShadowNodeIDs (0xdd) - · Proprietary_DE (0xde) - · Proprietary_DF (0xdf) - · Proprietary_E7 (0xe7) - · Proprietary_E8 (0xe8) -2024-09-06T10:59:18.377Z CNTRLR querying additional controller information... -2024-09-06T10:59:18.378Z SERIAL » 0x01030002fe (5 bytes) -2024-09-06T10:59:18.378Z DRIVER » [REQ] [GetSerialApiInitData] -2024-09-06T10:59:18.383Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:18.385Z SERIAL « 0x012501020a081d030000000000000000000000000000000000000000000000000 (39 bytes) - 00000000800cd -2024-09-06T10:59:18.386Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:18.386Z DRIVER « [RES] [GetSerialApiInitData] - payload: 0x0a081d03000000000000000000000000000000000000000000000000000000000 - 800 -2024-09-06T10:59:18.387Z CNTRLR received additional controller information: - Z-Wave API version: 1 (official) - Z-Wave chip type: EFR32ZG23 / ZGM230S - node type Controller - controller role: primary - controller is the SIS: true - controller supports timers: false - Z-Wave Classic nodes: 1, 2 -2024-09-06T10:59:18.388Z CNTRLR querying version info... -2024-09-06T10:59:18.389Z SERIAL » 0x01030015e9 (5 bytes) -2024-09-06T10:59:18.389Z DRIVER » [REQ] [GetControllerVersion] -2024-09-06T10:59:18.394Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:18.395Z SERIAL « 0x011001155a2d5761766520372e3231000794 (18 bytes) -2024-09-06T10:59:18.395Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:18.395Z DRIVER « [RES] [GetControllerVersion] - payload: 0x5a2d5761766520372e32310007 -2024-09-06T10:59:18.396Z CNTRLR received version info: - controller type: Bridge Controller - library version: Z-Wave 7.21 -2024-09-06T10:59:18.396Z CNTRLR querying protocol version info... -2024-09-06T10:59:18.397Z SERIAL » 0x01030009f5 (5 bytes) -2024-09-06T10:59:18.398Z DRIVER » [REQ] [GetProtocolVersion] -2024-09-06T10:59:18.401Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:18.405Z SERIAL « 0x011901090007150300f4353162666237323665306662383733380f (27 bytes) -2024-09-06T10:59:18.406Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:18.406Z DRIVER « [RES] [GetProtocolVersion] - payload: 0x0007150300f435316266623732366530666238373338 -2024-09-06T10:59:18.407Z CNTRLR received protocol version info: - protocol type: Z-Wave - protocol version: 7.21.3 - appl. framework build no.: 244 - git commit hash: 35316266623732366530666238373338 -2024-09-06T10:59:18.407Z CNTRLR querying controller capabilities... -2024-09-06T10:59:18.408Z SERIAL » 0x01030005f9 (5 bytes) -2024-09-06T10:59:18.408Z DRIVER » [REQ] [GetControllerCapabilities] -2024-09-06T10:59:18.413Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:18.414Z SERIAL « 0x010401051ce3 (6 bytes) -2024-09-06T10:59:18.414Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:18.414Z DRIVER « [RES] [GetControllerCapabilities] - payload: 0x1c -2024-09-06T10:59:18.415Z CNTRLR received controller capabilities: - controller role: Primary - is the SUC: true - started this network: true - SIS is present: true - was real primary: true -2024-09-06T10:59:18.415Z CNTRLR querying serial API setup capabilities... -2024-09-06T10:59:18.416Z SERIAL » 0x0104000b01f1 (6 bytes) -2024-09-06T10:59:18.417Z DRIVER » [REQ] [SerialAPISetup] - command: GetSupportedCommands - payload: 0x01 -2024-09-06T10:59:18.423Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:18.424Z SERIAL « 0x0116010b01ff9f8007800000008000000000000000800085 (24 bytes) -2024-09-06T10:59:18.424Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:18.425Z DRIVER « [RES] [SerialAPISetup] - command: GetSupportedCommands - payload: 0xff9f80078000000080000000000000008000 -2024-09-06T10:59:18.425Z CNTRLR supported serial API setup commands: - · GetSupportedCommands - · SetTxStatusReport - · SetLongRangeMaximumTxPower - · SetPowerlevel - · GetLongRangeMaximumTxPower - · GetPowerlevel - · GetMaximumPayloadSize - · GetLongRangeMaximumPayloadSize - · SetPowerlevel16Bit - · GetPowerlevel16Bit - · GetRFRegion - · SetRFRegion - · SetNodeIDType -2024-09-06T10:59:18.425Z CNTRLR querying max. payload size... -2024-09-06T10:59:18.426Z SERIAL » 0x0104000b10e0 (6 bytes) -2024-09-06T10:59:18.426Z DRIVER » [REQ] [SerialAPISetup] - command: GetMaximumPayloadSize - payload: 0x10 -2024-09-06T10:59:18.432Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:18.432Z SERIAL « 0x0105010b102ece (7 bytes) -2024-09-06T10:59:18.433Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:18.433Z DRIVER « [RES] [SerialAPISetup] - command: GetMaximumPayloadSize - maximum payload size: 46 bytes -2024-09-06T10:59:18.434Z CNTRLR maximum payload size: 46 bytes -2024-09-06T10:59:18.435Z CNTRLR supported Z-Wave features: - · SmartStart -2024-09-06T10:59:18.435Z CNTRLR Querying configured RF region... -2024-09-06T10:59:18.436Z SERIAL » 0x0104000b20d0 (6 bytes) -2024-09-06T10:59:18.436Z DRIVER » [REQ] [SerialAPISetup] - command: GetRFRegion - payload: 0x20 -2024-09-06T10:59:18.440Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:18.441Z SERIAL « 0x0105010b2000d0 (7 bytes) -2024-09-06T10:59:18.441Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:18.442Z DRIVER « [RES] [SerialAPISetup] - command: GetRFRegion - region: Europe -2024-09-06T10:59:18.442Z CNTRLR The controller is using RF region Europe -2024-09-06T10:59:18.442Z CNTRLR Querying configured max. Long Range powerlevel... -2024-09-06T10:59:18.443Z SERIAL » 0x0104000b05f5 (6 bytes) -2024-09-06T10:59:18.443Z DRIVER » [REQ] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - payload: 0x05 -2024-09-06T10:59:18.448Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:18.449Z SERIAL « 0x0106010b05008c7a (8 bytes) -2024-09-06T10:59:18.449Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:18.450Z DRIVER « [RES] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - max. TX power (LR): 14.0 dBm -2024-09-06T10:59:18.451Z CNTRLR The max. LR powerlevel is 14.0 dBm -2024-09-06T10:59:18.451Z CNTRLR Querying configured Long Range channel information... -2024-09-06T10:59:18.452Z SERIAL » 0x010300db27 (5 bytes) -2024-09-06T10:59:18.452Z DRIVER » [REQ] [GetLongRangeChannel] -2024-09-06T10:59:18.457Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:18.458Z SERIAL « 0x010501db001030 (7 bytes) -2024-09-06T10:59:18.458Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:18.458Z DRIVER « [RES] [GetLongRangeChannel] - payload: 0x0010 -2024-09-06T10:59:18.459Z CNTRLR received Z-Wave Long Range channel information: - channel: Unsupported - supports auto channel selection: true -2024-09-06T10:59:18.459Z CNTRLR Performing soft reset... -2024-09-06T10:59:18.460Z SERIAL » 0x01030008f4 (5 bytes) -2024-09-06T10:59:18.460Z DRIVER » [REQ] [SoftReset] -2024-09-06T10:59:18.463Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:18.464Z CNTRLR Waiting for the controller to reconnect... -2024-09-06T10:59:18.464Z DRIVER all queues idle -2024-09-06T10:59:18.685Z SERIAL « 0x0112000a0700010100085e989f556c568f740025 (20 bytes) -2024-09-06T10:59:18.686Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:18.686Z DRIVER « [REQ] [SerialAPIStarted] - wake up reason: SoftwareReset - watchdog enabled: false - generic device class: 0x01 - specific device class: 0x00 - always listening: false - supports Long Range: false -2024-09-06T10:59:18.687Z CNTRLR reconnected and restarted -2024-09-06T10:59:18.687Z CNTRLR Starting hardware watchdog... -2024-09-06T10:59:18.687Z CNTRLR Switching serial API to 16-bit node IDs... -2024-09-06T10:59:18.687Z CNTRLR Switching serial API to 8-bit node IDs... -2024-09-06T10:59:18.688Z DRIVER all queues busy -2024-09-06T10:59:18.688Z SERIAL » 0x010300d22e (5 bytes) -2024-09-06T10:59:18.688Z DRIVER » [REQ] [StartWatchdog] -2024-09-06T10:59:18.689Z SERIAL » 0x0105000b800273 (7 bytes) -2024-09-06T10:59:18.690Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 16 bit -2024-09-06T10:59:18.691Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:18.694Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:18.694Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T10:59:18.695Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:18.695Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T10:59:18.696Z CNTRLR Switching to 16-bit node IDs successful -2024-09-06T10:59:18.697Z SERIAL » 0x0105000b800170 (7 bytes) -2024-09-06T10:59:18.698Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 8 bit -2024-09-06T10:59:18.702Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:18.703Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T10:59:18.703Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:18.704Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T10:59:18.705Z CNTRLR Switching to 8-bit node IDs successful -2024-09-06T10:59:18.705Z CNTRLR querying controller IDs... -2024-09-06T10:59:18.706Z SERIAL » 0x01030020dc (5 bytes) -2024-09-06T10:59:18.706Z DRIVER » [REQ] [GetControllerId] -2024-09-06T10:59:18.709Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:18.710Z SERIAL « 0x01080120f6cb98710103 (10 bytes) -2024-09-06T10:59:18.710Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:18.711Z DRIVER « [RES] [GetControllerId] - home ID: 0xf6cb9871 - own node ID: 1 -2024-09-06T10:59:18.711Z CNTRLR received controller IDs: - home ID: 0xf6cb9871 - own node ID: 1 -2024-09-06T10:59:18.712Z CNTRLR Enabling TX status report... -2024-09-06T10:59:18.712Z SERIAL » 0x0105000b02ff0c (7 bytes) -2024-09-06T10:59:18.713Z DRIVER » [REQ] [SerialAPISetup] - command: SetTxStatusReport - enabled: true -2024-09-06T10:59:18.717Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:18.717Z SERIAL « 0x0105010b0201f3 (7 bytes) -2024-09-06T10:59:18.718Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:18.718Z DRIVER « [RES] [SerialAPISetup] - command: SetTxStatusReport - success: true -2024-09-06T10:59:18.719Z CNTRLR Enabling TX status report successful... -2024-09-06T10:59:18.719Z CNTRLR finding SUC... -2024-09-06T10:59:18.720Z SERIAL » 0x01030056aa (5 bytes) -2024-09-06T10:59:18.721Z DRIVER » [REQ] [GetSUCNodeId] -2024-09-06T10:59:18.724Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:18.725Z SERIAL « 0x0104015601ad (6 bytes) -2024-09-06T10:59:18.726Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:18.726Z DRIVER « [RES] [GetSUCNodeId] - payload: 0x01 -2024-09-06T10:59:18.727Z CNTRLR This is the SUC -2024-09-06T10:59:18.728Z DRIVER all queues idle -2024-09-06T10:59:18.744Z DRIVER Cache file for homeId 0xf6cb9871 found, attempting to restore the network from - cache... -2024-09-06T10:59:18.746Z CNTRLR [Node 001] Embedded device config loaded -2024-09-06T10:59:18.747Z DRIVER Restoring the network from cache was successful! -2024-09-06T10:59:18.747Z CNTRLR [Node 001] [Manufacturer Specific] manufacturerId: metadata updated -2024-09-06T10:59:18.748Z CNTRLR [Node 001] [Manufacturer Specific] productType: metadata updated -2024-09-06T10:59:18.748Z CNTRLR [Node 001] [Manufacturer Specific] productId: metadata updated -2024-09-06T10:59:18.748Z CNTRLR [Node 001] [~] [Manufacturer Specific] manufacturerId: 634 => 634 -2024-09-06T10:59:18.748Z CNTRLR [Node 001] [~] [Manufacturer Specific] productType: 4 => 4 -2024-09-06T10:59:18.748Z CNTRLR [Node 001] [~] [Manufacturer Specific] productId: 1552 => 1552 -2024-09-06T10:59:18.749Z CNTRLR [Node 001] [Version] firmwareVersions: metadata updated -2024-09-06T10:59:18.749Z CNTRLR [Node 001] [~] [Version] firmwareVersions: 1.30 => 1.30 -2024-09-06T10:59:18.749Z CNTRLR [Node 001] [Version] zWaveProtocolVersion: metadata updated -2024-09-06T10:59:18.749Z CNTRLR [Node 001] [~] [Version] zWaveProtocolVersion: "7.21.3" => "7.21.3" -2024-09-06T10:59:18.750Z CNTRLR [Node 001] [Version] sdkVersion: metadata updated -2024-09-06T10:59:18.750Z CNTRLR [Node 001] [~] [Version] sdkVersion: "7.21.3" => "7.21.3" -2024-09-06T10:59:18.750Z CNTRLR Interview completed -2024-09-06T10:59:18.750Z DRIVER Network key for S0 configured, enabling S0 security manager... -2024-09-06T10:59:18.751Z DRIVER At least one network key for S2 configured, enabling S2 security manager... -2024-09-06T10:59:18.753Z DRIVER At least one network key for Z-Wave Long Range configured, enabling security m - anager... -2024-09-06T10:59:18.753Z DRIVER driver ready -2024-09-06T10:59:19.754Z CNTRLR Updating the controller NIF... -2024-09-06T10:59:19.757Z DRIVER all queues busy -2024-09-06T10:59:19.759Z SERIAL » 0x010f0003010100085e989f556c568f7436 (17 bytes) -2024-09-06T10:59:19.761Z DRIVER » [REQ] [SetApplicationNodeInformation] - is listening: true - generic device class: 0x01 - specific device class: 0x00 - supported CCs: - · Z-Wave Plus Info - · Security - · Security 2 - · Transport Service - · Supervision - · CRC-16 Encapsulation - · Multi Command - · Inclusion Controller - controlled CCs: -2024-09-06T10:59:19.765Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:19.768Z CNTRLR performing hard reset... -2024-09-06T10:59:19.770Z SERIAL » 0x0104004201b8 (6 bytes) -2024-09-06T10:59:19.771Z DRIVER » [REQ] [HardReset] - callback id: 1 -2024-09-06T10:59:19.773Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:19.795Z SERIAL « 0x0104004201b8 (6 bytes) -2024-09-06T10:59:19.795Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:19.796Z DRIVER « [REQ] [HardReset] - callback id: 1 -2024-09-06T10:59:19.797Z CNTRLR hard reset succeeded -2024-09-06T10:59:19.797Z CNTRLR querying Serial API capabilities... -2024-09-06T10:59:19.798Z SERIAL » 0x01030007fb (5 bytes) -2024-09-06T10:59:19.798Z DRIVER » [REQ] [GetSerialApiCapabilities] -2024-09-06T10:59:19.812Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:19.817Z SERIAL « 0x012b0107011e027a00040610f6873e88cf2bc04ffbd7fde09700008000808680b (45 bytes) - a0500700000ee7fc000000035 -2024-09-06T10:59:19.817Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:19.818Z DRIVER « [RES] [GetSerialApiCapabilities] - payload: 0x011e027a00040610f6873e88cf2bc04ffbd7fde09700008000808680ba0500700 - 000ee7fc0000000 -2024-09-06T10:59:19.819Z CNTRLR received API capabilities: - firmware version: 1.30 - manufacturer ID: 0x027a - product type: 0x04 - product ID: 0x0610 - supported functions: - · GetSerialApiInitData (0x02) - · SetApplicationNodeInformation (0x03) - · GetControllerCapabilities (0x05) - · SetSerialApiTimeouts (0x06) - · GetSerialApiCapabilities (0x07) - · SoftReset (0x08) - · GetProtocolVersion (0x09) - · SerialAPIStarted (0x0a) - · SerialAPISetup (0x0b) - · SetRFReceiveMode (0x10) - · SendNodeInformation (0x12) - · SendData (0x13) - · SendDataMulticast (0x14) - · GetControllerVersion (0x15) - · SendDataAbort (0x16) - · FUNC_ID_ZW_GET_RANDOM (0x1c) - · GetControllerId (0x20) - · UNKNOWN_FUNC_MEMORY_GET_BYTE (0x21) - · UNKNOWN_FUNC_MEMORY_PUT_BYTE (0x22) - · UNKNOWN_FUNC_MEMORY_GET_BUFFER (0x23) - · UNKNOWN_FUNC_MEMORY_PUT_BUFFER (0x24) - · EnterBootloader (0x27) - · UNKNOWN_FUNC_UNKNOWN_0x28 (0x28) - · GetNVMId (0x29) - · ExtNVMReadLongBuffer (0x2a) - · ExtNVMReadLongByte (0x2c) - · NVMOperations (0x2e) - · ClearTxTimers (0x37) - · GetTxTimers (0x38) - · ClearNetworkStats (0x39) - · GetNetworkStats (0x3a) - · GetBackgroundRSSI (0x3b) - · SetListenBeforeTalkThreshold (0x3c) - · RemoveSpecificNodeIdFromNetwork (0x3f) - · GetNodeProtocolInfo (0x41) - · HardReset (0x42) - · FUNC_ID_ZW_REPLICATION_COMMAND_COMPLETE (0x44) - · FUNC_ID_ZW_REPLICATION_SEND_DATA (0x45) - · AssignReturnRoute (0x46) - · DeleteReturnRoute (0x47) - · RequestNodeNeighborUpdate (0x48) - · ApplicationUpdateRequest (0x49) - · AddNodeToNetwork (0x4a) - · RemoveNodeFromNetwork (0x4b) - · AddPrimaryController (0x4d) - · AssignPriorityReturnRoute (0x4f) - · SetLearnMode (0x50) - · AssignSUCReturnRoute (0x51) - · RequestNetworkUpdate (0x53) - · SetSUCNodeId (0x54) - · DeleteSUCReturnRoute (0x55) - · GetSUCNodeId (0x56) - · SendSUCNodeId (0x57) - · AssignPrioritySUCReturnRoute (0x58) - · ExploreRequestInclusion (0x5e) - · ExploreRequestExclusion (0x5f) - · RequestNodeInfo (0x60) - · RemoveFailedNode (0x61) - · IsFailedNode (0x62) - · ReplaceFailedNode (0x63) - · undefined (0x65) - · RequestProtocolCCEncryption (0x68) - · GetRoutingInfo (0x80) - · LockUnlockLastRoute (0x90) - · GetPriorityRoute (0x92) - · SetPriorityRoute (0x93) - · UNKNOWN_FUNC_UNKNOWN_0x98 (0x98) - · VirtualNodeSetNodeInfo (0xa0) - · VirtualNodeSendNodeInfo (0xa2) - · VirtualNodeSetLearnMode (0xa4) - · GetVirtualNodes (0xa5) - · IsVirtualNode (0xa6) - · BridgeApplicationCommand (0xa8) - · SendDataBridge (0xa9) - · SendDataMulticastBridge (0xab) - · GetLibrary (0xbd) - · SendTestFrame (0xbe) - · GetProtocolStatus (0xbf) - · StartWatchdog (0xd2) - · StopWatchdog (0xd3) - · SetMaximumRoutingAttempts (0xd4) - · SetMaxSmartStartInclusionRequestInterval (0xd6) - · undefined (0xd7) - · undefined (0xd8) - · Shutdown (0xd9) - · GetLongRangeNodes (0xda) - · GetLongRangeChannel (0xdb) - · SetLongRangeChannel (0xdc) - · SetLongRangeShadowNodeIDs (0xdd) - · Proprietary_DE (0xde) - · Proprietary_DF (0xdf) - · Proprietary_E7 (0xe7) - · Proprietary_E8 (0xe8) -2024-09-06T10:59:19.819Z CNTRLR querying additional controller information... -2024-09-06T10:59:19.820Z SERIAL » 0x01030002fe (5 bytes) -2024-09-06T10:59:19.821Z DRIVER » [REQ] [GetSerialApiInitData] -2024-09-06T10:59:19.823Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:19.827Z SERIAL « 0x012501020a001d010000000000000000000000000000000000000000000000000 (39 bytes) - 00000000800c7 -2024-09-06T10:59:19.828Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:19.828Z DRIVER « [RES] [GetSerialApiInitData] - payload: 0x0a001d01000000000000000000000000000000000000000000000000000000000 - 800 -2024-09-06T10:59:19.829Z CNTRLR received additional controller information: - Z-Wave API version: 1 (official) - Z-Wave chip type: EFR32ZG23 / ZGM230S - node type Controller - controller role: primary - controller is the SIS: false - controller supports timers: false - Z-Wave Classic nodes: 1 -2024-09-06T10:59:19.829Z CNTRLR querying version info... -2024-09-06T10:59:19.830Z SERIAL » 0x01030015e9 (5 bytes) -2024-09-06T10:59:19.830Z DRIVER » [REQ] [GetControllerVersion] -2024-09-06T10:59:19.833Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:19.834Z SERIAL « 0x011001155a2d5761766520372e3231000794 (18 bytes) -2024-09-06T10:59:19.835Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:19.835Z DRIVER « [RES] [GetControllerVersion] - payload: 0x5a2d5761766520372e32310007 -2024-09-06T10:59:19.836Z CNTRLR received version info: - controller type: Bridge Controller - library version: Z-Wave 7.21 -2024-09-06T10:59:19.836Z CNTRLR querying protocol version info... -2024-09-06T10:59:19.837Z SERIAL » 0x01030009f5 (5 bytes) -2024-09-06T10:59:19.838Z DRIVER » [REQ] [GetProtocolVersion] -2024-09-06T10:59:19.842Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:19.843Z SERIAL « 0x011901090007150300f4353162666237323665306662383733380f (27 bytes) -2024-09-06T10:59:19.843Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:19.844Z DRIVER « [RES] [GetProtocolVersion] - payload: 0x0007150300f435316266623732366530666238373338 -2024-09-06T10:59:19.844Z CNTRLR received protocol version info: - protocol type: Z-Wave - protocol version: 7.21.3 - appl. framework build no.: 244 - git commit hash: 35316266623732366530666238373338 -2024-09-06T10:59:19.845Z CNTRLR querying controller capabilities... -2024-09-06T10:59:19.845Z SERIAL » 0x01030005f9 (5 bytes) -2024-09-06T10:59:19.846Z DRIVER » [REQ] [GetControllerCapabilities] -2024-09-06T10:59:19.848Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:19.849Z SERIAL « 0x0104010528d7 (6 bytes) -2024-09-06T10:59:19.850Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:19.850Z DRIVER « [RES] [GetControllerCapabilities] - payload: 0x28 -2024-09-06T10:59:19.851Z CNTRLR received controller capabilities: - controller role: Primary - is the SUC: false - started this network: true - SIS is present: false - was real primary: true -2024-09-06T10:59:19.851Z CNTRLR querying serial API setup capabilities... -2024-09-06T10:59:19.852Z SERIAL » 0x0104000b01f1 (6 bytes) -2024-09-06T10:59:19.852Z DRIVER » [REQ] [SerialAPISetup] - command: GetSupportedCommands - payload: 0x01 -2024-09-06T10:59:19.854Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:19.857Z SERIAL « 0x0116010b01ff9f8007800000008000000000000000800085 (24 bytes) -2024-09-06T10:59:19.857Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:19.858Z DRIVER « [RES] [SerialAPISetup] - command: GetSupportedCommands - payload: 0xff9f80078000000080000000000000008000 -2024-09-06T10:59:19.858Z CNTRLR supported serial API setup commands: - · GetSupportedCommands - · SetTxStatusReport - · SetLongRangeMaximumTxPower - · SetPowerlevel - · GetLongRangeMaximumTxPower - · GetPowerlevel - · GetMaximumPayloadSize - · GetLongRangeMaximumPayloadSize - · SetPowerlevel16Bit - · GetPowerlevel16Bit - · GetRFRegion - · SetRFRegion - · SetNodeIDType -2024-09-06T10:59:19.858Z CNTRLR querying max. payload size... -2024-09-06T10:59:19.859Z SERIAL » 0x0104000b10e0 (6 bytes) -2024-09-06T10:59:19.859Z DRIVER » [REQ] [SerialAPISetup] - command: GetMaximumPayloadSize - payload: 0x10 -2024-09-06T10:59:19.863Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:19.863Z SERIAL « 0x0105010b102ece (7 bytes) -2024-09-06T10:59:19.864Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:19.864Z DRIVER « [RES] [SerialAPISetup] - command: GetMaximumPayloadSize - maximum payload size: 46 bytes -2024-09-06T10:59:19.865Z CNTRLR maximum payload size: 46 bytes -2024-09-06T10:59:19.865Z CNTRLR supported Z-Wave features: - · SmartStart -2024-09-06T10:59:19.865Z CNTRLR Querying configured RF region... -2024-09-06T10:59:19.866Z SERIAL » 0x0104000b20d0 (6 bytes) -2024-09-06T10:59:19.866Z DRIVER » [REQ] [SerialAPISetup] - command: GetRFRegion - payload: 0x20 -2024-09-06T10:59:19.869Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:19.870Z SERIAL « 0x0105010b2000d0 (7 bytes) -2024-09-06T10:59:19.870Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:19.871Z DRIVER « [RES] [SerialAPISetup] - command: GetRFRegion - region: Europe -2024-09-06T10:59:19.872Z CNTRLR The controller is using RF region Europe -2024-09-06T10:59:19.872Z CNTRLR Querying configured max. Long Range powerlevel... -2024-09-06T10:59:19.872Z SERIAL » 0x0104000b05f5 (6 bytes) -2024-09-06T10:59:19.873Z DRIVER » [REQ] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - payload: 0x05 -2024-09-06T10:59:19.875Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:19.876Z SERIAL « 0x0106010b05008c7a (8 bytes) -2024-09-06T10:59:19.877Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:19.878Z DRIVER « [RES] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - max. TX power (LR): 14.0 dBm -2024-09-06T10:59:19.878Z CNTRLR The max. LR powerlevel is 14.0 dBm -2024-09-06T10:59:19.878Z CNTRLR Querying configured Long Range channel information... -2024-09-06T10:59:19.879Z SERIAL » 0x010300db27 (5 bytes) -2024-09-06T10:59:19.879Z DRIVER » [REQ] [GetLongRangeChannel] -2024-09-06T10:59:19.881Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:19.882Z SERIAL « 0x010501db001030 (7 bytes) -2024-09-06T10:59:19.883Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:19.883Z DRIVER « [RES] [GetLongRangeChannel] - payload: 0x0010 -2024-09-06T10:59:19.884Z CNTRLR received Z-Wave Long Range channel information: - channel: Unsupported - supports auto channel selection: true -2024-09-06T10:59:19.884Z CNTRLR Performing soft reset... -2024-09-06T10:59:19.885Z SERIAL » 0x01030008f4 (5 bytes) -2024-09-06T10:59:19.885Z DRIVER » [REQ] [SoftReset] -2024-09-06T10:59:19.887Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:19.888Z CNTRLR Waiting for the controller to reconnect... -2024-09-06T10:59:19.889Z DRIVER all queues idle -2024-09-06T10:59:20.112Z SERIAL « 0x0112000a0700010100085e989f556c568f740025 (20 bytes) -2024-09-06T10:59:20.114Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:20.116Z DRIVER « [REQ] [SerialAPIStarted] - wake up reason: SoftwareReset - watchdog enabled: false - generic device class: 0x01 - specific device class: 0x00 - always listening: false - supports Long Range: false -2024-09-06T10:59:20.117Z CNTRLR reconnected and restarted -2024-09-06T10:59:20.117Z CNTRLR Starting hardware watchdog... -2024-09-06T10:59:20.118Z CNTRLR Switching serial API to 16-bit node IDs... -2024-09-06T10:59:20.120Z CNTRLR Switching serial API to 8-bit node IDs... -2024-09-06T10:59:20.121Z DRIVER all queues busy -2024-09-06T10:59:20.123Z SERIAL » 0x010300d22e (5 bytes) -2024-09-06T10:59:20.125Z DRIVER » [REQ] [StartWatchdog] -2024-09-06T10:59:20.128Z SERIAL » 0x0105000b800273 (7 bytes) -2024-09-06T10:59:20.128Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 16 bit -2024-09-06T10:59:20.130Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:20.131Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:20.132Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T10:59:20.133Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:20.134Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T10:59:20.134Z CNTRLR Switching to 16-bit node IDs successful -2024-09-06T10:59:20.135Z SERIAL » 0x0105000b800170 (7 bytes) -2024-09-06T10:59:20.135Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 8 bit -2024-09-06T10:59:20.138Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:20.139Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T10:59:20.140Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:20.141Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T10:59:20.141Z CNTRLR Switching to 8-bit node IDs successful -2024-09-06T10:59:20.142Z CNTRLR querying controller IDs... -2024-09-06T10:59:20.142Z SERIAL » 0x01030020dc (5 bytes) -2024-09-06T10:59:20.143Z DRIVER » [REQ] [GetControllerId] -2024-09-06T10:59:20.145Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:20.146Z SERIAL « 0x01080120cdaf1be0014e (10 bytes) -2024-09-06T10:59:20.147Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:20.147Z DRIVER « [RES] [GetControllerId] - home ID: 0xcdaf1be0 - own node ID: 1 -2024-09-06T10:59:20.148Z CNTRLR received controller IDs: - home ID: 0xcdaf1be0 - own node ID: 1 -2024-09-06T10:59:20.148Z CNTRLR Enabling TX status report... -2024-09-06T10:59:20.149Z SERIAL » 0x0105000b02ff0c (7 bytes) -2024-09-06T10:59:20.150Z DRIVER » [REQ] [SerialAPISetup] - command: SetTxStatusReport - enabled: true -2024-09-06T10:59:20.152Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:20.153Z SERIAL « 0x0105010b0201f3 (7 bytes) -2024-09-06T10:59:20.154Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:20.154Z DRIVER « [RES] [SerialAPISetup] - command: SetTxStatusReport - success: true -2024-09-06T10:59:20.155Z CNTRLR Enabling TX status report successful... -2024-09-06T10:59:20.155Z CNTRLR finding SUC... -2024-09-06T10:59:20.156Z SERIAL » 0x01030056aa (5 bytes) -2024-09-06T10:59:20.156Z DRIVER » [REQ] [GetSUCNodeId] -2024-09-06T10:59:20.159Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:20.160Z SERIAL « 0x0104015600ac (6 bytes) -2024-09-06T10:59:20.160Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:20.161Z DRIVER « [RES] [GetSUCNodeId] - payload: 0x00 -2024-09-06T10:59:20.161Z CNTRLR No SUC present in the network -2024-09-06T10:59:20.161Z CNTRLR There is no SUC/SIS in the network - promoting ourselves... -2024-09-06T10:59:20.162Z SERIAL » 0x01080054010125010285 (10 bytes) -2024-09-06T10:59:20.163Z DRIVER » [REQ] [SetSUCNodeId] - payload: 0x0101250102 -2024-09-06T10:59:20.166Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:20.168Z SERIAL « 0x0104015401af (6 bytes) -2024-09-06T10:59:20.168Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:20.169Z DRIVER « [RES] [SetSUCNodeId] - was executed: true -2024-09-06T10:59:20.170Z CNTRLR Promotion to SUC/SIS succeeded. -2024-09-06T10:59:20.170Z DRIVER all queues idle -2024-09-06T10:59:20.175Z CNTRLR [Node 001] [Manufacturer Specific] manufacturerId: metadata updated -2024-09-06T10:59:20.175Z CNTRLR [Node 001] [Manufacturer Specific] productType: metadata updated -2024-09-06T10:59:20.175Z CNTRLR [Node 001] [Manufacturer Specific] productId: metadata updated -2024-09-06T10:59:20.175Z CNTRLR [Node 001] [+] [Manufacturer Specific] manufacturerId: 634 -2024-09-06T10:59:20.176Z CNTRLR [Node 001] [+] [Manufacturer Specific] productType: 4 -2024-09-06T10:59:20.176Z CNTRLR [Node 001] [+] [Manufacturer Specific] productId: 1552 -2024-09-06T10:59:20.176Z CNTRLR [Node 001] [Version] firmwareVersions: metadata updated -2024-09-06T10:59:20.176Z CNTRLR [Node 001] [+] [Version] firmwareVersions: 1.30 -2024-09-06T10:59:20.176Z CNTRLR [Node 001] [Version] zWaveProtocolVersion: metadata updated -2024-09-06T10:59:20.176Z CNTRLR [Node 001] [+] [Version] zWaveProtocolVersion: "7.21.3" -2024-09-06T10:59:20.177Z CNTRLR [Node 001] [Version] sdkVersion: metadata updated -2024-09-06T10:59:20.177Z CNTRLR [Node 001] [+] [Version] sdkVersion: "7.21.3" -2024-09-06T10:59:20.177Z CNTRLR Interview completed -2024-09-06T10:59:20.177Z DRIVER Network key for S0 configured, enabling S0 security manager... -2024-09-06T10:59:20.178Z DRIVER At least one network key for S2 configured, enabling S2 security manager... -2024-09-06T10:59:20.178Z DRIVER At least one network key for Z-Wave Long Range configured, enabling security m - anager... -2024-09-06T10:59:20.179Z DRIVER driver ready -2024-09-06T10:59:24.799Z CNTRLR Starting inclusion process with strategy Default... -2024-09-06T10:59:24.801Z DRIVER all queues busy -2024-09-06T10:59:24.803Z SERIAL » 0x0105004ac10372 (7 bytes) -2024-09-06T10:59:24.805Z DRIVER » [REQ] [AddNodeToNetwork] - node type: Any - high power: true - network wide: true - callback id: 3 -2024-09-06T10:59:24.808Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:24.814Z SERIAL « 0x0107004a03010000b0 (9 bytes) -2024-09-06T10:59:24.815Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:24.817Z DRIVER « [REQ] [AddNodeToNetwork] - status: Ready - callback id: 3 -2024-09-06T10:59:24.818Z CNTRLR The controller is now ready to add nodes -2024-09-06T10:59:24.818Z DRIVER all queues idle -2024-09-06T10:59:28.855Z SERIAL « 0x0107004a03020000b3 (9 bytes) -2024-09-06T10:59:28.856Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:28.857Z DRIVER « [REQ] [AddNodeToNetwork] - status: NodeFound - callback id: 3 -2024-09-06T10:59:28.858Z DRIVER handling request AddNodeToNetwork (74) -2024-09-06T10:59:28.859Z DRIVER 1 handler registered! -2024-09-06T10:59:28.859Z DRIVER invoking handler #0 -2024-09-06T10:59:28.861Z CNTRLR handling add node request (status = NodeFound) -2024-09-06T10:59:28.960Z SERIAL « 0x0112004a0304020b0201005e989f556c568f7467 (20 bytes) -2024-09-06T10:59:28.961Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:28.963Z DRIVER « [REQ] [AddNodeToNetwork] - status: AddingController - callback id: 3 -2024-09-06T10:59:28.964Z DRIVER handling request AddNodeToNetwork (74) -2024-09-06T10:59:28.964Z DRIVER 1 handler registered! -2024-09-06T10:59:28.964Z DRIVER invoking handler #0 -2024-09-06T10:59:28.965Z CNTRLR handling add node request (status = AddingController) -2024-09-06T10:59:28.969Z DRIVER the message was handled -2024-09-06T10:59:29.378Z SERIAL « 0x0107004a03050200b6 (9 bytes) -2024-09-06T10:59:29.379Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:29.381Z DRIVER « [REQ] [AddNodeToNetwork] - status: ProtocolDone - callback id: 3 -2024-09-06T10:59:29.381Z DRIVER handling request AddNodeToNetwork (74) -2024-09-06T10:59:29.382Z DRIVER 1 handler registered! -2024-09-06T10:59:29.382Z DRIVER invoking handler #0 -2024-09-06T10:59:29.383Z CNTRLR handling add node request (status = ProtocolDone) -2024-09-06T10:59:29.383Z CNTRLR finishing inclusion process... -2024-09-06T10:59:29.385Z DRIVER all queues busy -2024-09-06T10:59:29.386Z SERIAL » 0x0105004ac50471 (7 bytes) -2024-09-06T10:59:29.388Z DRIVER » [REQ] [AddNodeToNetwork] - action: Stop - high power: true - network wide: true - callback id: 4 -2024-09-06T10:59:29.390Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:29.428Z SERIAL « 0x0107004a04060200b2 (9 bytes) -2024-09-06T10:59:29.428Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:29.429Z DRIVER « [REQ] [AddNodeToNetwork] - status: Done - callback id: 4 -2024-09-06T10:59:29.430Z SERIAL » 0x0105004ac50075 (7 bytes) -2024-09-06T10:59:29.430Z DRIVER » [REQ] [AddNodeToNetwork] - action: Stop - high power: true - network wide: true - callback id: 0 -2024-09-06T10:59:29.432Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:29.433Z CNTRLR The inclusion process was stopped -2024-09-06T10:59:29.434Z CNTRLR finished adding node 2: - basic device class: Static Controller - generic device class: Remote Controller - specific device class: Unused - supported CCs: - · Z-Wave Plus Info (0x5e) - · Security (0x98) - · Security 2 (0x9f) - · Transport Service (0x55) - · Supervision (0x6c) - · CRC-16 Encapsulation (0x56) - · Multi Command (0x8f) - · Inclusion Controller (0x74) - controlled CCs: -2024-09-06T10:59:29.434Z CNTRLR » [Node 002] Assigning SUC return route... -2024-09-06T10:59:29.434Z CNTRLR » [Node 002] Deleting SUC return route... -2024-09-06T10:59:29.435Z SERIAL » 0x010500550205a8 (7 bytes) -2024-09-06T10:59:29.436Z DRIVER » [Node 002] [REQ] [DeleteSUCReturnRoute] - payload: 0x0205 -2024-09-06T10:59:29.441Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:29.444Z SERIAL « 0x0104015501ae (6 bytes) -2024-09-06T10:59:29.445Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:29.446Z DRIVER « [RES] [DeleteSUCReturnRoute] - was executed: true -2024-09-06T10:59:29.510Z SERIAL « 0x01210055050000000000000000000000000000000000000000000000000000000 (35 bytes) - 0008e -2024-09-06T10:59:29.510Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:29.511Z DRIVER « [REQ] [DeleteSUCReturnRoute] - callback id: 5 - transmit status: OK -2024-09-06T10:59:29.513Z SERIAL » 0x010500510206af (7 bytes) -2024-09-06T10:59:29.514Z DRIVER » [Node 002] [REQ] [AssignSUCReturnRoute] - payload: 0x0206 -2024-09-06T10:59:29.516Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:29.523Z SERIAL « 0x0104015101aa (6 bytes) -2024-09-06T10:59:29.524Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:29.525Z DRIVER « [RES] [AssignSUCReturnRoute] - was executed: true -2024-09-06T10:59:29.596Z SERIAL « 0x01210051060000000000000000000000000000000000000000000000000000000 (35 bytes) - 00089 -2024-09-06T10:59:29.598Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:29.600Z DRIVER « [REQ] [AssignSUCReturnRoute] - callback id: 6 - transmit status: OK -2024-09-06T10:59:29.607Z SERIAL » 0x010e00a90102029f04250000000007e0 (16 bytes) -2024-09-06T10:59:29.608Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x25 - │ callback id: 7 - └─[Security2CCKEXGet] -2024-09-06T10:59:29.612Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:29.618Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T10:59:29.619Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:29.621Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T10:59:31.519Z SERIAL « 0x011d00a90700000100e07f7f7f7f00000300000000030100007f7f7f7f7fd3 (31 bytes) -2024-09-06T10:59:31.520Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:31.520Z SERIAL « 0x011d00a90700000100e07f7f7f7f00000300000000030100007f7f7f7f7fd3 (31 bytes) -2024-09-06T10:59:31.521Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:31.522Z DRIVER « [REQ] [SendDataBridge] - callback id: 7 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -32 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T10:59:31.523Z DRIVER « [REQ] [SendDataBridge] - callback id: 7 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -32 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T10:59:31.524Z DRIVER handling request SendDataBridge (169) -2024-09-06T10:59:31.524Z DRIVER no handlers registered! -2024-09-06T10:59:31.528Z SERIAL « 0x010f00a8000102069f050002018700e0a3 (17 bytes) -2024-09-06T10:59:31.528Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:31.529Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -32 dBm - └─[Security2CCKEXReport] - echo: false - supported schemes: - · KEXScheme1 - supported ECDH profiles: - · Curve25519 - CSA requested: false - requested security classes: - · S2_Unauthenticated - · S2_Authenticated - · S2_AccessControl - · S0_Legacy -2024-09-06T10:59:31.531Z SERIAL » 0x011200a90102069f060002018725000000000871 (20 bytes) -2024-09-06T10:59:31.531Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x25 - │ callback id: 8 - └─[Security2CCKEXSet] - echo: false - selected scheme: KEXScheme1 - selected ECDH profile: Curve25519 - CSA permitted: false - granted security classes: - · S2_Unauthenticated - · S2_Authenticated - · S2_AccessControl - · S0_Legacy -2024-09-06T10:59:31.538Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:31.541Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T10:59:31.542Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:31.542Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T10:59:31.560Z SERIAL « 0x011d00a90800000100e07f7f7f7f00000300000000030100007f7f7f7f7fdc (31 bytes) -2024-09-06T10:59:31.560Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:31.561Z DRIVER « [REQ] [SendDataBridge] - callback id: 8 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -32 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T10:59:31.562Z DRIVER all queues idle -2024-09-06T10:59:31.585Z SERIAL « 0x012c00a8000102239f08000000e5c77047befd9186c3e9b149d76b6a24478fb3b (46 bytes) - f6edfcf07a45dd684715d00e077 -2024-09-06T10:59:31.586Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:31.587Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -32 dBm - └─[Security2CCPublicKeyReport] - is including node: false - public key: 0x0000e5c77047befd9186c3e9b149d76b6a24478fb3bf6edfcf07a - 45dd684715d -2024-09-06T10:59:31.588Z DRIVER all queues busy -2024-09-06T10:59:31.588Z SERIAL » 0x012f00a90102239f08017c2906e00e061e3f6f7d227f5b1db140bafac28e9d1bc (49 bytes) - f98beec29253f53703b25000000000925 -2024-09-06T10:59:31.589Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x25 - │ callback id: 9 - └─[Security2CCPublicKeyReport] - is including node: true - public key: 0x7c2906e00e061e3f6f7d227f5b1db140bafac28e9d1bcf98beec2 - 9253f53703b -2024-09-06T10:59:31.598Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:31.604Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T10:59:31.605Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:31.605Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T10:59:31.626Z SERIAL « 0x011d00a90900000200e07f7f7f7f00000300000000030100007f7f7f7f7fde (31 bytes) -2024-09-06T10:59:31.627Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:31.627Z DRIVER « [REQ] [SendDataBridge] - callback id: 9 - transmit status: OK, took 20 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -32 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T10:59:31.628Z DRIVER all queues idle -2024-09-06T10:59:31.644Z SERIAL « 0x010c00a8000102039f012500e000 (14 bytes) -2024-09-06T10:59:31.645Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:31.646Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -32 dBm - └─[Security2CCNonceGet] - sequence number: 37 -2024-09-06T10:59:31.648Z DRIVER all queues busy -2024-09-06T10:59:31.649Z SERIAL » 0x012000a90102149f024d01716f34f4e50e84f9ebcaefe9ccc5957c05000000000 (34 bytes) - a30 -2024-09-06T10:59:31.649Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x05 - │ callback id: 10 - └─[Security2CCNonceReport] - sequence number: 77 - SOS: true - MOS: false - receiver entropy: 0x716f34f4e50e84f9ebcaefe9ccc5957c -2024-09-06T10:59:31.655Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:31.662Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T10:59:31.663Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:31.663Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T10:59:31.678Z SERIAL « 0x011d00a90a00000100e07f7f7f7f00000300000000030100007f7f7f7f7fde (31 bytes) -2024-09-06T10:59:31.679Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:31.680Z DRIVER « [REQ] [SendDataBridge] - callback id: 10 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -32 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T10:59:31.680Z DRIVER all queues idle -2024-09-06T10:59:31.707Z SERIAL « 0x012d00a8000102249f032601124195e514d76c422a4164b98ff1cdfc4fa56dc29 (47 bytes) - c878e6af217c099e380ecf700e04f -2024-09-06T10:59:31.710Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:31.711Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -32 dBm - └─[Security2CCMessageEncapsulation] [INVALID] - error: Security2CC_CannotDecode -2024-09-06T10:59:31.711Z CNTRLR « [Node 002] Ignoring KEXSet because the DSK has not been verified yet -2024-09-06T10:59:36.682Z DRIVER all queues busy -2024-09-06T10:59:36.685Z SERIAL » 0x0103003bc7 (5 bytes) -2024-09-06T10:59:36.687Z DRIVER » [REQ] [GetBackgroundRSSI] -2024-09-06T10:59:36.689Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:36.692Z SERIAL « 0x0107013b9593937f28 (9 bytes) -2024-09-06T10:59:36.693Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:36.694Z DRIVER « [RES] [GetBackgroundRSSI] - channel 0: -107 dBm - channel 1: -109 dBm - channel 2: -109 dBm - channel 3: N/A -2024-09-06T10:59:36.698Z DRIVER all queues idle -2024-09-06T10:59:41.805Z SERIAL « 0x011b00a8000102129f032700801ff10de6f6395905fa5a12d39500e0e4 (29 bytes) -2024-09-06T10:59:41.808Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:41.810Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -32 dBm - └─[Security2CCMessageEncapsulation] [INVALID] - error: Security2CC_NoSPAN -2024-09-06T10:59:41.811Z CNTRLR « [Node 002] Ignoring KEXSet because the DSK has not been verified yet -2024-09-06T10:59:51.877Z SERIAL « 0x011b00a8000102129f03280062143123038d8f0b1e8dac5787c800df7f (29 bytes) -2024-09-06T10:59:51.878Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:51.879Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -33 dBm - └─[Security2CCMessageEncapsulation] [INVALID] - error: Security2CC_NoSPAN -2024-09-06T10:59:51.880Z CNTRLR « [Node 002] Ignoring KEXSet because the DSK has not been verified yet -2024-09-06T11:00:01.940Z SERIAL « 0x011b00a8000102129f0329007b1f11dcdb069cd1958ecb16ed5300e049 (29 bytes) -2024-09-06T11:00:01.941Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:01.941Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -32 dBm - └─[Security2CCMessageEncapsulation] [INVALID] - error: Security2CC_NoSPAN -2024-09-06T11:00:01.942Z CNTRLR « [Node 002] Ignoring KEXSet because the DSK has not been verified yet -2024-09-06T11:00:06.683Z DRIVER all queues busy -2024-09-06T11:00:06.685Z SERIAL » 0x0103003bc7 (5 bytes) -2024-09-06T11:00:06.687Z DRIVER » [REQ] [GetBackgroundRSSI] -2024-09-06T11:00:06.690Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:06.692Z SERIAL « 0x0107013b9693937f2b (9 bytes) -2024-09-06T11:00:06.692Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:06.693Z DRIVER « [RES] [GetBackgroundRSSI] - channel 0: -106 dBm - channel 1: -109 dBm - channel 2: -109 dBm - channel 3: N/A -2024-09-06T11:00:06.694Z DRIVER all queues idle -2024-09-06T11:00:13.678Z DRIVER ███████╗ ██╗ ██╗ █████╗ ██╗ ██╗ ███████╗ ██╗ ███████╗ - ╚══███╔╝ ██║ ██║ ██╔══██╗ ██║ ██║ ██╔════╝ ██║ ██╔════╝ - ███╔╝ █████╗ ██║ █╗ ██║ ███████║ ██║ ██║ █████╗ ██║ ███████╗ - ███╔╝ ╚════╝ ██║███╗██║ ██╔══██║ ╚██╗ ██╔╝ ██╔══╝ ██ ██║ ╚════██║ - ███████╗ ╚███╔███╔╝ ██║ ██║ ╚████╔╝ ███████╗ ╚█████╔╝ ███████║ - ╚══════╝ ╚══╝╚══╝ ╚═╝ ╚═╝ ╚═══╝ ╚══════╝ ╚════╝ ╚══════╝ -2024-09-06T11:00:13.680Z DRIVER version 13.2.0 -2024-09-06T11:00:13.680Z DRIVER -2024-09-06T11:00:13.680Z DRIVER starting driver... -2024-09-06T11:00:13.681Z DRIVER opening serial port /dev/serial/by-id/usb-Zooz_800_Z-Wave_Stick_533D004242-if0 - 0 -2024-09-06T11:00:13.689Z DRIVER serial port opened -2024-09-06T11:00:13.690Z SERIAL » 0x15 (1 bytes) -2024-09-06T11:00:14.695Z DRIVER loading configuration... -2024-09-06T11:00:14.701Z CONFIG version 13.2.0 -2024-09-06T11:00:15.022Z DRIVER beginning interview... -2024-09-06T11:00:15.023Z DRIVER added request handler for AddNodeToNetwork (0x4a)... - 1 registered -2024-09-06T11:00:15.023Z DRIVER added request handler for RemoveNodeFromNetwork (0x4b)... - 1 registered -2024-09-06T11:00:15.024Z DRIVER added request handler for ReplaceFailedNode (0x63)... - 1 registered -2024-09-06T11:00:15.024Z DRIVER added request handler for SetLearnMode (0x50)... - 1 registered -2024-09-06T11:00:15.024Z CNTRLR querying Serial API capabilities... -2024-09-06T11:00:15.033Z SERIAL » 0x01030007fb (5 bytes) -2024-09-06T11:00:15.034Z DRIVER » [REQ] [GetSerialApiCapabilities] -2024-09-06T11:00:15.037Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:15.044Z SERIAL « 0x012b0107011e027a00040610f6873e88cf2bc04ffbd7fde09700008000808680b (45 bytes) - a0500700000ee7fc000000035 -2024-09-06T11:00:15.045Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:15.046Z DRIVER « [RES] [GetSerialApiCapabilities] - payload: 0x011e027a00040610f6873e88cf2bc04ffbd7fde09700008000808680ba0500700 - 000ee7fc0000000 -2024-09-06T11:00:15.048Z CNTRLR received API capabilities: - firmware version: 1.30 - manufacturer ID: 0x027a - product type: 0x04 - product ID: 0x0610 - supported functions: - · GetSerialApiInitData (0x02) - · SetApplicationNodeInformation (0x03) - · GetControllerCapabilities (0x05) - · SetSerialApiTimeouts (0x06) - · GetSerialApiCapabilities (0x07) - · SoftReset (0x08) - · GetProtocolVersion (0x09) - · SerialAPIStarted (0x0a) - · SerialAPISetup (0x0b) - · SetRFReceiveMode (0x10) - · SendNodeInformation (0x12) - · SendData (0x13) - · SendDataMulticast (0x14) - · GetControllerVersion (0x15) - · SendDataAbort (0x16) - · FUNC_ID_ZW_GET_RANDOM (0x1c) - · GetControllerId (0x20) - · UNKNOWN_FUNC_MEMORY_GET_BYTE (0x21) - · UNKNOWN_FUNC_MEMORY_PUT_BYTE (0x22) - · UNKNOWN_FUNC_MEMORY_GET_BUFFER (0x23) - · UNKNOWN_FUNC_MEMORY_PUT_BUFFER (0x24) - · EnterBootloader (0x27) - · UNKNOWN_FUNC_UNKNOWN_0x28 (0x28) - · GetNVMId (0x29) - · ExtNVMReadLongBuffer (0x2a) - · ExtNVMReadLongByte (0x2c) - · NVMOperations (0x2e) - · ClearTxTimers (0x37) - · GetTxTimers (0x38) - · ClearNetworkStats (0x39) - · GetNetworkStats (0x3a) - · GetBackgroundRSSI (0x3b) - · SetListenBeforeTalkThreshold (0x3c) - · RemoveSpecificNodeIdFromNetwork (0x3f) - · GetNodeProtocolInfo (0x41) - · HardReset (0x42) - · FUNC_ID_ZW_REPLICATION_COMMAND_COMPLETE (0x44) - · FUNC_ID_ZW_REPLICATION_SEND_DATA (0x45) - · AssignReturnRoute (0x46) - · DeleteReturnRoute (0x47) - · RequestNodeNeighborUpdate (0x48) - · ApplicationUpdateRequest (0x49) - · AddNodeToNetwork (0x4a) - · RemoveNodeFromNetwork (0x4b) - · AddPrimaryController (0x4d) - · AssignPriorityReturnRoute (0x4f) - · SetLearnMode (0x50) - · AssignSUCReturnRoute (0x51) - · RequestNetworkUpdate (0x53) - · SetSUCNodeId (0x54) - · DeleteSUCReturnRoute (0x55) - · GetSUCNodeId (0x56) - · SendSUCNodeId (0x57) - · AssignPrioritySUCReturnRoute (0x58) - · ExploreRequestInclusion (0x5e) - · ExploreRequestExclusion (0x5f) - · RequestNodeInfo (0x60) - · RemoveFailedNode (0x61) - · IsFailedNode (0x62) - · ReplaceFailedNode (0x63) - · undefined (0x65) - · RequestProtocolCCEncryption (0x68) - · GetRoutingInfo (0x80) - · LockUnlockLastRoute (0x90) - · GetPriorityRoute (0x92) - · SetPriorityRoute (0x93) - · UNKNOWN_FUNC_UNKNOWN_0x98 (0x98) - · VirtualNodeSetNodeInfo (0xa0) - · VirtualNodeSendNodeInfo (0xa2) - · VirtualNodeSetLearnMode (0xa4) - · GetVirtualNodes (0xa5) - · IsVirtualNode (0xa6) - · BridgeApplicationCommand (0xa8) - · SendDataBridge (0xa9) - · SendDataMulticastBridge (0xab) - · GetLibrary (0xbd) - · SendTestFrame (0xbe) - · GetProtocolStatus (0xbf) - · StartWatchdog (0xd2) - · StopWatchdog (0xd3) - · SetMaximumRoutingAttempts (0xd4) - · SetMaxSmartStartInclusionRequestInterval (0xd6) - · undefined (0xd7) - · undefined (0xd8) - · Shutdown (0xd9) - · GetLongRangeNodes (0xda) - · GetLongRangeChannel (0xdb) - · SetLongRangeChannel (0xdc) - · SetLongRangeShadowNodeIDs (0xdd) - · Proprietary_DE (0xde) - · Proprietary_DF (0xdf) - · Proprietary_E7 (0xe7) - · Proprietary_E8 (0xe8) -2024-09-06T11:00:15.048Z CNTRLR querying additional controller information... -2024-09-06T11:00:15.049Z SERIAL » 0x01030002fe (5 bytes) -2024-09-06T11:00:15.050Z DRIVER » [REQ] [GetSerialApiInitData] -2024-09-06T11:00:15.062Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:15.064Z SERIAL « 0x012501020a081d030000000000000000000000000000000000000000000000000 (39 bytes) - 00000000800cd -2024-09-06T11:00:15.065Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:15.065Z DRIVER « [RES] [GetSerialApiInitData] - payload: 0x0a081d03000000000000000000000000000000000000000000000000000000000 - 800 -2024-09-06T11:00:15.066Z CNTRLR received additional controller information: - Z-Wave API version: 1 (official) - Z-Wave chip type: EFR32ZG23 / ZGM230S - node type Controller - controller role: primary - controller is the SIS: true - controller supports timers: false - Z-Wave Classic nodes: 1, 2 -2024-09-06T11:00:15.066Z CNTRLR querying version info... -2024-09-06T11:00:15.067Z SERIAL » 0x01030015e9 (5 bytes) -2024-09-06T11:00:15.068Z DRIVER » [REQ] [GetControllerVersion] -2024-09-06T11:00:15.073Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:15.074Z SERIAL « 0x011001155a2d5761766520372e3231000794 (18 bytes) -2024-09-06T11:00:15.075Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:15.076Z DRIVER « [RES] [GetControllerVersion] - payload: 0x5a2d5761766520372e32310007 -2024-09-06T11:00:15.076Z CNTRLR received version info: - controller type: Bridge Controller - library version: Z-Wave 7.21 -2024-09-06T11:00:15.077Z CNTRLR querying protocol version info... -2024-09-06T11:00:15.078Z SERIAL » 0x01030009f5 (5 bytes) -2024-09-06T11:00:15.078Z DRIVER » [REQ] [GetProtocolVersion] -2024-09-06T11:00:15.083Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:15.084Z SERIAL « 0x011901090007150300f4353162666237323665306662383733380f (27 bytes) -2024-09-06T11:00:15.084Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:15.085Z DRIVER « [RES] [GetProtocolVersion] - payload: 0x0007150300f435316266623732366530666238373338 -2024-09-06T11:00:15.086Z CNTRLR received protocol version info: - protocol type: Z-Wave - protocol version: 7.21.3 - appl. framework build no.: 244 - git commit hash: 35316266623732366530666238373338 -2024-09-06T11:00:15.086Z CNTRLR querying controller capabilities... -2024-09-06T11:00:15.088Z SERIAL » 0x01030005f9 (5 bytes) -2024-09-06T11:00:15.088Z DRIVER » [REQ] [GetControllerCapabilities] -2024-09-06T11:00:15.093Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:15.093Z SERIAL « 0x010401051ce3 (6 bytes) -2024-09-06T11:00:15.094Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:15.095Z DRIVER « [RES] [GetControllerCapabilities] - payload: 0x1c -2024-09-06T11:00:15.096Z CNTRLR received controller capabilities: - controller role: Primary - is the SUC: true - started this network: true - SIS is present: true - was real primary: true -2024-09-06T11:00:15.096Z CNTRLR querying serial API setup capabilities... -2024-09-06T11:00:15.097Z SERIAL » 0x0104000b01f1 (6 bytes) -2024-09-06T11:00:15.098Z DRIVER » [REQ] [SerialAPISetup] - command: GetSupportedCommands - payload: 0x01 -2024-09-06T11:00:15.103Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:15.103Z SERIAL « 0x0116010b01ff9f8007800000008000000000000000800085 (24 bytes) -2024-09-06T11:00:15.104Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:15.105Z DRIVER « [RES] [SerialAPISetup] - command: GetSupportedCommands - payload: 0xff9f80078000000080000000000000008000 -2024-09-06T11:00:15.106Z CNTRLR supported serial API setup commands: - · GetSupportedCommands - · SetTxStatusReport - · SetLongRangeMaximumTxPower - · SetPowerlevel - · GetLongRangeMaximumTxPower - · GetPowerlevel - · GetMaximumPayloadSize - · GetLongRangeMaximumPayloadSize - · SetPowerlevel16Bit - · GetPowerlevel16Bit - · GetRFRegion - · SetRFRegion - · SetNodeIDType -2024-09-06T11:00:15.106Z CNTRLR querying max. payload size... -2024-09-06T11:00:15.107Z SERIAL » 0x0104000b10e0 (6 bytes) -2024-09-06T11:00:15.107Z DRIVER » [REQ] [SerialAPISetup] - command: GetMaximumPayloadSize - payload: 0x10 -2024-09-06T11:00:15.112Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:15.113Z SERIAL « 0x0105010b102ece (7 bytes) -2024-09-06T11:00:15.113Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:15.114Z DRIVER « [RES] [SerialAPISetup] - command: GetMaximumPayloadSize - maximum payload size: 46 bytes -2024-09-06T11:00:15.114Z CNTRLR maximum payload size: 46 bytes -2024-09-06T11:00:15.115Z CNTRLR supported Z-Wave features: - · SmartStart -2024-09-06T11:00:15.115Z CNTRLR Querying configured RF region... -2024-09-06T11:00:15.116Z SERIAL » 0x0104000b20d0 (6 bytes) -2024-09-06T11:00:15.117Z DRIVER » [REQ] [SerialAPISetup] - command: GetRFRegion - payload: 0x20 -2024-09-06T11:00:15.122Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:15.122Z SERIAL « 0x0105010b2000d0 (7 bytes) -2024-09-06T11:00:15.123Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:15.123Z DRIVER « [RES] [SerialAPISetup] - command: GetRFRegion - region: Europe -2024-09-06T11:00:15.124Z CNTRLR The controller is using RF region Europe -2024-09-06T11:00:15.124Z CNTRLR Querying configured max. Long Range powerlevel... -2024-09-06T11:00:15.125Z SERIAL » 0x0104000b05f5 (6 bytes) -2024-09-06T11:00:15.126Z DRIVER » [REQ] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - payload: 0x05 -2024-09-06T11:00:15.130Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:15.131Z SERIAL « 0x0106010b05008c7a (8 bytes) -2024-09-06T11:00:15.131Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:15.132Z DRIVER « [RES] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - max. TX power (LR): 14.0 dBm -2024-09-06T11:00:15.133Z CNTRLR The max. LR powerlevel is 14.0 dBm -2024-09-06T11:00:15.133Z CNTRLR Querying configured Long Range channel information... -2024-09-06T11:00:15.134Z SERIAL » 0x010300db27 (5 bytes) -2024-09-06T11:00:15.134Z DRIVER » [REQ] [GetLongRangeChannel] -2024-09-06T11:00:15.139Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:15.139Z SERIAL « 0x010501db001030 (7 bytes) -2024-09-06T11:00:15.139Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:15.140Z DRIVER « [RES] [GetLongRangeChannel] - payload: 0x0010 -2024-09-06T11:00:15.141Z CNTRLR received Z-Wave Long Range channel information: - channel: Unsupported - supports auto channel selection: true -2024-09-06T11:00:15.141Z CNTRLR Performing soft reset... -2024-09-06T11:00:15.142Z SERIAL » 0x01030008f4 (5 bytes) -2024-09-06T11:00:15.143Z DRIVER » [REQ] [SoftReset] -2024-09-06T11:00:15.148Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:15.149Z CNTRLR Waiting for the controller to reconnect... -2024-09-06T11:00:15.150Z DRIVER all queues idle -2024-09-06T11:00:15.373Z SERIAL « 0x0112000a0700010100085e989f556c568f740025 (20 bytes) -2024-09-06T11:00:15.374Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:15.374Z DRIVER « [REQ] [SerialAPIStarted] - wake up reason: SoftwareReset - watchdog enabled: false - generic device class: 0x01 - specific device class: 0x00 - always listening: false - supports Long Range: false -2024-09-06T11:00:15.375Z CNTRLR reconnected and restarted -2024-09-06T11:00:15.375Z CNTRLR Starting hardware watchdog... -2024-09-06T11:00:15.376Z CNTRLR Switching serial API to 16-bit node IDs... -2024-09-06T11:00:15.376Z CNTRLR Switching serial API to 8-bit node IDs... -2024-09-06T11:00:15.377Z DRIVER all queues busy -2024-09-06T11:00:15.377Z SERIAL » 0x010300d22e (5 bytes) -2024-09-06T11:00:15.378Z DRIVER » [REQ] [StartWatchdog] -2024-09-06T11:00:15.379Z SERIAL » 0x0105000b800273 (7 bytes) -2024-09-06T11:00:15.380Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 16 bit -2024-09-06T11:00:15.383Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:15.384Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:15.387Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T11:00:15.388Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:15.389Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T11:00:15.390Z CNTRLR Switching to 16-bit node IDs successful -2024-09-06T11:00:15.391Z SERIAL » 0x0105000b800170 (7 bytes) -2024-09-06T11:00:15.392Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 8 bit -2024-09-06T11:00:15.394Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:15.395Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T11:00:15.396Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:15.397Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T11:00:15.398Z CNTRLR Switching to 8-bit node IDs successful -2024-09-06T11:00:15.398Z CNTRLR querying controller IDs... -2024-09-06T11:00:15.399Z SERIAL » 0x01030020dc (5 bytes) -2024-09-06T11:00:15.400Z DRIVER » [REQ] [GetControllerId] -2024-09-06T11:00:15.406Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:15.407Z SERIAL « 0x01080120cdaf1be0014e (10 bytes) -2024-09-06T11:00:15.408Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:15.409Z DRIVER « [RES] [GetControllerId] - home ID: 0xcdaf1be0 - own node ID: 1 -2024-09-06T11:00:15.410Z CNTRLR received controller IDs: - home ID: 0xcdaf1be0 - own node ID: 1 -2024-09-06T11:00:15.410Z CNTRLR Enabling TX status report... -2024-09-06T11:00:15.411Z SERIAL » 0x0105000b02ff0c (7 bytes) -2024-09-06T11:00:15.412Z DRIVER » [REQ] [SerialAPISetup] - command: SetTxStatusReport - enabled: true -2024-09-06T11:00:15.415Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:15.416Z SERIAL « 0x0105010b0201f3 (7 bytes) -2024-09-06T11:00:15.416Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:15.417Z DRIVER « [RES] [SerialAPISetup] - command: SetTxStatusReport - success: true -2024-09-06T11:00:15.418Z CNTRLR Enabling TX status report successful... -2024-09-06T11:00:15.418Z CNTRLR finding SUC... -2024-09-06T11:00:15.419Z SERIAL » 0x01030056aa (5 bytes) -2024-09-06T11:00:15.419Z DRIVER » [REQ] [GetSUCNodeId] -2024-09-06T11:00:15.424Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:15.425Z SERIAL « 0x0104015601ad (6 bytes) -2024-09-06T11:00:15.426Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:15.427Z DRIVER « [RES] [GetSUCNodeId] - payload: 0x01 -2024-09-06T11:00:15.428Z CNTRLR This is the SUC -2024-09-06T11:00:15.429Z DRIVER all queues idle -2024-09-06T11:00:15.453Z DRIVER Cache file for homeId 0xcdaf1be0 found, attempting to restore the network from - cache... -2024-09-06T11:00:15.456Z CNTRLR [Node 001] Embedded device config loaded -2024-09-06T11:00:15.456Z DRIVER Restoring the network from cache was successful! -2024-09-06T11:00:15.457Z CNTRLR [Node 001] [Manufacturer Specific] manufacturerId: metadata updated -2024-09-06T11:00:15.457Z CNTRLR [Node 001] [Manufacturer Specific] productType: metadata updated -2024-09-06T11:00:15.457Z CNTRLR [Node 001] [Manufacturer Specific] productId: metadata updated -2024-09-06T11:00:15.458Z CNTRLR [Node 001] [~] [Manufacturer Specific] manufacturerId: 634 => 634 -2024-09-06T11:00:15.458Z CNTRLR [Node 001] [~] [Manufacturer Specific] productType: 4 => 4 -2024-09-06T11:00:15.458Z CNTRLR [Node 001] [~] [Manufacturer Specific] productId: 1552 => 1552 -2024-09-06T11:00:15.459Z CNTRLR [Node 001] [Version] firmwareVersions: metadata updated -2024-09-06T11:00:15.459Z CNTRLR [Node 001] [~] [Version] firmwareVersions: 1.30 => 1.30 -2024-09-06T11:00:15.459Z CNTRLR [Node 001] [Version] zWaveProtocolVersion: metadata updated -2024-09-06T11:00:15.460Z CNTRLR [Node 001] [~] [Version] zWaveProtocolVersion: "7.21.3" => "7.21.3" -2024-09-06T11:00:15.460Z CNTRLR [Node 001] [Version] sdkVersion: metadata updated -2024-09-06T11:00:15.460Z CNTRLR [Node 001] [~] [Version] sdkVersion: "7.21.3" => "7.21.3" -2024-09-06T11:00:15.461Z CNTRLR Interview completed -2024-09-06T11:00:15.461Z DRIVER Network key for S0 configured, enabling S0 security manager... -2024-09-06T11:00:15.462Z DRIVER At least one network key for S2 configured, enabling S2 security manager... -2024-09-06T11:00:15.463Z DRIVER At least one network key for Z-Wave Long Range configured, enabling security m - anager... -2024-09-06T11:00:15.464Z DRIVER driver ready -2024-09-06T11:00:16.466Z CNTRLR Updating the controller NIF... -2024-09-06T11:00:16.468Z DRIVER all queues busy -2024-09-06T11:00:16.471Z SERIAL » 0x010f0003010100085e989f556c568f7436 (17 bytes) -2024-09-06T11:00:16.472Z DRIVER » [REQ] [SetApplicationNodeInformation] - is listening: true - generic device class: 0x01 - specific device class: 0x00 - supported CCs: - · Z-Wave Plus Info - · Security - · Security 2 - · Transport Service - · Supervision - · CRC-16 Encapsulation - · Multi Command - · Inclusion Controller - controlled CCs: -2024-09-06T11:00:16.476Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:16.479Z CNTRLR performing hard reset... -2024-09-06T11:00:16.481Z SERIAL » 0x0104004201b8 (6 bytes) -2024-09-06T11:00:16.482Z DRIVER » [REQ] [HardReset] - callback id: 1 -2024-09-06T11:00:16.484Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:16.505Z SERIAL « 0x0104004201b8 (6 bytes) -2024-09-06T11:00:16.506Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:16.507Z DRIVER « [REQ] [HardReset] - callback id: 1 -2024-09-06T11:00:16.507Z CNTRLR hard reset succeeded -2024-09-06T11:00:16.508Z CNTRLR querying Serial API capabilities... -2024-09-06T11:00:16.509Z SERIAL » 0x01030007fb (5 bytes) -2024-09-06T11:00:16.509Z DRIVER » [REQ] [GetSerialApiCapabilities] -2024-09-06T11:00:16.511Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:16.515Z SERIAL « 0x012b0107011e027a00040610f6873e88cf2bc04ffbd7fde09700008000808680b (45 bytes) - a0500700000ee7fc000000035 -2024-09-06T11:00:16.516Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:16.517Z DRIVER « [RES] [GetSerialApiCapabilities] - payload: 0x011e027a00040610f6873e88cf2bc04ffbd7fde09700008000808680ba0500700 - 000ee7fc0000000 -2024-09-06T11:00:16.517Z CNTRLR received API capabilities: - firmware version: 1.30 - manufacturer ID: 0x027a - product type: 0x04 - product ID: 0x0610 - supported functions: - · GetSerialApiInitData (0x02) - · SetApplicationNodeInformation (0x03) - · GetControllerCapabilities (0x05) - · SetSerialApiTimeouts (0x06) - · GetSerialApiCapabilities (0x07) - · SoftReset (0x08) - · GetProtocolVersion (0x09) - · SerialAPIStarted (0x0a) - · SerialAPISetup (0x0b) - · SetRFReceiveMode (0x10) - · SendNodeInformation (0x12) - · SendData (0x13) - · SendDataMulticast (0x14) - · GetControllerVersion (0x15) - · SendDataAbort (0x16) - · FUNC_ID_ZW_GET_RANDOM (0x1c) - · GetControllerId (0x20) - · UNKNOWN_FUNC_MEMORY_GET_BYTE (0x21) - · UNKNOWN_FUNC_MEMORY_PUT_BYTE (0x22) - · UNKNOWN_FUNC_MEMORY_GET_BUFFER (0x23) - · UNKNOWN_FUNC_MEMORY_PUT_BUFFER (0x24) - · EnterBootloader (0x27) - · UNKNOWN_FUNC_UNKNOWN_0x28 (0x28) - · GetNVMId (0x29) - · ExtNVMReadLongBuffer (0x2a) - · ExtNVMReadLongByte (0x2c) - · NVMOperations (0x2e) - · ClearTxTimers (0x37) - · GetTxTimers (0x38) - · ClearNetworkStats (0x39) - · GetNetworkStats (0x3a) - · GetBackgroundRSSI (0x3b) - · SetListenBeforeTalkThreshold (0x3c) - · RemoveSpecificNodeIdFromNetwork (0x3f) - · GetNodeProtocolInfo (0x41) - · HardReset (0x42) - · FUNC_ID_ZW_REPLICATION_COMMAND_COMPLETE (0x44) - · FUNC_ID_ZW_REPLICATION_SEND_DATA (0x45) - · AssignReturnRoute (0x46) - · DeleteReturnRoute (0x47) - · RequestNodeNeighborUpdate (0x48) - · ApplicationUpdateRequest (0x49) - · AddNodeToNetwork (0x4a) - · RemoveNodeFromNetwork (0x4b) - · AddPrimaryController (0x4d) - · AssignPriorityReturnRoute (0x4f) - · SetLearnMode (0x50) - · AssignSUCReturnRoute (0x51) - · RequestNetworkUpdate (0x53) - · SetSUCNodeId (0x54) - · DeleteSUCReturnRoute (0x55) - · GetSUCNodeId (0x56) - · SendSUCNodeId (0x57) - · AssignPrioritySUCReturnRoute (0x58) - · ExploreRequestInclusion (0x5e) - · ExploreRequestExclusion (0x5f) - · RequestNodeInfo (0x60) - · RemoveFailedNode (0x61) - · IsFailedNode (0x62) - · ReplaceFailedNode (0x63) - · undefined (0x65) - · RequestProtocolCCEncryption (0x68) - · GetRoutingInfo (0x80) - · LockUnlockLastRoute (0x90) - · GetPriorityRoute (0x92) - · SetPriorityRoute (0x93) - · UNKNOWN_FUNC_UNKNOWN_0x98 (0x98) - · VirtualNodeSetNodeInfo (0xa0) - · VirtualNodeSendNodeInfo (0xa2) - · VirtualNodeSetLearnMode (0xa4) - · GetVirtualNodes (0xa5) - · IsVirtualNode (0xa6) - · BridgeApplicationCommand (0xa8) - · SendDataBridge (0xa9) - · SendDataMulticastBridge (0xab) - · GetLibrary (0xbd) - · SendTestFrame (0xbe) - · GetProtocolStatus (0xbf) - · StartWatchdog (0xd2) - · StopWatchdog (0xd3) - · SetMaximumRoutingAttempts (0xd4) - · SetMaxSmartStartInclusionRequestInterval (0xd6) - · undefined (0xd7) - · undefined (0xd8) - · Shutdown (0xd9) - · GetLongRangeNodes (0xda) - · GetLongRangeChannel (0xdb) - · SetLongRangeChannel (0xdc) - · SetLongRangeShadowNodeIDs (0xdd) - · Proprietary_DE (0xde) - · Proprietary_DF (0xdf) - · Proprietary_E7 (0xe7) - · Proprietary_E8 (0xe8) -2024-09-06T11:00:16.518Z CNTRLR querying additional controller information... -2024-09-06T11:00:16.518Z SERIAL » 0x01030002fe (5 bytes) -2024-09-06T11:00:16.519Z DRIVER » [REQ] [GetSerialApiInitData] -2024-09-06T11:00:16.521Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:16.526Z SERIAL « 0x012501020a001d010000000000000000000000000000000000000000000000000 (39 bytes) - 00000000800c7 -2024-09-06T11:00:16.527Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:16.527Z DRIVER « [RES] [GetSerialApiInitData] - payload: 0x0a001d01000000000000000000000000000000000000000000000000000000000 - 800 -2024-09-06T11:00:16.528Z CNTRLR received additional controller information: - Z-Wave API version: 1 (official) - Z-Wave chip type: EFR32ZG23 / ZGM230S - node type Controller - controller role: primary - controller is the SIS: false - controller supports timers: false - Z-Wave Classic nodes: 1 -2024-09-06T11:00:16.529Z CNTRLR querying version info... -2024-09-06T11:00:16.529Z SERIAL » 0x01030015e9 (5 bytes) -2024-09-06T11:00:16.530Z DRIVER » [REQ] [GetControllerVersion] -2024-09-06T11:00:16.532Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:16.534Z SERIAL « 0x011001155a2d5761766520372e3231000794 (18 bytes) -2024-09-06T11:00:16.535Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:16.535Z DRIVER « [RES] [GetControllerVersion] - payload: 0x5a2d5761766520372e32310007 -2024-09-06T11:00:16.536Z CNTRLR received version info: - controller type: Bridge Controller - library version: Z-Wave 7.21 -2024-09-06T11:00:16.536Z CNTRLR querying protocol version info... -2024-09-06T11:00:16.537Z SERIAL » 0x01030009f5 (5 bytes) -2024-09-06T11:00:16.537Z DRIVER » [REQ] [GetProtocolVersion] -2024-09-06T11:00:16.539Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:16.542Z SERIAL « 0x011901090007150300f4353162666237323665306662383733380f (27 bytes) -2024-09-06T11:00:16.542Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:16.543Z DRIVER « [RES] [GetProtocolVersion] - payload: 0x0007150300f435316266623732366530666238373338 -2024-09-06T11:00:16.544Z CNTRLR received protocol version info: - protocol type: Z-Wave - protocol version: 7.21.3 - appl. framework build no.: 244 - git commit hash: 35316266623732366530666238373338 -2024-09-06T11:00:16.544Z CNTRLR querying controller capabilities... -2024-09-06T11:00:16.545Z SERIAL » 0x01030005f9 (5 bytes) -2024-09-06T11:00:16.545Z DRIVER » [REQ] [GetControllerCapabilities] -2024-09-06T11:00:16.547Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:16.548Z SERIAL « 0x0104010528d7 (6 bytes) -2024-09-06T11:00:16.549Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:16.549Z DRIVER « [RES] [GetControllerCapabilities] - payload: 0x28 -2024-09-06T11:00:16.550Z CNTRLR received controller capabilities: - controller role: Primary - is the SUC: false - started this network: true - SIS is present: false - was real primary: true -2024-09-06T11:00:16.550Z CNTRLR querying serial API setup capabilities... -2024-09-06T11:00:16.551Z SERIAL » 0x0104000b01f1 (6 bytes) -2024-09-06T11:00:16.551Z DRIVER » [REQ] [SerialAPISetup] - command: GetSupportedCommands - payload: 0x01 -2024-09-06T11:00:16.554Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:16.556Z SERIAL « 0x0116010b01ff9f8007800000008000000000000000800085 (24 bytes) -2024-09-06T11:00:16.557Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:16.557Z DRIVER « [RES] [SerialAPISetup] - command: GetSupportedCommands - payload: 0xff9f80078000000080000000000000008000 -2024-09-06T11:00:16.558Z CNTRLR supported serial API setup commands: - · GetSupportedCommands - · SetTxStatusReport - · SetLongRangeMaximumTxPower - · SetPowerlevel - · GetLongRangeMaximumTxPower - · GetPowerlevel - · GetMaximumPayloadSize - · GetLongRangeMaximumPayloadSize - · SetPowerlevel16Bit - · GetPowerlevel16Bit - · GetRFRegion - · SetRFRegion - · SetNodeIDType -2024-09-06T11:00:16.558Z CNTRLR querying max. payload size... -2024-09-06T11:00:16.559Z SERIAL » 0x0104000b10e0 (6 bytes) -2024-09-06T11:00:16.560Z DRIVER » [REQ] [SerialAPISetup] - command: GetMaximumPayloadSize - payload: 0x10 -2024-09-06T11:00:16.562Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:16.563Z SERIAL « 0x0105010b102ece (7 bytes) -2024-09-06T11:00:16.563Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:16.564Z DRIVER « [RES] [SerialAPISetup] - command: GetMaximumPayloadSize - maximum payload size: 46 bytes -2024-09-06T11:00:16.565Z CNTRLR maximum payload size: 46 bytes -2024-09-06T11:00:16.565Z CNTRLR supported Z-Wave features: - · SmartStart -2024-09-06T11:00:16.565Z CNTRLR Querying configured RF region... -2024-09-06T11:00:16.566Z SERIAL » 0x0104000b20d0 (6 bytes) -2024-09-06T11:00:16.566Z DRIVER » [REQ] [SerialAPISetup] - command: GetRFRegion - payload: 0x20 -2024-09-06T11:00:16.568Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:16.569Z SERIAL « 0x0105010b2000d0 (7 bytes) -2024-09-06T11:00:16.570Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:16.570Z DRIVER « [RES] [SerialAPISetup] - command: GetRFRegion - region: Europe -2024-09-06T11:00:16.571Z CNTRLR The controller is using RF region Europe -2024-09-06T11:00:16.571Z CNTRLR Querying configured max. Long Range powerlevel... -2024-09-06T11:00:16.572Z SERIAL » 0x0104000b05f5 (6 bytes) -2024-09-06T11:00:16.572Z DRIVER » [REQ] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - payload: 0x05 -2024-09-06T11:00:16.574Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:16.576Z SERIAL « 0x0106010b05008c7a (8 bytes) -2024-09-06T11:00:16.576Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:16.577Z DRIVER « [RES] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - max. TX power (LR): 14.0 dBm -2024-09-06T11:00:16.578Z CNTRLR The max. LR powerlevel is 14.0 dBm -2024-09-06T11:00:16.578Z CNTRLR Querying configured Long Range channel information... -2024-09-06T11:00:16.579Z SERIAL » 0x010300db27 (5 bytes) -2024-09-06T11:00:16.579Z DRIVER » [REQ] [GetLongRangeChannel] -2024-09-06T11:00:16.581Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:16.582Z SERIAL « 0x010501db001030 (7 bytes) -2024-09-06T11:00:16.583Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:16.583Z DRIVER « [RES] [GetLongRangeChannel] - payload: 0x0010 -2024-09-06T11:00:16.584Z CNTRLR received Z-Wave Long Range channel information: - channel: Unsupported - supports auto channel selection: true -2024-09-06T11:00:16.584Z CNTRLR Performing soft reset... -2024-09-06T11:00:16.585Z SERIAL » 0x01030008f4 (5 bytes) -2024-09-06T11:00:16.585Z DRIVER » [REQ] [SoftReset] -2024-09-06T11:00:16.587Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:16.588Z CNTRLR Waiting for the controller to reconnect... -2024-09-06T11:00:16.588Z DRIVER all queues idle -2024-09-06T11:00:16.813Z SERIAL « 0x0112000a0700010100085e989f556c568f740025 (20 bytes) -2024-09-06T11:00:16.814Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:16.814Z DRIVER « [REQ] [SerialAPIStarted] - wake up reason: SoftwareReset - watchdog enabled: false - generic device class: 0x01 - specific device class: 0x00 - always listening: false - supports Long Range: false -2024-09-06T11:00:16.815Z CNTRLR reconnected and restarted -2024-09-06T11:00:16.815Z CNTRLR Starting hardware watchdog... -2024-09-06T11:00:16.815Z CNTRLR Switching serial API to 16-bit node IDs... -2024-09-06T11:00:16.816Z CNTRLR Switching serial API to 8-bit node IDs... -2024-09-06T11:00:16.816Z DRIVER all queues busy -2024-09-06T11:00:16.817Z SERIAL » 0x010300d22e (5 bytes) -2024-09-06T11:00:16.817Z DRIVER » [REQ] [StartWatchdog] -2024-09-06T11:00:16.818Z SERIAL » 0x0105000b800273 (7 bytes) -2024-09-06T11:00:16.818Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 16 bit -2024-09-06T11:00:16.819Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:16.821Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:16.822Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T11:00:16.823Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:16.823Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T11:00:16.824Z CNTRLR Switching to 16-bit node IDs successful -2024-09-06T11:00:16.824Z SERIAL » 0x0105000b800170 (7 bytes) -2024-09-06T11:00:16.825Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 8 bit -2024-09-06T11:00:16.827Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:16.829Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T11:00:16.829Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:16.830Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T11:00:16.830Z CNTRLR Switching to 8-bit node IDs successful -2024-09-06T11:00:16.831Z CNTRLR querying controller IDs... -2024-09-06T11:00:16.831Z SERIAL » 0x01030020dc (5 bytes) -2024-09-06T11:00:16.832Z DRIVER » [REQ] [GetControllerId] -2024-09-06T11:00:16.834Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:16.836Z SERIAL « 0x01080120d188a45e0174 (10 bytes) -2024-09-06T11:00:16.836Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:16.837Z DRIVER « [RES] [GetControllerId] - home ID: 0xd188a45e - own node ID: 1 -2024-09-06T11:00:16.837Z CNTRLR received controller IDs: - home ID: 0xd188a45e - own node ID: 1 -2024-09-06T11:00:16.837Z CNTRLR Enabling TX status report... -2024-09-06T11:00:16.838Z SERIAL » 0x0105000b02ff0c (7 bytes) -2024-09-06T11:00:16.839Z DRIVER » [REQ] [SerialAPISetup] - command: SetTxStatusReport - enabled: true -2024-09-06T11:00:16.842Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:16.842Z SERIAL « 0x0105010b0201f3 (7 bytes) -2024-09-06T11:00:16.843Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:16.843Z DRIVER « [RES] [SerialAPISetup] - command: SetTxStatusReport - success: true -2024-09-06T11:00:16.844Z CNTRLR Enabling TX status report successful... -2024-09-06T11:00:16.844Z CNTRLR finding SUC... -2024-09-06T11:00:16.844Z SERIAL » 0x01030056aa (5 bytes) -2024-09-06T11:00:16.845Z DRIVER » [REQ] [GetSUCNodeId] -2024-09-06T11:00:16.848Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:16.848Z SERIAL « 0x0104015600ac (6 bytes) -2024-09-06T11:00:16.849Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:16.849Z DRIVER « [RES] [GetSUCNodeId] - payload: 0x00 -2024-09-06T11:00:16.850Z CNTRLR No SUC present in the network -2024-09-06T11:00:16.850Z CNTRLR There is no SUC/SIS in the network - promoting ourselves... -2024-09-06T11:00:16.851Z SERIAL » 0x01080054010125010285 (10 bytes) -2024-09-06T11:00:16.852Z DRIVER » [REQ] [SetSUCNodeId] - payload: 0x0101250102 -2024-09-06T11:00:16.854Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:16.857Z SERIAL « 0x0104015401af (6 bytes) -2024-09-06T11:00:16.857Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:16.858Z DRIVER « [RES] [SetSUCNodeId] - was executed: true -2024-09-06T11:00:16.859Z CNTRLR Promotion to SUC/SIS succeeded. -2024-09-06T11:00:16.860Z DRIVER all queues idle -2024-09-06T11:00:16.865Z CNTRLR [Node 001] [Manufacturer Specific] manufacturerId: metadata updated -2024-09-06T11:00:16.866Z CNTRLR [Node 001] [Manufacturer Specific] productType: metadata updated -2024-09-06T11:00:16.866Z CNTRLR [Node 001] [Manufacturer Specific] productId: metadata updated -2024-09-06T11:00:16.867Z CNTRLR [Node 001] [+] [Manufacturer Specific] manufacturerId: 634 -2024-09-06T11:00:16.867Z CNTRLR [Node 001] [+] [Manufacturer Specific] productType: 4 -2024-09-06T11:00:16.867Z CNTRLR [Node 001] [+] [Manufacturer Specific] productId: 1552 -2024-09-06T11:00:16.868Z CNTRLR [Node 001] [Version] firmwareVersions: metadata updated -2024-09-06T11:00:16.868Z CNTRLR [Node 001] [+] [Version] firmwareVersions: 1.30 -2024-09-06T11:00:16.868Z CNTRLR [Node 001] [Version] zWaveProtocolVersion: metadata updated -2024-09-06T11:00:16.868Z CNTRLR [Node 001] [+] [Version] zWaveProtocolVersion: "7.21.3" -2024-09-06T11:00:16.869Z CNTRLR [Node 001] [Version] sdkVersion: metadata updated -2024-09-06T11:00:16.869Z CNTRLR [Node 001] [+] [Version] sdkVersion: "7.21.3" -2024-09-06T11:00:16.869Z CNTRLR Interview completed -2024-09-06T11:00:16.869Z DRIVER Network key for S0 configured, enabling S0 security manager... -2024-09-06T11:00:16.870Z DRIVER At least one network key for S2 configured, enabling S2 security manager... -2024-09-06T11:00:16.871Z DRIVER At least one network key for Z-Wave Long Range configured, enabling security m - anager... -2024-09-06T11:00:16.872Z DRIVER driver ready -2024-09-06T11:00:21.509Z CNTRLR Starting inclusion process with strategy Default... -2024-09-06T11:00:21.510Z DRIVER all queues busy -2024-09-06T11:00:21.511Z SERIAL » 0x0105004ac10372 (7 bytes) -2024-09-06T11:00:21.511Z DRIVER » [REQ] [AddNodeToNetwork] - node type: Any - high power: true - network wide: true - callback id: 3 -2024-09-06T11:00:21.513Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:21.520Z SERIAL « 0x0107004a03010000b0 (9 bytes) -2024-09-06T11:00:21.520Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:21.522Z DRIVER « [REQ] [AddNodeToNetwork] - status: Ready - callback id: 3 -2024-09-06T11:00:21.523Z CNTRLR The controller is now ready to add nodes -2024-09-06T11:00:21.524Z DRIVER all queues idle -2024-09-06T11:00:25.561Z SERIAL « 0x0107004a03020000b3 (9 bytes) -2024-09-06T11:00:25.562Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:25.564Z DRIVER « [REQ] [AddNodeToNetwork] - status: NodeFound - callback id: 3 -2024-09-06T11:00:25.565Z DRIVER handling request AddNodeToNetwork (74) -2024-09-06T11:00:25.565Z DRIVER 1 handler registered! -2024-09-06T11:00:25.566Z DRIVER invoking handler #0 -2024-09-06T11:00:25.567Z CNTRLR handling add node request (status = NodeFound) -2024-09-06T11:00:25.667Z SERIAL « 0x0112004a0304020b0201005e989f556c568f7467 (20 bytes) -2024-09-06T11:00:25.669Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:25.671Z DRIVER « [REQ] [AddNodeToNetwork] - status: AddingController - callback id: 3 -2024-09-06T11:00:25.671Z DRIVER handling request AddNodeToNetwork (74) -2024-09-06T11:00:25.672Z DRIVER 1 handler registered! -2024-09-06T11:00:25.672Z DRIVER invoking handler #0 -2024-09-06T11:00:25.673Z CNTRLR handling add node request (status = AddingController) -2024-09-06T11:00:25.676Z DRIVER the message was handled -2024-09-06T11:00:26.086Z SERIAL « 0x0107004a03050200b6 (9 bytes) -2024-09-06T11:00:26.087Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:26.089Z DRIVER « [REQ] [AddNodeToNetwork] - status: ProtocolDone - callback id: 3 -2024-09-06T11:00:26.090Z DRIVER handling request AddNodeToNetwork (74) -2024-09-06T11:00:26.090Z DRIVER 1 handler registered! -2024-09-06T11:00:26.091Z DRIVER invoking handler #0 -2024-09-06T11:00:26.091Z CNTRLR handling add node request (status = ProtocolDone) -2024-09-06T11:00:26.092Z CNTRLR finishing inclusion process... -2024-09-06T11:00:26.094Z DRIVER all queues busy -2024-09-06T11:00:26.095Z SERIAL » 0x0105004ac50471 (7 bytes) -2024-09-06T11:00:26.096Z DRIVER » [REQ] [AddNodeToNetwork] - action: Stop - high power: true - network wide: true - callback id: 4 -2024-09-06T11:00:26.099Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:26.137Z SERIAL « 0x0107004a04060200b2 (9 bytes) -2024-09-06T11:00:26.137Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:26.137Z DRIVER « [REQ] [AddNodeToNetwork] - status: Done - callback id: 4 -2024-09-06T11:00:26.139Z SERIAL » 0x0105004ac50075 (7 bytes) -2024-09-06T11:00:26.139Z DRIVER » [REQ] [AddNodeToNetwork] - action: Stop - high power: true - network wide: true - callback id: 0 -2024-09-06T11:00:26.145Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:26.146Z CNTRLR The inclusion process was stopped -2024-09-06T11:00:26.146Z CNTRLR finished adding node 2: - basic device class: Static Controller - generic device class: Remote Controller - specific device class: Unused - supported CCs: - · Z-Wave Plus Info (0x5e) - · Security (0x98) - · Security 2 (0x9f) - · Transport Service (0x55) - · Supervision (0x6c) - · CRC-16 Encapsulation (0x56) - · Multi Command (0x8f) - · Inclusion Controller (0x74) - controlled CCs: -2024-09-06T11:00:26.147Z CNTRLR » [Node 002] Assigning SUC return route... -2024-09-06T11:00:26.147Z CNTRLR » [Node 002] Deleting SUC return route... -2024-09-06T11:00:26.148Z SERIAL » 0x010500550205a8 (7 bytes) -2024-09-06T11:00:26.149Z DRIVER » [Node 002] [REQ] [DeleteSUCReturnRoute] - payload: 0x0205 -2024-09-06T11:00:26.153Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:26.157Z SERIAL « 0x0104015501ae (6 bytes) -2024-09-06T11:00:26.158Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:26.158Z DRIVER « [RES] [DeleteSUCReturnRoute] - was executed: true -2024-09-06T11:00:26.223Z SERIAL « 0x01210055050000000000000000000000000000000000000000000000000000000 (35 bytes) - 0008e -2024-09-06T11:00:26.224Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:26.226Z DRIVER « [REQ] [DeleteSUCReturnRoute] - callback id: 5 - transmit status: OK -2024-09-06T11:00:26.230Z SERIAL » 0x010500510206af (7 bytes) -2024-09-06T11:00:26.232Z DRIVER » [Node 002] [REQ] [AssignSUCReturnRoute] - payload: 0x0206 -2024-09-06T11:00:26.235Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:26.241Z SERIAL « 0x0104015101aa (6 bytes) -2024-09-06T11:00:26.242Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:26.243Z DRIVER « [RES] [AssignSUCReturnRoute] - was executed: true -2024-09-06T11:00:26.314Z SERIAL « 0x01210051060000000000000000000000000000000000000000000000000000000 (35 bytes) - 00089 -2024-09-06T11:00:26.315Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:26.317Z DRIVER « [REQ] [AssignSUCReturnRoute] - callback id: 6 - transmit status: OK -2024-09-06T11:00:26.325Z SERIAL » 0x010e00a90102029f04250000000007e0 (16 bytes) -2024-09-06T11:00:26.326Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x25 - │ callback id: 7 - └─[Security2CCKEXGet] -2024-09-06T11:00:26.330Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:26.337Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:00:26.337Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:26.338Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:00:30.384Z SERIAL « 0x011d00a90700000100df7f7f7f7f00000300000000030100007f7f7f7f7fec (31 bytes) -2024-09-06T11:00:30.385Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:30.385Z SERIAL « 0x011d00a90700000100df7f7f7f7f00000300000000030100007f7f7f7f7fec (31 bytes) -2024-09-06T11:00:30.385Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:30.386Z SERIAL « 0x011d00a90700000100df7f7f7f7f00000300000000030100007f7f7f7f7fec (31 bytes) -2024-09-06T11:00:30.386Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:30.388Z DRIVER « [REQ] [SendDataBridge] - callback id: 7 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -33 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:00:30.389Z DRIVER « [REQ] [SendDataBridge] - callback id: 7 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -33 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:00:30.390Z DRIVER handling request SendDataBridge (169) -2024-09-06T11:00:30.390Z DRIVER no handlers registered! -2024-09-06T11:00:30.390Z DRIVER « [REQ] [SendDataBridge] - callback id: 7 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -33 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:00:30.390Z DRIVER handling request SendDataBridge (169) -2024-09-06T11:00:30.390Z DRIVER no handlers registered! -2024-09-06T11:00:30.391Z SERIAL « 0x010f00a8000102069f050002018700df9c (17 bytes) -2024-09-06T11:00:30.391Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:30.392Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -33 dBm - └─[Security2CCKEXReport] - echo: false - supported schemes: - · KEXScheme1 - supported ECDH profiles: - · Curve25519 - CSA requested: false - requested security classes: - · S2_Unauthenticated - · S2_Authenticated - · S2_AccessControl - · S0_Legacy -2024-09-06T11:00:30.395Z SERIAL » 0x011200a90102069f060002018725000000000871 (20 bytes) -2024-09-06T11:00:30.395Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x25 - │ callback id: 8 - └─[Security2CCKEXSet] - echo: false - selected scheme: KEXScheme1 - selected ECDH profile: Curve25519 - CSA permitted: false - granted security classes: - · S2_Unauthenticated - · S2_Authenticated - · S2_AccessControl - · S0_Legacy -2024-09-06T11:00:30.400Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:30.406Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:00:30.407Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:30.407Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:00:34.796Z SERIAL « 0x011d00a90800000100df7f7f7f7f00000300000000030100007f7f7f7f7fe3 (31 bytes) -2024-09-06T11:00:34.797Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:34.799Z SERIAL « 0x011d00a90800000100df7f7f7f7f00000300000000030100007f7f7f7f7fe3 (31 bytes) -2024-09-06T11:00:34.799Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:34.800Z SERIAL « 0x011d00a90800000100df7f7f7f7f00000300000000030100007f7f7f7f7fe3 (31 bytes) -2024-09-06T11:00:34.800Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:34.801Z DRIVER « [REQ] [SendDataBridge] - callback id: 8 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -33 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:00:34.804Z DRIVER all queues idle -2024-09-06T11:00:34.804Z DRIVER « [REQ] [SendDataBridge] - callback id: 8 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -33 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:00:34.805Z DRIVER handling request SendDataBridge (169) -2024-09-06T11:00:34.805Z DRIVER no handlers registered! -2024-09-06T11:00:34.805Z DRIVER « [REQ] [SendDataBridge] - callback id: 8 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -33 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:00:34.806Z DRIVER handling request SendDataBridge (169) -2024-09-06T11:00:34.806Z DRIVER no handlers registered! -2024-09-06T11:00:34.814Z SERIAL « 0x012c00a8000102239f0800000014c50b50c3c8563c3ef70eb85ae61d38f0749c6 (46 bytes) - 6b7e65f0dc109c0d2194c00e0d3 -2024-09-06T11:00:34.816Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:34.817Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -32 dBm - └─[Security2CCPublicKeyReport] - is including node: false - public key: 0x000014c50b50c3c8563c3ef70eb85ae61d38f0749c66b7e65f0dc - 109c0d2194c -2024-09-06T11:00:34.819Z DRIVER all queues busy -2024-09-06T11:00:34.820Z SERIAL » 0x012f00a90102239f0801d3955c17b8339bf458e7dd0c7dece81bd981ccca91987 (49 bytes) - 7ce3cc9ddd90c2d5e1c2500000000097a -2024-09-06T11:00:34.821Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x25 - │ callback id: 9 - └─[Security2CCPublicKeyReport] - is including node: true - public key: 0xd3955c17b8339bf458e7dd0c7dece81bd981ccca919877ce3cc9d - dd90c2d5e1c -2024-09-06T11:00:34.830Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:34.836Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:00:34.837Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:34.838Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:03:28.971Z DRIVER ███████╗ ██╗ ██╗ █████╗ ██╗ ██╗ ███████╗ ██╗ ███████╗ - ╚══███╔╝ ██║ ██║ ██╔══██╗ ██║ ██║ ██╔════╝ ██║ ██╔════╝ - ███╔╝ █████╗ ██║ █╗ ██║ ███████║ ██║ ██║ █████╗ ██║ ███████╗ - ███╔╝ ╚════╝ ██║███╗██║ ██╔══██║ ╚██╗ ██╔╝ ██╔══╝ ██ ██║ ╚════██║ - ███████╗ ╚███╔███╔╝ ██║ ██║ ╚████╔╝ ███████╗ ╚█████╔╝ ███████║ - ╚══════╝ ╚══╝╚══╝ ╚═╝ ╚═╝ ╚═══╝ ╚══════╝ ╚════╝ ╚══════╝ -2024-09-06T11:03:28.972Z DRIVER version 13.2.0 -2024-09-06T11:03:28.973Z DRIVER -2024-09-06T11:03:28.973Z DRIVER starting driver... -2024-09-06T11:03:28.973Z DRIVER opening serial port /dev/serial/by-id/usb-Zooz_800_Z-Wave_Stick_533D004242-if0 - 0 -2024-09-06T11:03:28.982Z DRIVER serial port opened -2024-09-06T11:03:28.983Z SERIAL » 0x15 (1 bytes) -2024-09-06T11:03:29.987Z DRIVER loading configuration... -2024-09-06T11:03:29.989Z CONFIG version 13.2.0 -2024-09-06T11:03:30.306Z DRIVER beginning interview... -2024-09-06T11:03:30.307Z DRIVER added request handler for AddNodeToNetwork (0x4a)... - 1 registered -2024-09-06T11:03:30.307Z DRIVER added request handler for RemoveNodeFromNetwork (0x4b)... - 1 registered -2024-09-06T11:03:30.307Z DRIVER added request handler for ReplaceFailedNode (0x63)... - 1 registered -2024-09-06T11:03:30.307Z DRIVER added request handler for SetLearnMode (0x50)... - 1 registered -2024-09-06T11:03:30.307Z CNTRLR querying Serial API capabilities... -2024-09-06T11:03:30.309Z SERIAL » 0x01030007fb (5 bytes) -2024-09-06T11:03:30.309Z DRIVER » [REQ] [GetSerialApiCapabilities] -2024-09-06T11:03:30.312Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:30.322Z SERIAL « 0x012b0107011e027a00040610f6873e88cf2bc04ffbd7fde09700008000808680b (45 bytes) - a0500700000ee7fc000000035 -2024-09-06T11:03:30.323Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:30.323Z DRIVER « [RES] [GetSerialApiCapabilities] - payload: 0x011e027a00040610f6873e88cf2bc04ffbd7fde09700008000808680ba0500700 - 000ee7fc0000000 -2024-09-06T11:03:30.324Z CNTRLR received API capabilities: - firmware version: 1.30 - manufacturer ID: 0x027a - product type: 0x04 - product ID: 0x0610 - supported functions: - · GetSerialApiInitData (0x02) - · SetApplicationNodeInformation (0x03) - · GetControllerCapabilities (0x05) - · SetSerialApiTimeouts (0x06) - · GetSerialApiCapabilities (0x07) - · SoftReset (0x08) - · GetProtocolVersion (0x09) - · SerialAPIStarted (0x0a) - · SerialAPISetup (0x0b) - · SetRFReceiveMode (0x10) - · SendNodeInformation (0x12) - · SendData (0x13) - · SendDataMulticast (0x14) - · GetControllerVersion (0x15) - · SendDataAbort (0x16) - · FUNC_ID_ZW_GET_RANDOM (0x1c) - · GetControllerId (0x20) - · UNKNOWN_FUNC_MEMORY_GET_BYTE (0x21) - · UNKNOWN_FUNC_MEMORY_PUT_BYTE (0x22) - · UNKNOWN_FUNC_MEMORY_GET_BUFFER (0x23) - · UNKNOWN_FUNC_MEMORY_PUT_BUFFER (0x24) - · EnterBootloader (0x27) - · UNKNOWN_FUNC_UNKNOWN_0x28 (0x28) - · GetNVMId (0x29) - · ExtNVMReadLongBuffer (0x2a) - · ExtNVMReadLongByte (0x2c) - · NVMOperations (0x2e) - · ClearTxTimers (0x37) - · GetTxTimers (0x38) - · ClearNetworkStats (0x39) - · GetNetworkStats (0x3a) - · GetBackgroundRSSI (0x3b) - · SetListenBeforeTalkThreshold (0x3c) - · RemoveSpecificNodeIdFromNetwork (0x3f) - · GetNodeProtocolInfo (0x41) - · HardReset (0x42) - · FUNC_ID_ZW_REPLICATION_COMMAND_COMPLETE (0x44) - · FUNC_ID_ZW_REPLICATION_SEND_DATA (0x45) - · AssignReturnRoute (0x46) - · DeleteReturnRoute (0x47) - · RequestNodeNeighborUpdate (0x48) - · ApplicationUpdateRequest (0x49) - · AddNodeToNetwork (0x4a) - · RemoveNodeFromNetwork (0x4b) - · AddPrimaryController (0x4d) - · AssignPriorityReturnRoute (0x4f) - · SetLearnMode (0x50) - · AssignSUCReturnRoute (0x51) - · RequestNetworkUpdate (0x53) - · SetSUCNodeId (0x54) - · DeleteSUCReturnRoute (0x55) - · GetSUCNodeId (0x56) - · SendSUCNodeId (0x57) - · AssignPrioritySUCReturnRoute (0x58) - · ExploreRequestInclusion (0x5e) - · ExploreRequestExclusion (0x5f) - · RequestNodeInfo (0x60) - · RemoveFailedNode (0x61) - · IsFailedNode (0x62) - · ReplaceFailedNode (0x63) - · undefined (0x65) - · RequestProtocolCCEncryption (0x68) - · GetRoutingInfo (0x80) - · LockUnlockLastRoute (0x90) - · GetPriorityRoute (0x92) - · SetPriorityRoute (0x93) - · UNKNOWN_FUNC_UNKNOWN_0x98 (0x98) - · VirtualNodeSetNodeInfo (0xa0) - · VirtualNodeSendNodeInfo (0xa2) - · VirtualNodeSetLearnMode (0xa4) - · GetVirtualNodes (0xa5) - · IsVirtualNode (0xa6) - · BridgeApplicationCommand (0xa8) - · SendDataBridge (0xa9) - · SendDataMulticastBridge (0xab) - · GetLibrary (0xbd) - · SendTestFrame (0xbe) - · GetProtocolStatus (0xbf) - · StartWatchdog (0xd2) - · StopWatchdog (0xd3) - · SetMaximumRoutingAttempts (0xd4) - · SetMaxSmartStartInclusionRequestInterval (0xd6) - · undefined (0xd7) - · undefined (0xd8) - · Shutdown (0xd9) - · GetLongRangeNodes (0xda) - · GetLongRangeChannel (0xdb) - · SetLongRangeChannel (0xdc) - · SetLongRangeShadowNodeIDs (0xdd) - · Proprietary_DE (0xde) - · Proprietary_DF (0xdf) - · Proprietary_E7 (0xe7) - · Proprietary_E8 (0xe8) -2024-09-06T11:03:30.325Z CNTRLR querying additional controller information... -2024-09-06T11:03:30.326Z SERIAL » 0x01030002fe (5 bytes) -2024-09-06T11:03:30.326Z DRIVER » [REQ] [GetSerialApiInitData] -2024-09-06T11:03:30.331Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:30.333Z SERIAL « 0x012501020a081d030000000000000000000000000000000000000000000000000 (39 bytes) - 00000000800cd -2024-09-06T11:03:30.334Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:30.334Z DRIVER « [RES] [GetSerialApiInitData] - payload: 0x0a081d03000000000000000000000000000000000000000000000000000000000 - 800 -2024-09-06T11:03:30.335Z CNTRLR received additional controller information: - Z-Wave API version: 1 (official) - Z-Wave chip type: EFR32ZG23 / ZGM230S - node type Controller - controller role: primary - controller is the SIS: true - controller supports timers: false - Z-Wave Classic nodes: 1, 2 -2024-09-06T11:03:30.335Z CNTRLR querying version info... -2024-09-06T11:03:30.336Z SERIAL » 0x01030015e9 (5 bytes) -2024-09-06T11:03:30.337Z DRIVER » [REQ] [GetControllerVersion] -2024-09-06T11:03:30.344Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:30.344Z SERIAL « 0x011001155a2d5761766520372e3231000794 (18 bytes) -2024-09-06T11:03:30.345Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:30.345Z DRIVER « [RES] [GetControllerVersion] - payload: 0x5a2d5761766520372e32310007 -2024-09-06T11:03:30.346Z CNTRLR received version info: - controller type: Bridge Controller - library version: Z-Wave 7.21 -2024-09-06T11:03:30.347Z CNTRLR querying protocol version info... -2024-09-06T11:03:30.348Z SERIAL » 0x01030009f5 (5 bytes) -2024-09-06T11:03:30.348Z DRIVER » [REQ] [GetProtocolVersion] -2024-09-06T11:03:30.355Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:30.356Z SERIAL « 0x011901090007150300f4353162666237323665306662383733380f (27 bytes) -2024-09-06T11:03:30.356Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:30.357Z DRIVER « [RES] [GetProtocolVersion] - payload: 0x0007150300f435316266623732366530666238373338 -2024-09-06T11:03:30.358Z CNTRLR received protocol version info: - protocol type: Z-Wave - protocol version: 7.21.3 - appl. framework build no.: 244 - git commit hash: 35316266623732366530666238373338 -2024-09-06T11:03:30.358Z CNTRLR querying controller capabilities... -2024-09-06T11:03:30.359Z SERIAL » 0x01030005f9 (5 bytes) -2024-09-06T11:03:30.360Z DRIVER » [REQ] [GetControllerCapabilities] -2024-09-06T11:03:30.365Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:30.366Z SERIAL « 0x010401051ce3 (6 bytes) -2024-09-06T11:03:30.366Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:30.366Z DRIVER « [RES] [GetControllerCapabilities] - payload: 0x1c -2024-09-06T11:03:30.367Z CNTRLR received controller capabilities: - controller role: Primary - is the SUC: true - started this network: true - SIS is present: true - was real primary: true -2024-09-06T11:03:30.367Z CNTRLR querying serial API setup capabilities... -2024-09-06T11:03:30.368Z SERIAL » 0x0104000b01f1 (6 bytes) -2024-09-06T11:03:30.369Z DRIVER » [REQ] [SerialAPISetup] - command: GetSupportedCommands - payload: 0x01 -2024-09-06T11:03:30.375Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:30.375Z SERIAL « 0x0116010b01ff9f8007800000008000000000000000800085 (24 bytes) -2024-09-06T11:03:30.375Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:30.376Z DRIVER « [RES] [SerialAPISetup] - command: GetSupportedCommands - payload: 0xff9f80078000000080000000000000008000 -2024-09-06T11:03:30.376Z CNTRLR supported serial API setup commands: - · GetSupportedCommands - · SetTxStatusReport - · SetLongRangeMaximumTxPower - · SetPowerlevel - · GetLongRangeMaximumTxPower - · GetPowerlevel - · GetMaximumPayloadSize - · GetLongRangeMaximumPayloadSize - · SetPowerlevel16Bit - · GetPowerlevel16Bit - · GetRFRegion - · SetRFRegion - · SetNodeIDType -2024-09-06T11:03:30.377Z CNTRLR querying max. payload size... -2024-09-06T11:03:30.377Z SERIAL » 0x0104000b10e0 (6 bytes) -2024-09-06T11:03:30.378Z DRIVER » [REQ] [SerialAPISetup] - command: GetMaximumPayloadSize - payload: 0x10 -2024-09-06T11:03:30.383Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:30.384Z SERIAL « 0x0105010b102ece (7 bytes) -2024-09-06T11:03:30.384Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:30.385Z DRIVER « [RES] [SerialAPISetup] - command: GetMaximumPayloadSize - maximum payload size: 46 bytes -2024-09-06T11:03:30.385Z CNTRLR maximum payload size: 46 bytes -2024-09-06T11:03:30.386Z CNTRLR supported Z-Wave features: - · SmartStart -2024-09-06T11:03:30.386Z CNTRLR Querying configured RF region... -2024-09-06T11:03:30.387Z SERIAL » 0x0104000b20d0 (6 bytes) -2024-09-06T11:03:30.387Z DRIVER » [REQ] [SerialAPISetup] - command: GetRFRegion - payload: 0x20 -2024-09-06T11:03:30.392Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:30.392Z SERIAL « 0x0105010b2000d0 (7 bytes) -2024-09-06T11:03:30.392Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:30.393Z DRIVER « [RES] [SerialAPISetup] - command: GetRFRegion - region: Europe -2024-09-06T11:03:30.393Z CNTRLR The controller is using RF region Europe -2024-09-06T11:03:30.394Z CNTRLR Querying configured max. Long Range powerlevel... -2024-09-06T11:03:30.394Z SERIAL » 0x0104000b05f5 (6 bytes) -2024-09-06T11:03:30.395Z DRIVER » [REQ] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - payload: 0x05 -2024-09-06T11:03:30.400Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:30.400Z SERIAL « 0x0106010b05008c7a (8 bytes) -2024-09-06T11:03:30.401Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:30.401Z DRIVER « [RES] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - max. TX power (LR): 14.0 dBm -2024-09-06T11:03:30.402Z CNTRLR The max. LR powerlevel is 14.0 dBm -2024-09-06T11:03:30.402Z CNTRLR Querying configured Long Range channel information... -2024-09-06T11:03:30.403Z SERIAL » 0x010300db27 (5 bytes) -2024-09-06T11:03:30.404Z DRIVER » [REQ] [GetLongRangeChannel] -2024-09-06T11:03:30.408Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:30.408Z SERIAL « 0x010501db001030 (7 bytes) -2024-09-06T11:03:30.408Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:30.409Z DRIVER « [RES] [GetLongRangeChannel] - payload: 0x0010 -2024-09-06T11:03:30.409Z CNTRLR received Z-Wave Long Range channel information: - channel: Unsupported - supports auto channel selection: true -2024-09-06T11:03:30.410Z CNTRLR Performing soft reset... -2024-09-06T11:03:30.410Z SERIAL » 0x01030008f4 (5 bytes) -2024-09-06T11:03:30.411Z DRIVER » [REQ] [SoftReset] -2024-09-06T11:03:30.413Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:30.414Z CNTRLR Waiting for the controller to reconnect... -2024-09-06T11:03:30.415Z DRIVER all queues idle -2024-09-06T11:03:30.633Z SERIAL « 0x0112000a0700010100085e989f556c568f740025 (20 bytes) -2024-09-06T11:03:30.634Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:30.634Z DRIVER « [REQ] [SerialAPIStarted] - wake up reason: SoftwareReset - watchdog enabled: false - generic device class: 0x01 - specific device class: 0x00 - always listening: false - supports Long Range: false -2024-09-06T11:03:30.635Z CNTRLR reconnected and restarted -2024-09-06T11:03:30.635Z CNTRLR Starting hardware watchdog... -2024-09-06T11:03:30.635Z CNTRLR Switching serial API to 16-bit node IDs... -2024-09-06T11:03:30.636Z CNTRLR Switching serial API to 8-bit node IDs... -2024-09-06T11:03:30.636Z DRIVER all queues busy -2024-09-06T11:03:30.637Z SERIAL » 0x010300d22e (5 bytes) -2024-09-06T11:03:30.637Z DRIVER » [REQ] [StartWatchdog] -2024-09-06T11:03:30.638Z SERIAL » 0x0105000b800273 (7 bytes) -2024-09-06T11:03:30.639Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 16 bit -2024-09-06T11:03:30.640Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:30.641Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:30.657Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T11:03:30.657Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:30.658Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T11:03:30.659Z CNTRLR Switching to 16-bit node IDs successful -2024-09-06T11:03:30.659Z SERIAL » 0x0105000b800170 (7 bytes) -2024-09-06T11:03:30.660Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 8 bit -2024-09-06T11:03:30.666Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:30.667Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T11:03:30.667Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:30.668Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T11:03:30.669Z CNTRLR Switching to 8-bit node IDs successful -2024-09-06T11:03:30.669Z CNTRLR querying controller IDs... -2024-09-06T11:03:30.670Z SERIAL » 0x01030020dc (5 bytes) -2024-09-06T11:03:30.670Z DRIVER » [REQ] [GetControllerId] -2024-09-06T11:03:30.676Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:30.676Z SERIAL « 0x01080120d188a45e0174 (10 bytes) -2024-09-06T11:03:30.677Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:30.677Z DRIVER « [RES] [GetControllerId] - home ID: 0xd188a45e - own node ID: 1 -2024-09-06T11:03:30.678Z CNTRLR received controller IDs: - home ID: 0xd188a45e - own node ID: 1 -2024-09-06T11:03:30.678Z CNTRLR Enabling TX status report... -2024-09-06T11:03:30.679Z SERIAL » 0x0105000b02ff0c (7 bytes) -2024-09-06T11:03:30.680Z DRIVER » [REQ] [SerialAPISetup] - command: SetTxStatusReport - enabled: true -2024-09-06T11:03:30.689Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:30.689Z SERIAL « 0x0105010b0201f3 (7 bytes) -2024-09-06T11:03:30.689Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:30.690Z DRIVER « [RES] [SerialAPISetup] - command: SetTxStatusReport - success: true -2024-09-06T11:03:30.691Z CNTRLR Enabling TX status report successful... -2024-09-06T11:03:30.691Z CNTRLR finding SUC... -2024-09-06T11:03:30.692Z SERIAL » 0x01030056aa (5 bytes) -2024-09-06T11:03:30.692Z DRIVER » [REQ] [GetSUCNodeId] -2024-09-06T11:03:30.694Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:30.695Z SERIAL « 0x0104015601ad (6 bytes) -2024-09-06T11:03:30.696Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:30.696Z DRIVER « [RES] [GetSUCNodeId] - payload: 0x01 -2024-09-06T11:03:30.697Z CNTRLR This is the SUC -2024-09-06T11:03:30.700Z DRIVER all queues idle -2024-09-06T11:03:30.727Z DRIVER Cache file for homeId 0xd188a45e found, attempting to restore the network from - cache... -2024-09-06T11:03:30.729Z CNTRLR [Node 001] Embedded device config loaded -2024-09-06T11:03:30.730Z DRIVER Restoring the network from cache was successful! -2024-09-06T11:03:30.730Z CNTRLR [Node 001] [Manufacturer Specific] manufacturerId: metadata updated -2024-09-06T11:03:30.730Z CNTRLR [Node 001] [Manufacturer Specific] productType: metadata updated -2024-09-06T11:03:30.731Z CNTRLR [Node 001] [Manufacturer Specific] productId: metadata updated -2024-09-06T11:03:30.731Z CNTRLR [Node 001] [~] [Manufacturer Specific] manufacturerId: 634 => 634 -2024-09-06T11:03:30.731Z CNTRLR [Node 001] [~] [Manufacturer Specific] productType: 4 => 4 -2024-09-06T11:03:30.731Z CNTRLR [Node 001] [~] [Manufacturer Specific] productId: 1552 => 1552 -2024-09-06T11:03:30.732Z CNTRLR [Node 001] [Version] firmwareVersions: metadata updated -2024-09-06T11:03:30.732Z CNTRLR [Node 001] [~] [Version] firmwareVersions: 1.30 => 1.30 -2024-09-06T11:03:30.732Z CNTRLR [Node 001] [Version] zWaveProtocolVersion: metadata updated -2024-09-06T11:03:30.733Z CNTRLR [Node 001] [~] [Version] zWaveProtocolVersion: "7.21.3" => "7.21.3" -2024-09-06T11:03:30.733Z CNTRLR [Node 001] [Version] sdkVersion: metadata updated -2024-09-06T11:03:30.733Z CNTRLR [Node 001] [~] [Version] sdkVersion: "7.21.3" => "7.21.3" -2024-09-06T11:03:30.733Z CNTRLR Interview completed -2024-09-06T11:03:30.734Z DRIVER Network key for S0 configured, enabling S0 security manager... -2024-09-06T11:03:30.734Z DRIVER At least one network key for S2 configured, enabling S2 security manager... -2024-09-06T11:03:30.736Z DRIVER At least one network key for Z-Wave Long Range configured, enabling security m - anager... -2024-09-06T11:03:30.737Z DRIVER driver ready -2024-09-06T11:03:31.738Z CNTRLR Updating the controller NIF... -2024-09-06T11:03:31.740Z DRIVER all queues busy -2024-09-06T11:03:31.743Z SERIAL » 0x010f0003010100085e989f556c568f7436 (17 bytes) -2024-09-06T11:03:31.744Z DRIVER » [REQ] [SetApplicationNodeInformation] - is listening: true - generic device class: 0x01 - specific device class: 0x00 - supported CCs: - · Z-Wave Plus Info - · Security - · Security 2 - · Transport Service - · Supervision - · CRC-16 Encapsulation - · Multi Command - · Inclusion Controller - controlled CCs: -2024-09-06T11:03:31.748Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:31.751Z CNTRLR performing hard reset... -2024-09-06T11:03:31.753Z SERIAL » 0x0104004201b8 (6 bytes) -2024-09-06T11:03:31.754Z DRIVER » [REQ] [HardReset] - callback id: 1 -2024-09-06T11:03:31.756Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:31.778Z SERIAL « 0x0104004201b8 (6 bytes) -2024-09-06T11:03:31.778Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:31.779Z DRIVER « [REQ] [HardReset] - callback id: 1 -2024-09-06T11:03:31.780Z CNTRLR hard reset succeeded -2024-09-06T11:03:31.780Z CNTRLR querying Serial API capabilities... -2024-09-06T11:03:31.781Z SERIAL » 0x01030007fb (5 bytes) -2024-09-06T11:03:31.782Z DRIVER » [REQ] [GetSerialApiCapabilities] -2024-09-06T11:03:31.784Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:31.788Z SERIAL « 0x012b0107011e027a00040610f6873e88cf2bc04ffbd7fde09700008000808680b (45 bytes) - a0500700000ee7fc000000035 -2024-09-06T11:03:31.789Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:31.789Z DRIVER « [RES] [GetSerialApiCapabilities] - payload: 0x011e027a00040610f6873e88cf2bc04ffbd7fde09700008000808680ba0500700 - 000ee7fc0000000 -2024-09-06T11:03:31.790Z CNTRLR received API capabilities: - firmware version: 1.30 - manufacturer ID: 0x027a - product type: 0x04 - product ID: 0x0610 - supported functions: - · GetSerialApiInitData (0x02) - · SetApplicationNodeInformation (0x03) - · GetControllerCapabilities (0x05) - · SetSerialApiTimeouts (0x06) - · GetSerialApiCapabilities (0x07) - · SoftReset (0x08) - · GetProtocolVersion (0x09) - · SerialAPIStarted (0x0a) - · SerialAPISetup (0x0b) - · SetRFReceiveMode (0x10) - · SendNodeInformation (0x12) - · SendData (0x13) - · SendDataMulticast (0x14) - · GetControllerVersion (0x15) - · SendDataAbort (0x16) - · FUNC_ID_ZW_GET_RANDOM (0x1c) - · GetControllerId (0x20) - · UNKNOWN_FUNC_MEMORY_GET_BYTE (0x21) - · UNKNOWN_FUNC_MEMORY_PUT_BYTE (0x22) - · UNKNOWN_FUNC_MEMORY_GET_BUFFER (0x23) - · UNKNOWN_FUNC_MEMORY_PUT_BUFFER (0x24) - · EnterBootloader (0x27) - · UNKNOWN_FUNC_UNKNOWN_0x28 (0x28) - · GetNVMId (0x29) - · ExtNVMReadLongBuffer (0x2a) - · ExtNVMReadLongByte (0x2c) - · NVMOperations (0x2e) - · ClearTxTimers (0x37) - · GetTxTimers (0x38) - · ClearNetworkStats (0x39) - · GetNetworkStats (0x3a) - · GetBackgroundRSSI (0x3b) - · SetListenBeforeTalkThreshold (0x3c) - · RemoveSpecificNodeIdFromNetwork (0x3f) - · GetNodeProtocolInfo (0x41) - · HardReset (0x42) - · FUNC_ID_ZW_REPLICATION_COMMAND_COMPLETE (0x44) - · FUNC_ID_ZW_REPLICATION_SEND_DATA (0x45) - · AssignReturnRoute (0x46) - · DeleteReturnRoute (0x47) - · RequestNodeNeighborUpdate (0x48) - · ApplicationUpdateRequest (0x49) - · AddNodeToNetwork (0x4a) - · RemoveNodeFromNetwork (0x4b) - · AddPrimaryController (0x4d) - · AssignPriorityReturnRoute (0x4f) - · SetLearnMode (0x50) - · AssignSUCReturnRoute (0x51) - · RequestNetworkUpdate (0x53) - · SetSUCNodeId (0x54) - · DeleteSUCReturnRoute (0x55) - · GetSUCNodeId (0x56) - · SendSUCNodeId (0x57) - · AssignPrioritySUCReturnRoute (0x58) - · ExploreRequestInclusion (0x5e) - · ExploreRequestExclusion (0x5f) - · RequestNodeInfo (0x60) - · RemoveFailedNode (0x61) - · IsFailedNode (0x62) - · ReplaceFailedNode (0x63) - · undefined (0x65) - · RequestProtocolCCEncryption (0x68) - · GetRoutingInfo (0x80) - · LockUnlockLastRoute (0x90) - · GetPriorityRoute (0x92) - · SetPriorityRoute (0x93) - · UNKNOWN_FUNC_UNKNOWN_0x98 (0x98) - · VirtualNodeSetNodeInfo (0xa0) - · VirtualNodeSendNodeInfo (0xa2) - · VirtualNodeSetLearnMode (0xa4) - · GetVirtualNodes (0xa5) - · IsVirtualNode (0xa6) - · BridgeApplicationCommand (0xa8) - · SendDataBridge (0xa9) - · SendDataMulticastBridge (0xab) - · GetLibrary (0xbd) - · SendTestFrame (0xbe) - · GetProtocolStatus (0xbf) - · StartWatchdog (0xd2) - · StopWatchdog (0xd3) - · SetMaximumRoutingAttempts (0xd4) - · SetMaxSmartStartInclusionRequestInterval (0xd6) - · undefined (0xd7) - · undefined (0xd8) - · Shutdown (0xd9) - · GetLongRangeNodes (0xda) - · GetLongRangeChannel (0xdb) - · SetLongRangeChannel (0xdc) - · SetLongRangeShadowNodeIDs (0xdd) - · Proprietary_DE (0xde) - · Proprietary_DF (0xdf) - · Proprietary_E7 (0xe7) - · Proprietary_E8 (0xe8) -2024-09-06T11:03:31.790Z CNTRLR querying additional controller information... -2024-09-06T11:03:31.791Z SERIAL » 0x01030002fe (5 bytes) -2024-09-06T11:03:31.791Z DRIVER » [REQ] [GetSerialApiInitData] -2024-09-06T11:03:31.794Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:31.799Z SERIAL « 0x012501020a001d010000000000000000000000000000000000000000000000000 (39 bytes) - 00000000800c7 -2024-09-06T11:03:31.800Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:31.800Z DRIVER « [RES] [GetSerialApiInitData] - payload: 0x0a001d01000000000000000000000000000000000000000000000000000000000 - 800 -2024-09-06T11:03:31.801Z CNTRLR received additional controller information: - Z-Wave API version: 1 (official) - Z-Wave chip type: EFR32ZG23 / ZGM230S - node type Controller - controller role: primary - controller is the SIS: false - controller supports timers: false - Z-Wave Classic nodes: 1 -2024-09-06T11:03:31.801Z CNTRLR querying version info... -2024-09-06T11:03:31.802Z SERIAL » 0x01030015e9 (5 bytes) -2024-09-06T11:03:31.802Z DRIVER » [REQ] [GetControllerVersion] -2024-09-06T11:03:31.804Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:31.807Z SERIAL « 0x011001155a2d5761766520372e3231000794 (18 bytes) -2024-09-06T11:03:31.807Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:31.807Z DRIVER « [RES] [GetControllerVersion] - payload: 0x5a2d5761766520372e32310007 -2024-09-06T11:03:31.808Z CNTRLR received version info: - controller type: Bridge Controller - library version: Z-Wave 7.21 -2024-09-06T11:03:31.808Z CNTRLR querying protocol version info... -2024-09-06T11:03:31.809Z SERIAL » 0x01030009f5 (5 bytes) -2024-09-06T11:03:31.809Z DRIVER » [REQ] [GetProtocolVersion] -2024-09-06T11:03:31.811Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:31.815Z SERIAL « 0x011901090007150300f4353162666237323665306662383733380f (27 bytes) -2024-09-06T11:03:31.815Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:31.816Z DRIVER « [RES] [GetProtocolVersion] - payload: 0x0007150300f435316266623732366530666238373338 -2024-09-06T11:03:31.816Z CNTRLR received protocol version info: - protocol type: Z-Wave - protocol version: 7.21.3 - appl. framework build no.: 244 - git commit hash: 35316266623732366530666238373338 -2024-09-06T11:03:31.817Z CNTRLR querying controller capabilities... -2024-09-06T11:03:31.818Z SERIAL » 0x01030005f9 (5 bytes) -2024-09-06T11:03:31.818Z DRIVER » [REQ] [GetControllerCapabilities] -2024-09-06T11:03:31.820Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:31.822Z SERIAL « 0x0104010528d7 (6 bytes) -2024-09-06T11:03:31.822Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:31.823Z DRIVER « [RES] [GetControllerCapabilities] - payload: 0x28 -2024-09-06T11:03:31.823Z CNTRLR received controller capabilities: - controller role: Primary - is the SUC: false - started this network: true - SIS is present: false - was real primary: true -2024-09-06T11:03:31.824Z CNTRLR querying serial API setup capabilities... -2024-09-06T11:03:31.824Z SERIAL » 0x0104000b01f1 (6 bytes) -2024-09-06T11:03:31.825Z DRIVER » [REQ] [SerialAPISetup] - command: GetSupportedCommands - payload: 0x01 -2024-09-06T11:03:31.829Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:31.830Z SERIAL « 0x0116010b01ff9f8007800000008000000000000000800085 (24 bytes) -2024-09-06T11:03:31.831Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:31.831Z DRIVER « [RES] [SerialAPISetup] - command: GetSupportedCommands - payload: 0xff9f80078000000080000000000000008000 -2024-09-06T11:03:31.832Z CNTRLR supported serial API setup commands: - · GetSupportedCommands - · SetTxStatusReport - · SetLongRangeMaximumTxPower - · SetPowerlevel - · GetLongRangeMaximumTxPower - · GetPowerlevel - · GetMaximumPayloadSize - · GetLongRangeMaximumPayloadSize - · SetPowerlevel16Bit - · GetPowerlevel16Bit - · GetRFRegion - · SetRFRegion - · SetNodeIDType -2024-09-06T11:03:31.833Z CNTRLR querying max. payload size... -2024-09-06T11:03:31.834Z SERIAL » 0x0104000b10e0 (6 bytes) -2024-09-06T11:03:31.834Z DRIVER » [REQ] [SerialAPISetup] - command: GetMaximumPayloadSize - payload: 0x10 -2024-09-06T11:03:31.836Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:31.838Z SERIAL « 0x0105010b102ece (7 bytes) -2024-09-06T11:03:31.838Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:31.839Z DRIVER « [RES] [SerialAPISetup] - command: GetMaximumPayloadSize - maximum payload size: 46 bytes -2024-09-06T11:03:31.839Z CNTRLR maximum payload size: 46 bytes -2024-09-06T11:03:31.839Z CNTRLR supported Z-Wave features: - · SmartStart -2024-09-06T11:03:31.840Z CNTRLR Querying configured RF region... -2024-09-06T11:03:31.840Z SERIAL » 0x0104000b20d0 (6 bytes) -2024-09-06T11:03:31.841Z DRIVER » [REQ] [SerialAPISetup] - command: GetRFRegion - payload: 0x20 -2024-09-06T11:03:31.843Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:31.844Z SERIAL « 0x0105010b2000d0 (7 bytes) -2024-09-06T11:03:31.844Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:31.845Z DRIVER « [RES] [SerialAPISetup] - command: GetRFRegion - region: Europe -2024-09-06T11:03:31.845Z CNTRLR The controller is using RF region Europe -2024-09-06T11:03:31.846Z CNTRLR Querying configured max. Long Range powerlevel... -2024-09-06T11:03:31.846Z SERIAL » 0x0104000b05f5 (6 bytes) -2024-09-06T11:03:31.847Z DRIVER » [REQ] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - payload: 0x05 -2024-09-06T11:03:31.849Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:31.850Z SERIAL « 0x0106010b05008c7a (8 bytes) -2024-09-06T11:03:31.851Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:31.851Z DRIVER « [RES] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - max. TX power (LR): 14.0 dBm -2024-09-06T11:03:31.852Z CNTRLR The max. LR powerlevel is 14.0 dBm -2024-09-06T11:03:31.852Z CNTRLR Querying configured Long Range channel information... -2024-09-06T11:03:31.853Z SERIAL » 0x010300db27 (5 bytes) -2024-09-06T11:03:31.853Z DRIVER » [REQ] [GetLongRangeChannel] -2024-09-06T11:03:31.855Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:31.857Z SERIAL « 0x010501db001030 (7 bytes) -2024-09-06T11:03:31.857Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:31.857Z DRIVER « [RES] [GetLongRangeChannel] - payload: 0x0010 -2024-09-06T11:03:31.858Z CNTRLR received Z-Wave Long Range channel information: - channel: Unsupported - supports auto channel selection: true -2024-09-06T11:03:31.858Z CNTRLR Performing soft reset... -2024-09-06T11:03:31.859Z SERIAL » 0x01030008f4 (5 bytes) -2024-09-06T11:03:31.859Z DRIVER » [REQ] [SoftReset] -2024-09-06T11:03:31.861Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:31.862Z CNTRLR Waiting for the controller to reconnect... -2024-09-06T11:03:31.863Z DRIVER all queues idle -2024-09-06T11:03:32.080Z SERIAL « 0x0112000a0700010100085e989f556c568f740025 (20 bytes) -2024-09-06T11:03:32.082Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:32.083Z DRIVER « [REQ] [SerialAPIStarted] - wake up reason: SoftwareReset - watchdog enabled: false - generic device class: 0x01 - specific device class: 0x00 - always listening: false - supports Long Range: false -2024-09-06T11:03:32.084Z CNTRLR reconnected and restarted -2024-09-06T11:03:32.085Z CNTRLR Starting hardware watchdog... -2024-09-06T11:03:32.086Z CNTRLR Switching serial API to 16-bit node IDs... -2024-09-06T11:03:32.087Z CNTRLR Switching serial API to 8-bit node IDs... -2024-09-06T11:03:32.088Z DRIVER all queues busy -2024-09-06T11:03:32.090Z SERIAL » 0x010300d22e (5 bytes) -2024-09-06T11:03:32.091Z DRIVER » [REQ] [StartWatchdog] -2024-09-06T11:03:32.092Z SERIAL » 0x0105000b800273 (7 bytes) -2024-09-06T11:03:32.093Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 16 bit -2024-09-06T11:03:32.094Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:32.095Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:32.096Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T11:03:32.097Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:32.097Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T11:03:32.098Z CNTRLR Switching to 16-bit node IDs successful -2024-09-06T11:03:32.099Z SERIAL » 0x0105000b800170 (7 bytes) -2024-09-06T11:03:32.099Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 8 bit -2024-09-06T11:03:32.101Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:32.102Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T11:03:32.103Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:32.103Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T11:03:32.104Z CNTRLR Switching to 8-bit node IDs successful -2024-09-06T11:03:32.104Z CNTRLR querying controller IDs... -2024-09-06T11:03:32.105Z SERIAL » 0x01030020dc (5 bytes) -2024-09-06T11:03:32.106Z DRIVER » [REQ] [GetControllerId] -2024-09-06T11:03:32.108Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:32.109Z SERIAL « 0x01080120cab0fedc018f (10 bytes) -2024-09-06T11:03:32.110Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:32.110Z DRIVER « [RES] [GetControllerId] - home ID: 0xcab0fedc - own node ID: 1 -2024-09-06T11:03:32.111Z CNTRLR received controller IDs: - home ID: 0xcab0fedc - own node ID: 1 -2024-09-06T11:03:32.111Z CNTRLR Enabling TX status report... -2024-09-06T11:03:32.112Z SERIAL » 0x0105000b02ff0c (7 bytes) -2024-09-06T11:03:32.112Z DRIVER » [REQ] [SerialAPISetup] - command: SetTxStatusReport - enabled: true -2024-09-06T11:03:32.115Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:32.116Z SERIAL « 0x0105010b0201f3 (7 bytes) -2024-09-06T11:03:32.116Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:32.117Z DRIVER « [RES] [SerialAPISetup] - command: SetTxStatusReport - success: true -2024-09-06T11:03:32.118Z CNTRLR Enabling TX status report successful... -2024-09-06T11:03:32.118Z CNTRLR finding SUC... -2024-09-06T11:03:32.118Z SERIAL » 0x01030056aa (5 bytes) -2024-09-06T11:03:32.119Z DRIVER » [REQ] [GetSUCNodeId] -2024-09-06T11:03:32.122Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:32.122Z SERIAL « 0x0104015600ac (6 bytes) -2024-09-06T11:03:32.123Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:32.123Z DRIVER « [RES] [GetSUCNodeId] - payload: 0x00 -2024-09-06T11:03:32.124Z CNTRLR No SUC present in the network -2024-09-06T11:03:32.124Z CNTRLR There is no SUC/SIS in the network - promoting ourselves... -2024-09-06T11:03:32.125Z SERIAL » 0x01080054010125010285 (10 bytes) -2024-09-06T11:03:32.125Z DRIVER » [REQ] [SetSUCNodeId] - payload: 0x0101250102 -2024-09-06T11:03:32.129Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:32.131Z SERIAL « 0x0104015401af (6 bytes) -2024-09-06T11:03:32.131Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:32.132Z DRIVER « [RES] [SetSUCNodeId] - was executed: true -2024-09-06T11:03:32.133Z CNTRLR Promotion to SUC/SIS succeeded. -2024-09-06T11:03:32.133Z DRIVER all queues idle -2024-09-06T11:03:32.137Z CNTRLR [Node 001] [Manufacturer Specific] manufacturerId: metadata updated -2024-09-06T11:03:32.138Z CNTRLR [Node 001] [Manufacturer Specific] productType: metadata updated -2024-09-06T11:03:32.138Z CNTRLR [Node 001] [Manufacturer Specific] productId: metadata updated -2024-09-06T11:03:32.138Z CNTRLR [Node 001] [+] [Manufacturer Specific] manufacturerId: 634 -2024-09-06T11:03:32.138Z CNTRLR [Node 001] [+] [Manufacturer Specific] productType: 4 -2024-09-06T11:03:32.138Z CNTRLR [Node 001] [+] [Manufacturer Specific] productId: 1552 -2024-09-06T11:03:32.139Z CNTRLR [Node 001] [Version] firmwareVersions: metadata updated -2024-09-06T11:03:32.139Z CNTRLR [Node 001] [+] [Version] firmwareVersions: 1.30 -2024-09-06T11:03:32.139Z CNTRLR [Node 001] [Version] zWaveProtocolVersion: metadata updated -2024-09-06T11:03:32.139Z CNTRLR [Node 001] [+] [Version] zWaveProtocolVersion: "7.21.3" -2024-09-06T11:03:32.139Z CNTRLR [Node 001] [Version] sdkVersion: metadata updated -2024-09-06T11:03:32.140Z CNTRLR [Node 001] [+] [Version] sdkVersion: "7.21.3" -2024-09-06T11:03:32.140Z CNTRLR Interview completed -2024-09-06T11:03:32.140Z DRIVER Network key for S0 configured, enabling S0 security manager... -2024-09-06T11:03:32.140Z DRIVER At least one network key for S2 configured, enabling S2 security manager... -2024-09-06T11:03:32.141Z DRIVER At least one network key for Z-Wave Long Range configured, enabling security m - anager... -2024-09-06T11:03:32.142Z DRIVER driver ready -2024-09-06T11:03:36.782Z CNTRLR Starting inclusion process with strategy Default... -2024-09-06T11:03:36.784Z DRIVER all queues busy -2024-09-06T11:03:36.786Z SERIAL » 0x0105004ac10372 (7 bytes) -2024-09-06T11:03:36.788Z DRIVER » [REQ] [AddNodeToNetwork] - node type: Any - high power: true - network wide: true - callback id: 3 -2024-09-06T11:03:36.790Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:36.797Z SERIAL « 0x0107004a03010000b0 (9 bytes) -2024-09-06T11:03:36.799Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:36.801Z DRIVER « [REQ] [AddNodeToNetwork] - status: Ready - callback id: 3 -2024-09-06T11:03:36.802Z CNTRLR The controller is now ready to add nodes -2024-09-06T11:03:36.802Z DRIVER all queues idle -2024-09-06T11:03:40.838Z SERIAL « 0x0107004a03020000b3 (9 bytes) -2024-09-06T11:03:40.839Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:40.841Z DRIVER « [REQ] [AddNodeToNetwork] - status: NodeFound - callback id: 3 -2024-09-06T11:03:40.842Z DRIVER handling request AddNodeToNetwork (74) -2024-09-06T11:03:40.842Z DRIVER 1 handler registered! -2024-09-06T11:03:40.843Z DRIVER invoking handler #0 -2024-09-06T11:03:40.844Z CNTRLR handling add node request (status = NodeFound) -2024-09-06T11:03:40.942Z SERIAL « 0x0112004a0304020b0201005e989f556c568f7467 (20 bytes) -2024-09-06T11:03:40.944Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:40.946Z DRIVER « [REQ] [AddNodeToNetwork] - status: AddingController - callback id: 3 -2024-09-06T11:03:40.947Z DRIVER handling request AddNodeToNetwork (74) -2024-09-06T11:03:40.947Z DRIVER 1 handler registered! -2024-09-06T11:03:40.948Z DRIVER invoking handler #0 -2024-09-06T11:03:40.948Z CNTRLR handling add node request (status = AddingController) -2024-09-06T11:03:40.952Z DRIVER the message was handled -2024-09-06T11:03:41.361Z SERIAL « 0x0107004a03050200b6 (9 bytes) -2024-09-06T11:03:41.363Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:41.365Z DRIVER « [REQ] [AddNodeToNetwork] - status: ProtocolDone - callback id: 3 -2024-09-06T11:03:41.366Z DRIVER handling request AddNodeToNetwork (74) -2024-09-06T11:03:41.366Z DRIVER 1 handler registered! -2024-09-06T11:03:41.367Z DRIVER invoking handler #0 -2024-09-06T11:03:41.367Z CNTRLR handling add node request (status = ProtocolDone) -2024-09-06T11:03:41.368Z CNTRLR finishing inclusion process... -2024-09-06T11:03:41.369Z DRIVER all queues busy -2024-09-06T11:03:41.371Z SERIAL » 0x0105004ac50471 (7 bytes) -2024-09-06T11:03:41.372Z DRIVER » [REQ] [AddNodeToNetwork] - action: Stop - high power: true - network wide: true - callback id: 4 -2024-09-06T11:03:41.374Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:41.412Z SERIAL « 0x0107004a04060200b2 (9 bytes) -2024-09-06T11:03:41.412Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:41.413Z DRIVER « [REQ] [AddNodeToNetwork] - status: Done - callback id: 4 -2024-09-06T11:03:41.414Z SERIAL » 0x0105004ac50075 (7 bytes) -2024-09-06T11:03:41.414Z DRIVER » [REQ] [AddNodeToNetwork] - action: Stop - high power: true - network wide: true - callback id: 0 -2024-09-06T11:03:41.420Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:41.421Z CNTRLR The inclusion process was stopped -2024-09-06T11:03:41.422Z CNTRLR finished adding node 2: - basic device class: Static Controller - generic device class: Remote Controller - specific device class: Unused - supported CCs: - · Z-Wave Plus Info (0x5e) - · Security (0x98) - · Security 2 (0x9f) - · Transport Service (0x55) - · Supervision (0x6c) - · CRC-16 Encapsulation (0x56) - · Multi Command (0x8f) - · Inclusion Controller (0x74) - controlled CCs: -2024-09-06T11:03:41.422Z CNTRLR » [Node 002] Assigning SUC return route... -2024-09-06T11:03:41.423Z CNTRLR » [Node 002] Deleting SUC return route... -2024-09-06T11:03:41.424Z SERIAL » 0x010500550205a8 (7 bytes) -2024-09-06T11:03:41.424Z DRIVER » [Node 002] [REQ] [DeleteSUCReturnRoute] - payload: 0x0205 -2024-09-06T11:03:41.430Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:41.433Z SERIAL « 0x0104015501ae (6 bytes) -2024-09-06T11:03:41.434Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:41.435Z DRIVER « [RES] [DeleteSUCReturnRoute] - was executed: true -2024-09-06T11:03:41.498Z SERIAL « 0x01210055050000000000000000000000000000000000000000000000000000000 (35 bytes) - 0008e -2024-09-06T11:03:41.500Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:41.501Z DRIVER « [REQ] [DeleteSUCReturnRoute] - callback id: 5 - transmit status: OK -2024-09-06T11:03:41.504Z SERIAL » 0x010500510206af (7 bytes) -2024-09-06T11:03:41.505Z DRIVER » [Node 002] [REQ] [AssignSUCReturnRoute] - payload: 0x0206 -2024-09-06T11:03:41.508Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:41.515Z SERIAL « 0x0104015101aa (6 bytes) -2024-09-06T11:03:41.516Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:41.517Z DRIVER « [RES] [AssignSUCReturnRoute] - was executed: true -2024-09-06T11:03:41.587Z SERIAL « 0x01210051060000000000000000000000000000000000000000000000000000000 (35 bytes) - 00089 -2024-09-06T11:03:41.589Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:41.591Z DRIVER « [REQ] [AssignSUCReturnRoute] - callback id: 6 - transmit status: OK -2024-09-06T11:03:41.600Z SERIAL » 0x010e00a90102029f04250000000007e0 (16 bytes) -2024-09-06T11:03:41.601Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x25 - │ callback id: 7 - └─[Security2CCKEXGet] -2024-09-06T11:03:41.607Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:41.611Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:03:41.611Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:41.612Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:03:41.624Z SERIAL « 0x011d00a90700000100e07f7f7f7f00000300000000030100007f7f7f7f7fd3 (31 bytes) -2024-09-06T11:03:41.625Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:41.625Z DRIVER « [REQ] [SendDataBridge] - callback id: 7 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -32 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:03:51.653Z CNTRLR [Node 002] Timed out while waiting for a response from the node (ZW0201) -2024-09-06T11:03:51.654Z CNTRLR [Node 002] Security S2 bootstrapping failed: did not receive the node's desire - d security classes. -2024-09-06T11:03:51.654Z DRIVER the message was handled -2024-09-06T11:03:51.655Z DRIVER all queues idle -2024-09-06T11:03:56.657Z DRIVER all queues busy -2024-09-06T11:03:56.660Z SERIAL » 0x0103003bc7 (5 bytes) -2024-09-06T11:03:56.662Z DRIVER » [REQ] [GetBackgroundRSSI] -2024-09-06T11:03:56.665Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:56.667Z SERIAL « 0x0107013b9492927f29 (9 bytes) -2024-09-06T11:03:56.668Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:56.669Z DRIVER « [RES] [GetBackgroundRSSI] - channel 0: -108 dBm - channel 1: -110 dBm - channel 2: -110 dBm - channel 3: N/A -2024-09-06T11:03:56.671Z DRIVER all queues idle -2024-09-06T11:04:18.605Z DRIVER ███████╗ ██╗ ██╗ █████╗ ██╗ ██╗ ███████╗ ██╗ ███████╗ - ╚══███╔╝ ██║ ██║ ██╔══██╗ ██║ ██║ ██╔════╝ ██║ ██╔════╝ - ███╔╝ █████╗ ██║ █╗ ██║ ███████║ ██║ ██║ █████╗ ██║ ███████╗ - ███╔╝ ╚════╝ ██║███╗██║ ██╔══██║ ╚██╗ ██╔╝ ██╔══╝ ██ ██║ ╚════██║ - ███████╗ ╚███╔███╔╝ ██║ ██║ ╚████╔╝ ███████╗ ╚█████╔╝ ███████║ - ╚══════╝ ╚══╝╚══╝ ╚═╝ ╚═╝ ╚═══╝ ╚══════╝ ╚════╝ ╚══════╝ -2024-09-06T11:04:18.606Z DRIVER version 13.2.0 -2024-09-06T11:04:18.607Z DRIVER -2024-09-06T11:04:18.607Z DRIVER starting driver... -2024-09-06T11:04:18.607Z DRIVER opening serial port /dev/serial/by-id/usb-Zooz_800_Z-Wave_Stick_533D004242-if0 - 0 -2024-09-06T11:04:18.616Z DRIVER serial port opened -2024-09-06T11:04:18.617Z SERIAL » 0x15 (1 bytes) -2024-09-06T11:04:19.623Z DRIVER loading configuration... -2024-09-06T11:04:19.627Z CONFIG version 13.2.0 -2024-09-06T11:04:19.957Z DRIVER beginning interview... -2024-09-06T11:04:19.957Z DRIVER added request handler for AddNodeToNetwork (0x4a)... - 1 registered -2024-09-06T11:04:19.958Z DRIVER added request handler for RemoveNodeFromNetwork (0x4b)... - 1 registered -2024-09-06T11:04:19.958Z DRIVER added request handler for ReplaceFailedNode (0x63)... - 1 registered -2024-09-06T11:04:19.958Z DRIVER added request handler for SetLearnMode (0x50)... - 1 registered -2024-09-06T11:04:19.958Z CNTRLR querying Serial API capabilities... -2024-09-06T11:04:19.959Z SERIAL » 0x01030007fb (5 bytes) -2024-09-06T11:04:19.959Z DRIVER » [REQ] [GetSerialApiCapabilities] -2024-09-06T11:04:19.962Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:19.973Z SERIAL « 0x012b0107011e027a00040610f6873e88cf2bc04ffbd7fde09700008000808680b (45 bytes) - a0500700000ee7fc000000035 -2024-09-06T11:04:19.974Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:19.974Z DRIVER « [RES] [GetSerialApiCapabilities] - payload: 0x011e027a00040610f6873e88cf2bc04ffbd7fde09700008000808680ba0500700 - 000ee7fc0000000 -2024-09-06T11:04:19.976Z CNTRLR received API capabilities: - firmware version: 1.30 - manufacturer ID: 0x027a - product type: 0x04 - product ID: 0x0610 - supported functions: - · GetSerialApiInitData (0x02) - · SetApplicationNodeInformation (0x03) - · GetControllerCapabilities (0x05) - · SetSerialApiTimeouts (0x06) - · GetSerialApiCapabilities (0x07) - · SoftReset (0x08) - · GetProtocolVersion (0x09) - · SerialAPIStarted (0x0a) - · SerialAPISetup (0x0b) - · SetRFReceiveMode (0x10) - · SendNodeInformation (0x12) - · SendData (0x13) - · SendDataMulticast (0x14) - · GetControllerVersion (0x15) - · SendDataAbort (0x16) - · FUNC_ID_ZW_GET_RANDOM (0x1c) - · GetControllerId (0x20) - · UNKNOWN_FUNC_MEMORY_GET_BYTE (0x21) - · UNKNOWN_FUNC_MEMORY_PUT_BYTE (0x22) - · UNKNOWN_FUNC_MEMORY_GET_BUFFER (0x23) - · UNKNOWN_FUNC_MEMORY_PUT_BUFFER (0x24) - · EnterBootloader (0x27) - · UNKNOWN_FUNC_UNKNOWN_0x28 (0x28) - · GetNVMId (0x29) - · ExtNVMReadLongBuffer (0x2a) - · ExtNVMReadLongByte (0x2c) - · NVMOperations (0x2e) - · ClearTxTimers (0x37) - · GetTxTimers (0x38) - · ClearNetworkStats (0x39) - · GetNetworkStats (0x3a) - · GetBackgroundRSSI (0x3b) - · SetListenBeforeTalkThreshold (0x3c) - · RemoveSpecificNodeIdFromNetwork (0x3f) - · GetNodeProtocolInfo (0x41) - · HardReset (0x42) - · FUNC_ID_ZW_REPLICATION_COMMAND_COMPLETE (0x44) - · FUNC_ID_ZW_REPLICATION_SEND_DATA (0x45) - · AssignReturnRoute (0x46) - · DeleteReturnRoute (0x47) - · RequestNodeNeighborUpdate (0x48) - · ApplicationUpdateRequest (0x49) - · AddNodeToNetwork (0x4a) - · RemoveNodeFromNetwork (0x4b) - · AddPrimaryController (0x4d) - · AssignPriorityReturnRoute (0x4f) - · SetLearnMode (0x50) - · AssignSUCReturnRoute (0x51) - · RequestNetworkUpdate (0x53) - · SetSUCNodeId (0x54) - · DeleteSUCReturnRoute (0x55) - · GetSUCNodeId (0x56) - · SendSUCNodeId (0x57) - · AssignPrioritySUCReturnRoute (0x58) - · ExploreRequestInclusion (0x5e) - · ExploreRequestExclusion (0x5f) - · RequestNodeInfo (0x60) - · RemoveFailedNode (0x61) - · IsFailedNode (0x62) - · ReplaceFailedNode (0x63) - · undefined (0x65) - · RequestProtocolCCEncryption (0x68) - · GetRoutingInfo (0x80) - · LockUnlockLastRoute (0x90) - · GetPriorityRoute (0x92) - · SetPriorityRoute (0x93) - · UNKNOWN_FUNC_UNKNOWN_0x98 (0x98) - · VirtualNodeSetNodeInfo (0xa0) - · VirtualNodeSendNodeInfo (0xa2) - · VirtualNodeSetLearnMode (0xa4) - · GetVirtualNodes (0xa5) - · IsVirtualNode (0xa6) - · BridgeApplicationCommand (0xa8) - · SendDataBridge (0xa9) - · SendDataMulticastBridge (0xab) - · GetLibrary (0xbd) - · SendTestFrame (0xbe) - · GetProtocolStatus (0xbf) - · StartWatchdog (0xd2) - · StopWatchdog (0xd3) - · SetMaximumRoutingAttempts (0xd4) - · SetMaxSmartStartInclusionRequestInterval (0xd6) - · undefined (0xd7) - · undefined (0xd8) - · Shutdown (0xd9) - · GetLongRangeNodes (0xda) - · GetLongRangeChannel (0xdb) - · SetLongRangeChannel (0xdc) - · SetLongRangeShadowNodeIDs (0xdd) - · Proprietary_DE (0xde) - · Proprietary_DF (0xdf) - · Proprietary_E7 (0xe7) - · Proprietary_E8 (0xe8) -2024-09-06T11:04:19.976Z CNTRLR querying additional controller information... -2024-09-06T11:04:19.977Z SERIAL » 0x01030002fe (5 bytes) -2024-09-06T11:04:19.978Z DRIVER » [REQ] [GetSerialApiInitData] -2024-09-06T11:04:19.979Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:19.985Z SERIAL « 0x012501020a081d030000000000000000000000000000000000000000000000000 (39 bytes) - 00000000800cd -2024-09-06T11:04:19.985Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:19.986Z DRIVER « [RES] [GetSerialApiInitData] - payload: 0x0a081d03000000000000000000000000000000000000000000000000000000000 - 800 -2024-09-06T11:04:19.986Z CNTRLR received additional controller information: - Z-Wave API version: 1 (official) - Z-Wave chip type: EFR32ZG23 / ZGM230S - node type Controller - controller role: primary - controller is the SIS: true - controller supports timers: false - Z-Wave Classic nodes: 1, 2 -2024-09-06T11:04:19.987Z CNTRLR querying version info... -2024-09-06T11:04:19.987Z SERIAL » 0x01030015e9 (5 bytes) -2024-09-06T11:04:19.988Z DRIVER » [REQ] [GetControllerVersion] -2024-09-06T11:04:19.993Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:19.997Z SERIAL « 0x011001155a2d5761766520372e3231000794 (18 bytes) -2024-09-06T11:04:19.997Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:19.998Z DRIVER « [RES] [GetControllerVersion] - payload: 0x5a2d5761766520372e32310007 -2024-09-06T11:04:19.999Z CNTRLR received version info: - controller type: Bridge Controller - library version: Z-Wave 7.21 -2024-09-06T11:04:19.999Z CNTRLR querying protocol version info... -2024-09-06T11:04:20.000Z SERIAL » 0x01030009f5 (5 bytes) -2024-09-06T11:04:20.000Z DRIVER » [REQ] [GetProtocolVersion] -2024-09-06T11:04:20.006Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:20.007Z SERIAL « 0x011901090007150300f4353162666237323665306662383733380f (27 bytes) -2024-09-06T11:04:20.007Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:20.008Z DRIVER « [RES] [GetProtocolVersion] - payload: 0x0007150300f435316266623732366530666238373338 -2024-09-06T11:04:20.009Z CNTRLR received protocol version info: - protocol type: Z-Wave - protocol version: 7.21.3 - appl. framework build no.: 244 - git commit hash: 35316266623732366530666238373338 -2024-09-06T11:04:20.009Z CNTRLR querying controller capabilities... -2024-09-06T11:04:20.010Z SERIAL » 0x01030005f9 (5 bytes) -2024-09-06T11:04:20.010Z DRIVER » [REQ] [GetControllerCapabilities] -2024-09-06T11:04:20.015Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:20.016Z SERIAL « 0x010401051ce3 (6 bytes) -2024-09-06T11:04:20.016Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:20.016Z DRIVER « [RES] [GetControllerCapabilities] - payload: 0x1c -2024-09-06T11:04:20.017Z CNTRLR received controller capabilities: - controller role: Primary - is the SUC: true - started this network: true - SIS is present: true - was real primary: true -2024-09-06T11:04:20.018Z CNTRLR querying serial API setup capabilities... -2024-09-06T11:04:20.019Z SERIAL » 0x0104000b01f1 (6 bytes) -2024-09-06T11:04:20.019Z DRIVER » [REQ] [SerialAPISetup] - command: GetSupportedCommands - payload: 0x01 -2024-09-06T11:04:20.025Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:20.025Z SERIAL « 0x0116010b01ff9f8007800000008000000000000000800085 (24 bytes) -2024-09-06T11:04:20.026Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:20.026Z DRIVER « [RES] [SerialAPISetup] - command: GetSupportedCommands - payload: 0xff9f80078000000080000000000000008000 -2024-09-06T11:04:20.027Z CNTRLR supported serial API setup commands: - · GetSupportedCommands - · SetTxStatusReport - · SetLongRangeMaximumTxPower - · SetPowerlevel - · GetLongRangeMaximumTxPower - · GetPowerlevel - · GetMaximumPayloadSize - · GetLongRangeMaximumPayloadSize - · SetPowerlevel16Bit - · GetPowerlevel16Bit - · GetRFRegion - · SetRFRegion - · SetNodeIDType -2024-09-06T11:04:20.027Z CNTRLR querying max. payload size... -2024-09-06T11:04:20.028Z SERIAL » 0x0104000b10e0 (6 bytes) -2024-09-06T11:04:20.028Z DRIVER » [REQ] [SerialAPISetup] - command: GetMaximumPayloadSize - payload: 0x10 -2024-09-06T11:04:20.033Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:20.034Z SERIAL « 0x0105010b102ece (7 bytes) -2024-09-06T11:04:20.034Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:20.035Z DRIVER « [RES] [SerialAPISetup] - command: GetMaximumPayloadSize - maximum payload size: 46 bytes -2024-09-06T11:04:20.036Z CNTRLR maximum payload size: 46 bytes -2024-09-06T11:04:20.036Z CNTRLR supported Z-Wave features: - · SmartStart -2024-09-06T11:04:20.036Z CNTRLR Querying configured RF region... -2024-09-06T11:04:20.037Z SERIAL » 0x0104000b20d0 (6 bytes) -2024-09-06T11:04:20.038Z DRIVER » [REQ] [SerialAPISetup] - command: GetRFRegion - payload: 0x20 -2024-09-06T11:04:20.042Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:20.042Z SERIAL « 0x0105010b2000d0 (7 bytes) -2024-09-06T11:04:20.043Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:20.043Z DRIVER « [RES] [SerialAPISetup] - command: GetRFRegion - region: Europe -2024-09-06T11:04:20.044Z CNTRLR The controller is using RF region Europe -2024-09-06T11:04:20.044Z CNTRLR Querying configured max. Long Range powerlevel... -2024-09-06T11:04:20.045Z SERIAL » 0x0104000b05f5 (6 bytes) -2024-09-06T11:04:20.045Z DRIVER » [REQ] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - payload: 0x05 -2024-09-06T11:04:20.050Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:20.050Z SERIAL « 0x0106010b05008c7a (8 bytes) -2024-09-06T11:04:20.051Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:20.051Z DRIVER « [RES] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - max. TX power (LR): 14.0 dBm -2024-09-06T11:04:20.052Z CNTRLR The max. LR powerlevel is 14.0 dBm -2024-09-06T11:04:20.052Z CNTRLR Querying configured Long Range channel information... -2024-09-06T11:04:20.053Z SERIAL » 0x010300db27 (5 bytes) -2024-09-06T11:04:20.053Z DRIVER » [REQ] [GetLongRangeChannel] -2024-09-06T11:04:20.058Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:20.058Z SERIAL « 0x010501db001030 (7 bytes) -2024-09-06T11:04:20.058Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:20.059Z DRIVER « [RES] [GetLongRangeChannel] - payload: 0x0010 -2024-09-06T11:04:20.059Z CNTRLR received Z-Wave Long Range channel information: - channel: Unsupported - supports auto channel selection: true -2024-09-06T11:04:20.060Z CNTRLR Performing soft reset... -2024-09-06T11:04:20.060Z SERIAL » 0x01030008f4 (5 bytes) -2024-09-06T11:04:20.061Z DRIVER » [REQ] [SoftReset] -2024-09-06T11:04:20.063Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:20.064Z CNTRLR Waiting for the controller to reconnect... -2024-09-06T11:04:20.064Z DRIVER all queues idle -2024-09-06T11:04:20.282Z SERIAL « 0x0112000a0700010100085e989f556c568f740025 (20 bytes) -2024-09-06T11:04:20.283Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:20.283Z DRIVER « [REQ] [SerialAPIStarted] - wake up reason: SoftwareReset - watchdog enabled: false - generic device class: 0x01 - specific device class: 0x00 - always listening: false - supports Long Range: false -2024-09-06T11:04:20.284Z CNTRLR reconnected and restarted -2024-09-06T11:04:20.284Z CNTRLR Starting hardware watchdog... -2024-09-06T11:04:20.284Z CNTRLR Switching serial API to 16-bit node IDs... -2024-09-06T11:04:20.284Z CNTRLR Switching serial API to 8-bit node IDs... -2024-09-06T11:04:20.285Z DRIVER all queues busy -2024-09-06T11:04:20.285Z SERIAL » 0x010300d22e (5 bytes) -2024-09-06T11:04:20.286Z DRIVER » [REQ] [StartWatchdog] -2024-09-06T11:04:20.286Z SERIAL » 0x0105000b800273 (7 bytes) -2024-09-06T11:04:20.287Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 16 bit -2024-09-06T11:04:20.288Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:20.289Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:20.291Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T11:04:20.292Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:20.292Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T11:04:20.293Z CNTRLR Switching to 16-bit node IDs successful -2024-09-06T11:04:20.293Z SERIAL » 0x0105000b800170 (7 bytes) -2024-09-06T11:04:20.294Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 8 bit -2024-09-06T11:04:20.296Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:20.301Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T11:04:20.301Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:20.302Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T11:04:20.302Z CNTRLR Switching to 8-bit node IDs successful -2024-09-06T11:04:20.302Z CNTRLR querying controller IDs... -2024-09-06T11:04:20.303Z SERIAL » 0x01030020dc (5 bytes) -2024-09-06T11:04:20.303Z DRIVER » [REQ] [GetControllerId] -2024-09-06T11:04:20.305Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:20.307Z SERIAL « 0x01080120cab0fedc018f (10 bytes) -2024-09-06T11:04:20.307Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:20.308Z DRIVER « [RES] [GetControllerId] - home ID: 0xcab0fedc - own node ID: 1 -2024-09-06T11:04:20.309Z CNTRLR received controller IDs: - home ID: 0xcab0fedc - own node ID: 1 -2024-09-06T11:04:20.309Z CNTRLR Enabling TX status report... -2024-09-06T11:04:20.309Z SERIAL » 0x0105000b02ff0c (7 bytes) -2024-09-06T11:04:20.310Z DRIVER » [REQ] [SerialAPISetup] - command: SetTxStatusReport - enabled: true -2024-09-06T11:04:20.313Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:20.314Z SERIAL « 0x0105010b0201f3 (7 bytes) -2024-09-06T11:04:20.314Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:20.314Z DRIVER « [RES] [SerialAPISetup] - command: SetTxStatusReport - success: true -2024-09-06T11:04:20.315Z CNTRLR Enabling TX status report successful... -2024-09-06T11:04:20.315Z CNTRLR finding SUC... -2024-09-06T11:04:20.316Z SERIAL » 0x01030056aa (5 bytes) -2024-09-06T11:04:20.316Z DRIVER » [REQ] [GetSUCNodeId] -2024-09-06T11:04:20.323Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:20.324Z SERIAL « 0x0104015601ad (6 bytes) -2024-09-06T11:04:20.324Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:20.326Z DRIVER « [RES] [GetSUCNodeId] - payload: 0x01 -2024-09-06T11:04:20.327Z CNTRLR This is the SUC -2024-09-06T11:04:20.327Z DRIVER all queues idle -2024-09-06T11:04:20.353Z DRIVER Cache file for homeId 0xcab0fedc found, attempting to restore the network from - cache... -2024-09-06T11:04:20.362Z CNTRLR [Node 001] Embedded device config loaded -2024-09-06T11:04:20.363Z DRIVER Restoring the network from cache was successful! -2024-09-06T11:04:20.363Z CNTRLR [Node 001] [Manufacturer Specific] manufacturerId: metadata updated -2024-09-06T11:04:20.364Z CNTRLR [Node 001] [Manufacturer Specific] productType: metadata updated -2024-09-06T11:04:20.364Z CNTRLR [Node 001] [Manufacturer Specific] productId: metadata updated -2024-09-06T11:04:20.365Z CNTRLR [Node 001] [~] [Manufacturer Specific] manufacturerId: 634 => 634 -2024-09-06T11:04:20.366Z CNTRLR [Node 001] [~] [Manufacturer Specific] productType: 4 => 4 -2024-09-06T11:04:20.367Z CNTRLR [Node 001] [~] [Manufacturer Specific] productId: 1552 => 1552 -2024-09-06T11:04:20.367Z CNTRLR [Node 001] [Version] firmwareVersions: metadata updated -2024-09-06T11:04:20.368Z CNTRLR [Node 001] [~] [Version] firmwareVersions: 1.30 => 1.30 -2024-09-06T11:04:20.368Z CNTRLR [Node 001] [Version] zWaveProtocolVersion: metadata updated -2024-09-06T11:04:20.369Z CNTRLR [Node 001] [~] [Version] zWaveProtocolVersion: "7.21.3" => "7.21.3" -2024-09-06T11:04:20.370Z CNTRLR [Node 001] [Version] sdkVersion: metadata updated -2024-09-06T11:04:20.370Z CNTRLR [Node 001] [~] [Version] sdkVersion: "7.21.3" => "7.21.3" -2024-09-06T11:04:20.370Z CNTRLR Interview completed -2024-09-06T11:04:20.371Z DRIVER Network key for S0 configured, enabling S0 security manager... -2024-09-06T11:04:20.373Z DRIVER At least one network key for S2 configured, enabling S2 security manager... -2024-09-06T11:04:20.376Z DRIVER At least one network key for Z-Wave Long Range configured, enabling security m - anager... -2024-09-06T11:04:20.377Z DRIVER driver ready -2024-09-06T11:04:21.380Z CNTRLR Updating the controller NIF... -2024-09-06T11:04:21.382Z DRIVER all queues busy -2024-09-06T11:04:21.384Z SERIAL » 0x010f0003010100085e989f556c568f7436 (17 bytes) -2024-09-06T11:04:21.386Z DRIVER » [REQ] [SetApplicationNodeInformation] - is listening: true - generic device class: 0x01 - specific device class: 0x00 - supported CCs: - · Z-Wave Plus Info - · Security - · Security 2 - · Transport Service - · Supervision - · CRC-16 Encapsulation - · Multi Command - · Inclusion Controller - controlled CCs: -2024-09-06T11:04:21.396Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:21.399Z CNTRLR performing hard reset... -2024-09-06T11:04:21.402Z SERIAL » 0x0104004201b8 (6 bytes) -2024-09-06T11:04:21.403Z DRIVER » [REQ] [HardReset] - callback id: 1 -2024-09-06T11:04:21.406Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:21.441Z SERIAL « 0x0104004201b8 (6 bytes) -2024-09-06T11:04:21.442Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:21.442Z DRIVER « [REQ] [HardReset] - callback id: 1 -2024-09-06T11:04:21.443Z CNTRLR hard reset succeeded -2024-09-06T11:04:21.444Z CNTRLR querying Serial API capabilities... -2024-09-06T11:04:21.445Z SERIAL » 0x01030007fb (5 bytes) -2024-09-06T11:04:21.445Z DRIVER » [REQ] [GetSerialApiCapabilities] -2024-09-06T11:04:21.447Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:21.452Z SERIAL « 0x012b0107011e027a00040610f6873e88cf2bc04ffbd7fde09700008000808680b (45 bytes) - a0500700000ee7fc000000035 -2024-09-06T11:04:21.452Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:21.453Z DRIVER « [RES] [GetSerialApiCapabilities] - payload: 0x011e027a00040610f6873e88cf2bc04ffbd7fde09700008000808680ba0500700 - 000ee7fc0000000 -2024-09-06T11:04:21.453Z CNTRLR received API capabilities: - firmware version: 1.30 - manufacturer ID: 0x027a - product type: 0x04 - product ID: 0x0610 - supported functions: - · GetSerialApiInitData (0x02) - · SetApplicationNodeInformation (0x03) - · GetControllerCapabilities (0x05) - · SetSerialApiTimeouts (0x06) - · GetSerialApiCapabilities (0x07) - · SoftReset (0x08) - · GetProtocolVersion (0x09) - · SerialAPIStarted (0x0a) - · SerialAPISetup (0x0b) - · SetRFReceiveMode (0x10) - · SendNodeInformation (0x12) - · SendData (0x13) - · SendDataMulticast (0x14) - · GetControllerVersion (0x15) - · SendDataAbort (0x16) - · FUNC_ID_ZW_GET_RANDOM (0x1c) - · GetControllerId (0x20) - · UNKNOWN_FUNC_MEMORY_GET_BYTE (0x21) - · UNKNOWN_FUNC_MEMORY_PUT_BYTE (0x22) - · UNKNOWN_FUNC_MEMORY_GET_BUFFER (0x23) - · UNKNOWN_FUNC_MEMORY_PUT_BUFFER (0x24) - · EnterBootloader (0x27) - · UNKNOWN_FUNC_UNKNOWN_0x28 (0x28) - · GetNVMId (0x29) - · ExtNVMReadLongBuffer (0x2a) - · ExtNVMReadLongByte (0x2c) - · NVMOperations (0x2e) - · ClearTxTimers (0x37) - · GetTxTimers (0x38) - · ClearNetworkStats (0x39) - · GetNetworkStats (0x3a) - · GetBackgroundRSSI (0x3b) - · SetListenBeforeTalkThreshold (0x3c) - · RemoveSpecificNodeIdFromNetwork (0x3f) - · GetNodeProtocolInfo (0x41) - · HardReset (0x42) - · FUNC_ID_ZW_REPLICATION_COMMAND_COMPLETE (0x44) - · FUNC_ID_ZW_REPLICATION_SEND_DATA (0x45) - · AssignReturnRoute (0x46) - · DeleteReturnRoute (0x47) - · RequestNodeNeighborUpdate (0x48) - · ApplicationUpdateRequest (0x49) - · AddNodeToNetwork (0x4a) - · RemoveNodeFromNetwork (0x4b) - · AddPrimaryController (0x4d) - · AssignPriorityReturnRoute (0x4f) - · SetLearnMode (0x50) - · AssignSUCReturnRoute (0x51) - · RequestNetworkUpdate (0x53) - · SetSUCNodeId (0x54) - · DeleteSUCReturnRoute (0x55) - · GetSUCNodeId (0x56) - · SendSUCNodeId (0x57) - · AssignPrioritySUCReturnRoute (0x58) - · ExploreRequestInclusion (0x5e) - · ExploreRequestExclusion (0x5f) - · RequestNodeInfo (0x60) - · RemoveFailedNode (0x61) - · IsFailedNode (0x62) - · ReplaceFailedNode (0x63) - · undefined (0x65) - · RequestProtocolCCEncryption (0x68) - · GetRoutingInfo (0x80) - · LockUnlockLastRoute (0x90) - · GetPriorityRoute (0x92) - · SetPriorityRoute (0x93) - · UNKNOWN_FUNC_UNKNOWN_0x98 (0x98) - · VirtualNodeSetNodeInfo (0xa0) - · VirtualNodeSendNodeInfo (0xa2) - · VirtualNodeSetLearnMode (0xa4) - · GetVirtualNodes (0xa5) - · IsVirtualNode (0xa6) - · BridgeApplicationCommand (0xa8) - · SendDataBridge (0xa9) - · SendDataMulticastBridge (0xab) - · GetLibrary (0xbd) - · SendTestFrame (0xbe) - · GetProtocolStatus (0xbf) - · StartWatchdog (0xd2) - · StopWatchdog (0xd3) - · SetMaximumRoutingAttempts (0xd4) - · SetMaxSmartStartInclusionRequestInterval (0xd6) - · undefined (0xd7) - · undefined (0xd8) - · Shutdown (0xd9) - · GetLongRangeNodes (0xda) - · GetLongRangeChannel (0xdb) - · SetLongRangeChannel (0xdc) - · SetLongRangeShadowNodeIDs (0xdd) - · Proprietary_DE (0xde) - · Proprietary_DF (0xdf) - · Proprietary_E7 (0xe7) - · Proprietary_E8 (0xe8) -2024-09-06T11:04:21.454Z CNTRLR querying additional controller information... -2024-09-06T11:04:21.454Z SERIAL » 0x01030002fe (5 bytes) -2024-09-06T11:04:21.455Z DRIVER » [REQ] [GetSerialApiInitData] -2024-09-06T11:04:21.457Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:21.462Z SERIAL « 0x012501020a001d010000000000000000000000000000000000000000000000000 (39 bytes) - 00000000800c7 -2024-09-06T11:04:21.463Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:21.463Z DRIVER « [RES] [GetSerialApiInitData] - payload: 0x0a001d01000000000000000000000000000000000000000000000000000000000 - 800 -2024-09-06T11:04:21.464Z CNTRLR received additional controller information: - Z-Wave API version: 1 (official) - Z-Wave chip type: EFR32ZG23 / ZGM230S - node type Controller - controller role: primary - controller is the SIS: false - controller supports timers: false - Z-Wave Classic nodes: 1 -2024-09-06T11:04:21.464Z CNTRLR querying version info... -2024-09-06T11:04:21.465Z SERIAL » 0x01030015e9 (5 bytes) -2024-09-06T11:04:21.466Z DRIVER » [REQ] [GetControllerVersion] -2024-09-06T11:04:21.468Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:21.470Z SERIAL « 0x011001155a2d5761766520372e3231000794 (18 bytes) -2024-09-06T11:04:21.470Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:21.471Z DRIVER « [RES] [GetControllerVersion] - payload: 0x5a2d5761766520372e32310007 -2024-09-06T11:04:21.472Z CNTRLR received version info: - controller type: Bridge Controller - library version: Z-Wave 7.21 -2024-09-06T11:04:21.472Z CNTRLR querying protocol version info... -2024-09-06T11:04:21.472Z SERIAL » 0x01030009f5 (5 bytes) -2024-09-06T11:04:21.473Z DRIVER » [REQ] [GetProtocolVersion] -2024-09-06T11:04:21.475Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:21.478Z SERIAL « 0x011901090007150300f4353162666237323665306662383733380f (27 bytes) -2024-09-06T11:04:21.478Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:21.479Z DRIVER « [RES] [GetProtocolVersion] - payload: 0x0007150300f435316266623732366530666238373338 -2024-09-06T11:04:21.480Z CNTRLR received protocol version info: - protocol type: Z-Wave - protocol version: 7.21.3 - appl. framework build no.: 244 - git commit hash: 35316266623732366530666238373338 -2024-09-06T11:04:21.480Z CNTRLR querying controller capabilities... -2024-09-06T11:04:21.481Z SERIAL » 0x01030005f9 (5 bytes) -2024-09-06T11:04:21.481Z DRIVER » [REQ] [GetControllerCapabilities] -2024-09-06T11:04:21.483Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:21.484Z SERIAL « 0x0104010528d7 (6 bytes) -2024-09-06T11:04:21.485Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:21.485Z DRIVER « [RES] [GetControllerCapabilities] - payload: 0x28 -2024-09-06T11:04:21.486Z CNTRLR received controller capabilities: - controller role: Primary - is the SUC: false - started this network: true - SIS is present: false - was real primary: true -2024-09-06T11:04:21.486Z CNTRLR querying serial API setup capabilities... -2024-09-06T11:04:21.487Z SERIAL » 0x0104000b01f1 (6 bytes) -2024-09-06T11:04:21.487Z DRIVER » [REQ] [SerialAPISetup] - command: GetSupportedCommands - payload: 0x01 -2024-09-06T11:04:21.492Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:21.493Z SERIAL « 0x0116010b01ff9f8007800000008000000000000000800085 (24 bytes) -2024-09-06T11:04:21.493Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:21.494Z DRIVER « [RES] [SerialAPISetup] - command: GetSupportedCommands - payload: 0xff9f80078000000080000000000000008000 -2024-09-06T11:04:21.494Z CNTRLR supported serial API setup commands: - · GetSupportedCommands - · SetTxStatusReport - · SetLongRangeMaximumTxPower - · SetPowerlevel - · GetLongRangeMaximumTxPower - · GetPowerlevel - · GetMaximumPayloadSize - · GetLongRangeMaximumPayloadSize - · SetPowerlevel16Bit - · GetPowerlevel16Bit - · GetRFRegion - · SetRFRegion - · SetNodeIDType -2024-09-06T11:04:21.495Z CNTRLR querying max. payload size... -2024-09-06T11:04:21.495Z SERIAL » 0x0104000b10e0 (6 bytes) -2024-09-06T11:04:21.496Z DRIVER » [REQ] [SerialAPISetup] - command: GetMaximumPayloadSize - payload: 0x10 -2024-09-06T11:04:21.498Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:21.499Z SERIAL « 0x0105010b102ece (7 bytes) -2024-09-06T11:04:21.499Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:21.500Z DRIVER « [RES] [SerialAPISetup] - command: GetMaximumPayloadSize - maximum payload size: 46 bytes -2024-09-06T11:04:21.501Z CNTRLR maximum payload size: 46 bytes -2024-09-06T11:04:21.501Z CNTRLR supported Z-Wave features: - · SmartStart -2024-09-06T11:04:21.501Z CNTRLR Querying configured RF region... -2024-09-06T11:04:21.502Z SERIAL » 0x0104000b20d0 (6 bytes) -2024-09-06T11:04:21.502Z DRIVER » [REQ] [SerialAPISetup] - command: GetRFRegion - payload: 0x20 -2024-09-06T11:04:21.504Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:21.506Z SERIAL « 0x0105010b2000d0 (7 bytes) -2024-09-06T11:04:21.506Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:21.507Z DRIVER « [RES] [SerialAPISetup] - command: GetRFRegion - region: Europe -2024-09-06T11:04:21.508Z CNTRLR The controller is using RF region Europe -2024-09-06T11:04:21.508Z CNTRLR Querying configured max. Long Range powerlevel... -2024-09-06T11:04:21.509Z SERIAL » 0x0104000b05f5 (6 bytes) -2024-09-06T11:04:21.509Z DRIVER » [REQ] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - payload: 0x05 -2024-09-06T11:04:21.511Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:21.512Z SERIAL « 0x0106010b05008c7a (8 bytes) -2024-09-06T11:04:21.513Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:21.513Z DRIVER « [RES] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - max. TX power (LR): 14.0 dBm -2024-09-06T11:04:21.514Z CNTRLR The max. LR powerlevel is 14.0 dBm -2024-09-06T11:04:21.514Z CNTRLR Querying configured Long Range channel information... -2024-09-06T11:04:21.515Z SERIAL » 0x010300db27 (5 bytes) -2024-09-06T11:04:21.515Z DRIVER » [REQ] [GetLongRangeChannel] -2024-09-06T11:04:21.517Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:21.518Z SERIAL « 0x010501db001030 (7 bytes) -2024-09-06T11:04:21.519Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:21.520Z DRIVER « [RES] [GetLongRangeChannel] - payload: 0x0010 -2024-09-06T11:04:21.520Z CNTRLR received Z-Wave Long Range channel information: - channel: Unsupported - supports auto channel selection: true -2024-09-06T11:04:21.520Z CNTRLR Performing soft reset... -2024-09-06T11:04:21.521Z SERIAL » 0x01030008f4 (5 bytes) -2024-09-06T11:04:21.522Z DRIVER » [REQ] [SoftReset] -2024-09-06T11:04:21.524Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:21.525Z CNTRLR Waiting for the controller to reconnect... -2024-09-06T11:04:21.525Z DRIVER all queues idle -2024-09-06T11:04:21.750Z SERIAL « 0x0112000a0700010100085e989f556c568f740025 (20 bytes) -2024-09-06T11:04:21.751Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:21.753Z DRIVER « [REQ] [SerialAPIStarted] - wake up reason: SoftwareReset - watchdog enabled: false - generic device class: 0x01 - specific device class: 0x00 - always listening: false - supports Long Range: false -2024-09-06T11:04:21.754Z CNTRLR reconnected and restarted -2024-09-06T11:04:21.755Z CNTRLR Starting hardware watchdog... -2024-09-06T11:04:21.756Z CNTRLR Switching serial API to 16-bit node IDs... -2024-09-06T11:04:21.757Z CNTRLR Switching serial API to 8-bit node IDs... -2024-09-06T11:04:21.758Z DRIVER all queues busy -2024-09-06T11:04:21.760Z SERIAL » 0x010300d22e (5 bytes) -2024-09-06T11:04:21.761Z DRIVER » [REQ] [StartWatchdog] -2024-09-06T11:04:21.764Z SERIAL » 0x0105000b800273 (7 bytes) -2024-09-06T11:04:21.765Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 16 bit -2024-09-06T11:04:21.767Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:21.768Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:21.769Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T11:04:21.770Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:21.771Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T11:04:21.772Z CNTRLR Switching to 16-bit node IDs successful -2024-09-06T11:04:21.772Z SERIAL » 0x0105000b800170 (7 bytes) -2024-09-06T11:04:21.773Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 8 bit -2024-09-06T11:04:21.776Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:21.777Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T11:04:21.777Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:21.778Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T11:04:21.779Z CNTRLR Switching to 8-bit node IDs successful -2024-09-06T11:04:21.779Z CNTRLR querying controller IDs... -2024-09-06T11:04:21.780Z SERIAL » 0x01030020dc (5 bytes) -2024-09-06T11:04:21.780Z DRIVER » [REQ] [GetControllerId] -2024-09-06T11:04:21.782Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:21.784Z SERIAL « 0x01080120e18c56950179 (10 bytes) -2024-09-06T11:04:21.784Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:21.785Z DRIVER « [RES] [GetControllerId] - home ID: 0xe18c5695 - own node ID: 1 -2024-09-06T11:04:21.786Z CNTRLR received controller IDs: - home ID: 0xe18c5695 - own node ID: 1 -2024-09-06T11:04:21.786Z CNTRLR Enabling TX status report... -2024-09-06T11:04:21.787Z SERIAL » 0x0105000b02ff0c (7 bytes) -2024-09-06T11:04:21.787Z DRIVER » [REQ] [SerialAPISetup] - command: SetTxStatusReport - enabled: true -2024-09-06T11:04:21.789Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:21.790Z SERIAL « 0x0105010b0201f3 (7 bytes) -2024-09-06T11:04:21.791Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:21.792Z DRIVER « [RES] [SerialAPISetup] - command: SetTxStatusReport - success: true -2024-09-06T11:04:21.793Z CNTRLR Enabling TX status report successful... -2024-09-06T11:04:21.793Z CNTRLR finding SUC... -2024-09-06T11:04:21.794Z SERIAL » 0x01030056aa (5 bytes) -2024-09-06T11:04:21.794Z DRIVER » [REQ] [GetSUCNodeId] -2024-09-06T11:04:21.796Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:21.797Z SERIAL « 0x0104015600ac (6 bytes) -2024-09-06T11:04:21.798Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:21.798Z DRIVER « [RES] [GetSUCNodeId] - payload: 0x00 -2024-09-06T11:04:21.799Z CNTRLR No SUC present in the network -2024-09-06T11:04:21.799Z CNTRLR There is no SUC/SIS in the network - promoting ourselves... -2024-09-06T11:04:21.800Z SERIAL » 0x01080054010125010285 (10 bytes) -2024-09-06T11:04:21.800Z DRIVER » [REQ] [SetSUCNodeId] - payload: 0x0101250102 -2024-09-06T11:04:21.803Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:21.805Z SERIAL « 0x0104015401af (6 bytes) -2024-09-06T11:04:21.806Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:21.806Z DRIVER « [RES] [SetSUCNodeId] - was executed: true -2024-09-06T11:04:21.807Z CNTRLR Promotion to SUC/SIS succeeded. -2024-09-06T11:04:21.808Z DRIVER all queues idle -2024-09-06T11:04:21.813Z CNTRLR [Node 001] [Manufacturer Specific] manufacturerId: metadata updated -2024-09-06T11:04:21.814Z CNTRLR [Node 001] [Manufacturer Specific] productType: metadata updated -2024-09-06T11:04:21.814Z CNTRLR [Node 001] [Manufacturer Specific] productId: metadata updated -2024-09-06T11:04:21.814Z CNTRLR [Node 001] [+] [Manufacturer Specific] manufacturerId: 634 -2024-09-06T11:04:21.814Z CNTRLR [Node 001] [+] [Manufacturer Specific] productType: 4 -2024-09-06T11:04:21.814Z CNTRLR [Node 001] [+] [Manufacturer Specific] productId: 1552 -2024-09-06T11:04:21.815Z CNTRLR [Node 001] [Version] firmwareVersions: metadata updated -2024-09-06T11:04:21.815Z CNTRLR [Node 001] [+] [Version] firmwareVersions: 1.30 -2024-09-06T11:04:21.815Z CNTRLR [Node 001] [Version] zWaveProtocolVersion: metadata updated -2024-09-06T11:04:21.815Z CNTRLR [Node 001] [+] [Version] zWaveProtocolVersion: "7.21.3" -2024-09-06T11:04:21.815Z CNTRLR [Node 001] [Version] sdkVersion: metadata updated -2024-09-06T11:04:21.816Z CNTRLR [Node 001] [+] [Version] sdkVersion: "7.21.3" -2024-09-06T11:04:21.816Z CNTRLR Interview completed -2024-09-06T11:04:21.816Z DRIVER Network key for S0 configured, enabling S0 security manager... -2024-09-06T11:04:21.816Z DRIVER At least one network key for S2 configured, enabling S2 security manager... -2024-09-06T11:04:21.817Z DRIVER At least one network key for Z-Wave Long Range configured, enabling security m - anager... -2024-09-06T11:04:21.818Z DRIVER driver ready -2024-09-06T11:04:26.444Z CNTRLR Starting inclusion process with strategy Default... -2024-09-06T11:04:26.446Z DRIVER all queues busy -2024-09-06T11:04:26.448Z SERIAL » 0x0105004ac10372 (7 bytes) -2024-09-06T11:04:26.450Z DRIVER » [REQ] [AddNodeToNetwork] - node type: Any - high power: true - network wide: true - callback id: 3 -2024-09-06T11:04:26.453Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:26.462Z SERIAL « 0x0107004a03010000b0 (9 bytes) -2024-09-06T11:04:26.464Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:26.466Z DRIVER « [REQ] [AddNodeToNetwork] - status: Ready - callback id: 3 -2024-09-06T11:04:26.467Z CNTRLR The controller is now ready to add nodes -2024-09-06T11:04:26.468Z DRIVER all queues idle -2024-09-06T11:04:30.499Z SERIAL « 0x0107004a03020000b3 (9 bytes) -2024-09-06T11:04:30.500Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:30.502Z DRIVER « [REQ] [AddNodeToNetwork] - status: NodeFound - callback id: 3 -2024-09-06T11:04:30.503Z DRIVER handling request AddNodeToNetwork (74) -2024-09-06T11:04:30.503Z DRIVER 1 handler registered! -2024-09-06T11:04:30.504Z DRIVER invoking handler #0 -2024-09-06T11:04:30.506Z CNTRLR handling add node request (status = NodeFound) -2024-09-06T11:04:30.605Z SERIAL « 0x0112004a0304020b0201005e989f556c568f7467 (20 bytes) -2024-09-06T11:04:30.606Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:30.608Z DRIVER « [REQ] [AddNodeToNetwork] - status: AddingController - callback id: 3 -2024-09-06T11:04:30.609Z DRIVER handling request AddNodeToNetwork (74) -2024-09-06T11:04:30.609Z DRIVER 1 handler registered! -2024-09-06T11:04:30.610Z DRIVER invoking handler #0 -2024-09-06T11:04:30.610Z CNTRLR handling add node request (status = AddingController) -2024-09-06T11:04:30.615Z DRIVER the message was handled -2024-09-06T11:04:31.024Z SERIAL « 0x0107004a03050200b6 (9 bytes) -2024-09-06T11:04:31.025Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:31.027Z DRIVER « [REQ] [AddNodeToNetwork] - status: ProtocolDone - callback id: 3 -2024-09-06T11:04:31.028Z DRIVER handling request AddNodeToNetwork (74) -2024-09-06T11:04:31.029Z DRIVER 1 handler registered! -2024-09-06T11:04:31.029Z DRIVER invoking handler #0 -2024-09-06T11:04:31.030Z CNTRLR handling add node request (status = ProtocolDone) -2024-09-06T11:04:31.031Z CNTRLR finishing inclusion process... -2024-09-06T11:04:31.032Z DRIVER all queues busy -2024-09-06T11:04:31.034Z SERIAL » 0x0105004ac50471 (7 bytes) -2024-09-06T11:04:31.036Z DRIVER » [REQ] [AddNodeToNetwork] - action: Stop - high power: true - network wide: true - callback id: 4 -2024-09-06T11:04:31.038Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:31.081Z SERIAL « 0x0107004a04060200b2 (9 bytes) -2024-09-06T11:04:31.082Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:31.085Z DRIVER « [REQ] [AddNodeToNetwork] - status: Done - callback id: 4 -2024-09-06T11:04:31.088Z SERIAL » 0x0105004ac50075 (7 bytes) -2024-09-06T11:04:31.089Z DRIVER » [REQ] [AddNodeToNetwork] - action: Stop - high power: true - network wide: true - callback id: 0 -2024-09-06T11:04:31.102Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:31.104Z CNTRLR The inclusion process was stopped -2024-09-06T11:04:31.104Z CNTRLR finished adding node 2: - basic device class: Static Controller - generic device class: Remote Controller - specific device class: Unused - supported CCs: - · Z-Wave Plus Info (0x5e) - · Security (0x98) - · Security 2 (0x9f) - · Transport Service (0x55) - · Supervision (0x6c) - · CRC-16 Encapsulation (0x56) - · Multi Command (0x8f) - · Inclusion Controller (0x74) - controlled CCs: -2024-09-06T11:04:31.105Z CNTRLR » [Node 002] Assigning SUC return route... -2024-09-06T11:04:31.106Z CNTRLR » [Node 002] Deleting SUC return route... -2024-09-06T11:04:31.108Z SERIAL » 0x010500550205a8 (7 bytes) -2024-09-06T11:04:31.109Z DRIVER » [Node 002] [REQ] [DeleteSUCReturnRoute] - payload: 0x0205 -2024-09-06T11:04:31.118Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:31.119Z SERIAL « 0x0104015501ae (6 bytes) -2024-09-06T11:04:31.119Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:31.121Z DRIVER « [RES] [DeleteSUCReturnRoute] - was executed: true -2024-09-06T11:04:31.182Z SERIAL « 0x01210055050000000000000000000000000000000000000000000000000000000 (35 bytes) - 0008e -2024-09-06T11:04:31.183Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:31.184Z DRIVER « [REQ] [DeleteSUCReturnRoute] - callback id: 5 - transmit status: OK -2024-09-06T11:04:31.185Z SERIAL » 0x010500510206af (7 bytes) -2024-09-06T11:04:31.186Z DRIVER » [Node 002] [REQ] [AssignSUCReturnRoute] - payload: 0x0206 -2024-09-06T11:04:31.188Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:31.195Z SERIAL « 0x0104015101aa (6 bytes) -2024-09-06T11:04:31.196Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:31.197Z DRIVER « [RES] [AssignSUCReturnRoute] - was executed: true -2024-09-06T11:04:31.268Z SERIAL « 0x01210051060000000000000000000000000000000000000000000000000000000 (35 bytes) - 00089 -2024-09-06T11:04:31.269Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:31.270Z DRIVER « [REQ] [AssignSUCReturnRoute] - callback id: 6 - transmit status: OK -2024-09-06T11:04:31.273Z SERIAL » 0x010e00a90102029f04250000000007e0 (16 bytes) -2024-09-06T11:04:31.274Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x25 - │ callback id: 7 - └─[Security2CCKEXGet] -2024-09-06T11:04:31.278Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:31.284Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:04:31.285Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:31.286Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:04:31.297Z SERIAL « 0x011d00a90700000100e07f7f7f7f00000300000000030100007f7f7f7f7fd3 (31 bytes) -2024-09-06T11:04:31.298Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:31.299Z DRIVER « [REQ] [SendDataBridge] - callback id: 7 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -32 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:04:41.328Z CNTRLR [Node 002] Timed out while waiting for a response from the node (ZW0201) -2024-09-06T11:04:41.330Z CNTRLR [Node 002] Security S2 bootstrapping failed: did not receive the node's desire - d security classes. -2024-09-06T11:04:41.332Z DRIVER the message was handled -2024-09-06T11:04:41.333Z DRIVER all queues idle -2024-09-06T11:04:46.334Z DRIVER all queues busy -2024-09-06T11:04:46.338Z SERIAL » 0x0103003bc7 (5 bytes) -2024-09-06T11:04:46.339Z DRIVER » [REQ] [GetBackgroundRSSI] -2024-09-06T11:04:46.342Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:46.344Z SERIAL « 0x0107013b9392927f2e (9 bytes) -2024-09-06T11:04:46.345Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:46.346Z DRIVER « [RES] [GetBackgroundRSSI] - channel 0: -109 dBm - channel 1: -110 dBm - channel 2: -110 dBm - channel 3: N/A -2024-09-06T11:04:46.348Z DRIVER all queues idle -2024-09-06T11:04:56.865Z DRIVER ███████╗ ██╗ ██╗ █████╗ ██╗ ██╗ ███████╗ ██╗ ███████╗ - ╚══███╔╝ ██║ ██║ ██╔══██╗ ██║ ██║ ██╔════╝ ██║ ██╔════╝ - ███╔╝ █████╗ ██║ █╗ ██║ ███████║ ██║ ██║ █████╗ ██║ ███████╗ - ███╔╝ ╚════╝ ██║███╗██║ ██╔══██║ ╚██╗ ██╔╝ ██╔══╝ ██ ██║ ╚════██║ - ███████╗ ╚███╔███╔╝ ██║ ██║ ╚████╔╝ ███████╗ ╚█████╔╝ ███████║ - ╚══════╝ ╚══╝╚══╝ ╚═╝ ╚═╝ ╚═══╝ ╚══════╝ ╚════╝ ╚══════╝ -2024-09-06T11:04:56.867Z DRIVER version 13.2.0 -2024-09-06T11:04:56.867Z DRIVER -2024-09-06T11:04:56.868Z DRIVER starting driver... -2024-09-06T11:04:56.868Z DRIVER opening serial port /dev/serial/by-id/usb-Zooz_800_Z-Wave_Stick_533D004242-if0 - 0 -2024-09-06T11:04:56.876Z DRIVER serial port opened -2024-09-06T11:04:56.877Z SERIAL » 0x15 (1 bytes) -2024-09-06T11:04:57.883Z DRIVER loading configuration... -2024-09-06T11:04:57.889Z CONFIG version 13.2.0 -2024-09-06T11:04:58.207Z DRIVER beginning interview... -2024-09-06T11:04:58.209Z DRIVER added request handler for AddNodeToNetwork (0x4a)... - 1 registered -2024-09-06T11:04:58.209Z DRIVER added request handler for RemoveNodeFromNetwork (0x4b)... - 1 registered -2024-09-06T11:04:58.209Z DRIVER added request handler for ReplaceFailedNode (0x63)... - 1 registered -2024-09-06T11:04:58.209Z DRIVER added request handler for SetLearnMode (0x50)... - 1 registered -2024-09-06T11:04:58.210Z CNTRLR querying Serial API capabilities... -2024-09-06T11:04:58.221Z SERIAL » 0x01030007fb (5 bytes) -2024-09-06T11:04:58.222Z DRIVER » [REQ] [GetSerialApiCapabilities] -2024-09-06T11:04:58.226Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:58.230Z SERIAL « 0x012b0107011e027a00040610f6873e88cf2bc04ffbd7fde09700008000808680b (45 bytes) - a0500700000ee7fc000000035 -2024-09-06T11:04:58.231Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:58.232Z DRIVER « [RES] [GetSerialApiCapabilities] - payload: 0x011e027a00040610f6873e88cf2bc04ffbd7fde09700008000808680ba0500700 - 000ee7fc0000000 -2024-09-06T11:04:58.234Z CNTRLR received API capabilities: - firmware version: 1.30 - manufacturer ID: 0x027a - product type: 0x04 - product ID: 0x0610 - supported functions: - · GetSerialApiInitData (0x02) - · SetApplicationNodeInformation (0x03) - · GetControllerCapabilities (0x05) - · SetSerialApiTimeouts (0x06) - · GetSerialApiCapabilities (0x07) - · SoftReset (0x08) - · GetProtocolVersion (0x09) - · SerialAPIStarted (0x0a) - · SerialAPISetup (0x0b) - · SetRFReceiveMode (0x10) - · SendNodeInformation (0x12) - · SendData (0x13) - · SendDataMulticast (0x14) - · GetControllerVersion (0x15) - · SendDataAbort (0x16) - · FUNC_ID_ZW_GET_RANDOM (0x1c) - · GetControllerId (0x20) - · UNKNOWN_FUNC_MEMORY_GET_BYTE (0x21) - · UNKNOWN_FUNC_MEMORY_PUT_BYTE (0x22) - · UNKNOWN_FUNC_MEMORY_GET_BUFFER (0x23) - · UNKNOWN_FUNC_MEMORY_PUT_BUFFER (0x24) - · EnterBootloader (0x27) - · UNKNOWN_FUNC_UNKNOWN_0x28 (0x28) - · GetNVMId (0x29) - · ExtNVMReadLongBuffer (0x2a) - · ExtNVMReadLongByte (0x2c) - · NVMOperations (0x2e) - · ClearTxTimers (0x37) - · GetTxTimers (0x38) - · ClearNetworkStats (0x39) - · GetNetworkStats (0x3a) - · GetBackgroundRSSI (0x3b) - · SetListenBeforeTalkThreshold (0x3c) - · RemoveSpecificNodeIdFromNetwork (0x3f) - · GetNodeProtocolInfo (0x41) - · HardReset (0x42) - · FUNC_ID_ZW_REPLICATION_COMMAND_COMPLETE (0x44) - · FUNC_ID_ZW_REPLICATION_SEND_DATA (0x45) - · AssignReturnRoute (0x46) - · DeleteReturnRoute (0x47) - · RequestNodeNeighborUpdate (0x48) - · ApplicationUpdateRequest (0x49) - · AddNodeToNetwork (0x4a) - · RemoveNodeFromNetwork (0x4b) - · AddPrimaryController (0x4d) - · AssignPriorityReturnRoute (0x4f) - · SetLearnMode (0x50) - · AssignSUCReturnRoute (0x51) - · RequestNetworkUpdate (0x53) - · SetSUCNodeId (0x54) - · DeleteSUCReturnRoute (0x55) - · GetSUCNodeId (0x56) - · SendSUCNodeId (0x57) - · AssignPrioritySUCReturnRoute (0x58) - · ExploreRequestInclusion (0x5e) - · ExploreRequestExclusion (0x5f) - · RequestNodeInfo (0x60) - · RemoveFailedNode (0x61) - · IsFailedNode (0x62) - · ReplaceFailedNode (0x63) - · undefined (0x65) - · RequestProtocolCCEncryption (0x68) - · GetRoutingInfo (0x80) - · LockUnlockLastRoute (0x90) - · GetPriorityRoute (0x92) - · SetPriorityRoute (0x93) - · UNKNOWN_FUNC_UNKNOWN_0x98 (0x98) - · VirtualNodeSetNodeInfo (0xa0) - · VirtualNodeSendNodeInfo (0xa2) - · VirtualNodeSetLearnMode (0xa4) - · GetVirtualNodes (0xa5) - · IsVirtualNode (0xa6) - · BridgeApplicationCommand (0xa8) - · SendDataBridge (0xa9) - · SendDataMulticastBridge (0xab) - · GetLibrary (0xbd) - · SendTestFrame (0xbe) - · GetProtocolStatus (0xbf) - · StartWatchdog (0xd2) - · StopWatchdog (0xd3) - · SetMaximumRoutingAttempts (0xd4) - · SetMaxSmartStartInclusionRequestInterval (0xd6) - · undefined (0xd7) - · undefined (0xd8) - · Shutdown (0xd9) - · GetLongRangeNodes (0xda) - · GetLongRangeChannel (0xdb) - · SetLongRangeChannel (0xdc) - · SetLongRangeShadowNodeIDs (0xdd) - · Proprietary_DE (0xde) - · Proprietary_DF (0xdf) - · Proprietary_E7 (0xe7) - · Proprietary_E8 (0xe8) -2024-09-06T11:04:58.234Z CNTRLR querying additional controller information... -2024-09-06T11:04:58.236Z SERIAL » 0x01030002fe (5 bytes) -2024-09-06T11:04:58.236Z DRIVER » [REQ] [GetSerialApiInitData] -2024-09-06T11:04:58.242Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:58.247Z SERIAL « 0x012501020a081d030000000000000000000000000000000000000000000000000 (39 bytes) - 00000000800cd -2024-09-06T11:04:58.248Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:58.249Z DRIVER « [RES] [GetSerialApiInitData] - payload: 0x0a081d03000000000000000000000000000000000000000000000000000000000 - 800 -2024-09-06T11:04:58.250Z CNTRLR received additional controller information: - Z-Wave API version: 1 (official) - Z-Wave chip type: EFR32ZG23 / ZGM230S - node type Controller - controller role: primary - controller is the SIS: true - controller supports timers: false - Z-Wave Classic nodes: 1, 2 -2024-09-06T11:04:58.251Z CNTRLR querying version info... -2024-09-06T11:04:58.252Z SERIAL » 0x01030015e9 (5 bytes) -2024-09-06T11:04:58.253Z DRIVER » [REQ] [GetControllerVersion] -2024-09-06T11:04:58.258Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:58.258Z SERIAL « 0x011001155a2d5761766520372e3231000794 (18 bytes) -2024-09-06T11:04:58.259Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:58.260Z DRIVER « [RES] [GetControllerVersion] - payload: 0x5a2d5761766520372e32310007 -2024-09-06T11:04:58.261Z CNTRLR received version info: - controller type: Bridge Controller - library version: Z-Wave 7.21 -2024-09-06T11:04:58.261Z CNTRLR querying protocol version info... -2024-09-06T11:04:58.263Z SERIAL » 0x01030009f5 (5 bytes) -2024-09-06T11:04:58.263Z DRIVER » [REQ] [GetProtocolVersion] -2024-09-06T11:04:58.269Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:58.269Z SERIAL « 0x011901090007150300f4353162666237323665306662383733380f (27 bytes) -2024-09-06T11:04:58.270Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:58.270Z DRIVER « [RES] [GetProtocolVersion] - payload: 0x0007150300f435316266623732366530666238373338 -2024-09-06T11:04:58.271Z CNTRLR received protocol version info: - protocol type: Z-Wave - protocol version: 7.21.3 - appl. framework build no.: 244 - git commit hash: 35316266623732366530666238373338 -2024-09-06T11:04:58.271Z CNTRLR querying controller capabilities... -2024-09-06T11:04:58.273Z SERIAL » 0x01030005f9 (5 bytes) -2024-09-06T11:04:58.273Z DRIVER » [REQ] [GetControllerCapabilities] -2024-09-06T11:04:58.278Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:58.279Z SERIAL « 0x010401051ce3 (6 bytes) -2024-09-06T11:04:58.279Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:58.280Z DRIVER « [RES] [GetControllerCapabilities] - payload: 0x1c -2024-09-06T11:04:58.281Z CNTRLR received controller capabilities: - controller role: Primary - is the SUC: true - started this network: true - SIS is present: true - was real primary: true -2024-09-06T11:04:58.281Z CNTRLR querying serial API setup capabilities... -2024-09-06T11:04:58.282Z SERIAL » 0x0104000b01f1 (6 bytes) -2024-09-06T11:04:58.282Z DRIVER » [REQ] [SerialAPISetup] - command: GetSupportedCommands - payload: 0x01 -2024-09-06T11:04:58.287Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:58.287Z SERIAL « 0x0116010b01ff9f8007800000008000000000000000800085 (24 bytes) -2024-09-06T11:04:58.288Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:58.289Z DRIVER « [RES] [SerialAPISetup] - command: GetSupportedCommands - payload: 0xff9f80078000000080000000000000008000 -2024-09-06T11:04:58.289Z CNTRLR supported serial API setup commands: - · GetSupportedCommands - · SetTxStatusReport - · SetLongRangeMaximumTxPower - · SetPowerlevel - · GetLongRangeMaximumTxPower - · GetPowerlevel - · GetMaximumPayloadSize - · GetLongRangeMaximumPayloadSize - · SetPowerlevel16Bit - · GetPowerlevel16Bit - · GetRFRegion - · SetRFRegion - · SetNodeIDType -2024-09-06T11:04:58.290Z CNTRLR querying max. payload size... -2024-09-06T11:04:58.291Z SERIAL » 0x0104000b10e0 (6 bytes) -2024-09-06T11:04:58.291Z DRIVER » [REQ] [SerialAPISetup] - command: GetMaximumPayloadSize - payload: 0x10 -2024-09-06T11:04:58.296Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:58.296Z SERIAL « 0x0105010b102ece (7 bytes) -2024-09-06T11:04:58.297Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:58.297Z DRIVER « [RES] [SerialAPISetup] - command: GetMaximumPayloadSize - maximum payload size: 46 bytes -2024-09-06T11:04:58.298Z CNTRLR maximum payload size: 46 bytes -2024-09-06T11:04:58.298Z CNTRLR supported Z-Wave features: - · SmartStart -2024-09-06T11:04:58.299Z CNTRLR Querying configured RF region... -2024-09-06T11:04:58.300Z SERIAL » 0x0104000b20d0 (6 bytes) -2024-09-06T11:04:58.300Z DRIVER » [REQ] [SerialAPISetup] - command: GetRFRegion - payload: 0x20 -2024-09-06T11:04:58.304Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:58.305Z SERIAL « 0x0105010b2000d0 (7 bytes) -2024-09-06T11:04:58.305Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:58.305Z DRIVER « [RES] [SerialAPISetup] - command: GetRFRegion - region: Europe -2024-09-06T11:04:58.306Z CNTRLR The controller is using RF region Europe -2024-09-06T11:04:58.306Z CNTRLR Querying configured max. Long Range powerlevel... -2024-09-06T11:04:58.307Z SERIAL » 0x0104000b05f5 (6 bytes) -2024-09-06T11:04:58.308Z DRIVER » [REQ] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - payload: 0x05 -2024-09-06T11:04:58.312Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:58.312Z SERIAL « 0x0106010b05008c7a (8 bytes) -2024-09-06T11:04:58.313Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:58.313Z DRIVER « [RES] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - max. TX power (LR): 14.0 dBm -2024-09-06T11:04:58.314Z CNTRLR The max. LR powerlevel is 14.0 dBm -2024-09-06T11:04:58.314Z CNTRLR Querying configured Long Range channel information... -2024-09-06T11:04:58.315Z SERIAL » 0x010300db27 (5 bytes) -2024-09-06T11:04:58.315Z DRIVER » [REQ] [GetLongRangeChannel] -2024-09-06T11:04:58.319Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:58.320Z SERIAL « 0x010501db001030 (7 bytes) -2024-09-06T11:04:58.320Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:58.320Z DRIVER « [RES] [GetLongRangeChannel] - payload: 0x0010 -2024-09-06T11:04:58.321Z CNTRLR received Z-Wave Long Range channel information: - channel: Unsupported - supports auto channel selection: true -2024-09-06T11:04:58.321Z CNTRLR Performing soft reset... -2024-09-06T11:04:58.322Z SERIAL » 0x01030008f4 (5 bytes) -2024-09-06T11:04:58.323Z DRIVER » [REQ] [SoftReset] -2024-09-06T11:04:58.326Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:58.327Z CNTRLR Waiting for the controller to reconnect... -2024-09-06T11:04:58.328Z DRIVER all queues idle -2024-09-06T11:04:58.552Z SERIAL « 0x0112000a0700010100085e989f556c568f740025 (20 bytes) -2024-09-06T11:04:58.553Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:58.553Z DRIVER « [REQ] [SerialAPIStarted] - wake up reason: SoftwareReset - watchdog enabled: false - generic device class: 0x01 - specific device class: 0x00 - always listening: false - supports Long Range: false -2024-09-06T11:04:58.554Z CNTRLR reconnected and restarted -2024-09-06T11:04:58.554Z CNTRLR Starting hardware watchdog... -2024-09-06T11:04:58.554Z CNTRLR Switching serial API to 16-bit node IDs... -2024-09-06T11:04:58.554Z CNTRLR Switching serial API to 8-bit node IDs... -2024-09-06T11:04:58.555Z DRIVER all queues busy -2024-09-06T11:04:58.555Z SERIAL » 0x010300d22e (5 bytes) -2024-09-06T11:04:58.556Z DRIVER » [REQ] [StartWatchdog] -2024-09-06T11:04:58.556Z SERIAL » 0x0105000b800273 (7 bytes) -2024-09-06T11:04:58.557Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 16 bit -2024-09-06T11:04:58.558Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:58.559Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:58.561Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T11:04:58.561Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:58.562Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T11:04:58.563Z CNTRLR Switching to 16-bit node IDs successful -2024-09-06T11:04:58.563Z SERIAL » 0x0105000b800170 (7 bytes) -2024-09-06T11:04:58.564Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 8 bit -2024-09-06T11:04:58.568Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:58.570Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T11:04:58.570Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:58.571Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T11:04:58.571Z CNTRLR Switching to 8-bit node IDs successful -2024-09-06T11:04:58.572Z CNTRLR querying controller IDs... -2024-09-06T11:04:58.572Z SERIAL » 0x01030020dc (5 bytes) -2024-09-06T11:04:58.573Z DRIVER » [REQ] [GetControllerId] -2024-09-06T11:04:58.574Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:58.576Z SERIAL « 0x01080120e18c56950179 (10 bytes) -2024-09-06T11:04:58.576Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:58.577Z DRIVER « [RES] [GetControllerId] - home ID: 0xe18c5695 - own node ID: 1 -2024-09-06T11:04:58.577Z CNTRLR received controller IDs: - home ID: 0xe18c5695 - own node ID: 1 -2024-09-06T11:04:58.578Z CNTRLR Enabling TX status report... -2024-09-06T11:04:58.578Z SERIAL » 0x0105000b02ff0c (7 bytes) -2024-09-06T11:04:58.579Z DRIVER » [REQ] [SerialAPISetup] - command: SetTxStatusReport - enabled: true -2024-09-06T11:04:58.582Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:58.583Z SERIAL « 0x0105010b0201f3 (7 bytes) -2024-09-06T11:04:58.583Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:58.583Z DRIVER « [RES] [SerialAPISetup] - command: SetTxStatusReport - success: true -2024-09-06T11:04:58.584Z CNTRLR Enabling TX status report successful... -2024-09-06T11:04:58.584Z CNTRLR finding SUC... -2024-09-06T11:04:58.585Z SERIAL » 0x01030056aa (5 bytes) -2024-09-06T11:04:58.585Z DRIVER » [REQ] [GetSUCNodeId] -2024-09-06T11:04:58.587Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:58.588Z SERIAL « 0x0104015601ad (6 bytes) -2024-09-06T11:04:58.589Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:58.589Z DRIVER « [RES] [GetSUCNodeId] - payload: 0x01 -2024-09-06T11:04:58.590Z CNTRLR This is the SUC -2024-09-06T11:04:58.590Z DRIVER all queues idle -2024-09-06T11:04:58.603Z DRIVER Cache file for homeId 0xe18c5695 found, attempting to restore the network from - cache... -2024-09-06T11:04:58.607Z CNTRLR [Node 001] Embedded device config loaded -2024-09-06T11:04:58.607Z DRIVER Restoring the network from cache was successful! -2024-09-06T11:04:58.607Z CNTRLR [Node 001] [Manufacturer Specific] manufacturerId: metadata updated -2024-09-06T11:04:58.608Z CNTRLR [Node 001] [Manufacturer Specific] productType: metadata updated -2024-09-06T11:04:58.608Z CNTRLR [Node 001] [Manufacturer Specific] productId: metadata updated -2024-09-06T11:04:58.608Z CNTRLR [Node 001] [~] [Manufacturer Specific] manufacturerId: 634 => 634 -2024-09-06T11:04:58.609Z CNTRLR [Node 001] [~] [Manufacturer Specific] productType: 4 => 4 -2024-09-06T11:04:58.609Z CNTRLR [Node 001] [~] [Manufacturer Specific] productId: 1552 => 1552 -2024-09-06T11:04:58.610Z CNTRLR [Node 001] [Version] firmwareVersions: metadata updated -2024-09-06T11:04:58.610Z CNTRLR [Node 001] [~] [Version] firmwareVersions: 1.30 => 1.30 -2024-09-06T11:04:58.611Z CNTRLR [Node 001] [Version] zWaveProtocolVersion: metadata updated -2024-09-06T11:04:58.611Z CNTRLR [Node 001] [~] [Version] zWaveProtocolVersion: "7.21.3" => "7.21.3" -2024-09-06T11:04:58.611Z CNTRLR [Node 001] [Version] sdkVersion: metadata updated -2024-09-06T11:04:58.612Z CNTRLR [Node 001] [~] [Version] sdkVersion: "7.21.3" => "7.21.3" -2024-09-06T11:04:58.612Z CNTRLR Interview completed -2024-09-06T11:04:58.612Z DRIVER Network key for S0 configured, enabling S0 security manager... -2024-09-06T11:04:58.613Z DRIVER At least one network key for S2 configured, enabling S2 security manager... -2024-09-06T11:04:58.615Z DRIVER At least one network key for Z-Wave Long Range configured, enabling security m - anager... -2024-09-06T11:04:58.615Z DRIVER driver ready -2024-09-06T11:04:59.617Z CNTRLR Updating the controller NIF... -2024-09-06T11:04:59.619Z DRIVER all queues busy -2024-09-06T11:04:59.622Z SERIAL » 0x010f0003010100085e989f556c568f7436 (17 bytes) -2024-09-06T11:04:59.623Z DRIVER » [REQ] [SetApplicationNodeInformation] - is listening: true - generic device class: 0x01 - specific device class: 0x00 - supported CCs: - · Z-Wave Plus Info - · Security - · Security 2 - · Transport Service - · Supervision - · CRC-16 Encapsulation - · Multi Command - · Inclusion Controller - controlled CCs: -2024-09-06T11:04:59.628Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:59.631Z CNTRLR performing hard reset... -2024-09-06T11:04:59.633Z SERIAL » 0x0104004201b8 (6 bytes) -2024-09-06T11:04:59.634Z DRIVER » [REQ] [HardReset] - callback id: 1 -2024-09-06T11:04:59.636Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:59.657Z SERIAL « 0x0104004201b8 (6 bytes) -2024-09-06T11:04:59.658Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:59.659Z DRIVER « [REQ] [HardReset] - callback id: 1 -2024-09-06T11:04:59.659Z CNTRLR hard reset succeeded -2024-09-06T11:04:59.660Z CNTRLR querying Serial API capabilities... -2024-09-06T11:04:59.661Z SERIAL » 0x01030007fb (5 bytes) -2024-09-06T11:04:59.662Z DRIVER » [REQ] [GetSerialApiCapabilities] -2024-09-06T11:04:59.664Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:59.668Z SERIAL « 0x012b0107011e027a00040610f6873e88cf2bc04ffbd7fde09700008000808680b (45 bytes) - a0500700000ee7fc000000035 -2024-09-06T11:04:59.669Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:59.670Z DRIVER « [RES] [GetSerialApiCapabilities] - payload: 0x011e027a00040610f6873e88cf2bc04ffbd7fde09700008000808680ba0500700 - 000ee7fc0000000 -2024-09-06T11:04:59.671Z CNTRLR received API capabilities: - firmware version: 1.30 - manufacturer ID: 0x027a - product type: 0x04 - product ID: 0x0610 - supported functions: - · GetSerialApiInitData (0x02) - · SetApplicationNodeInformation (0x03) - · GetControllerCapabilities (0x05) - · SetSerialApiTimeouts (0x06) - · GetSerialApiCapabilities (0x07) - · SoftReset (0x08) - · GetProtocolVersion (0x09) - · SerialAPIStarted (0x0a) - · SerialAPISetup (0x0b) - · SetRFReceiveMode (0x10) - · SendNodeInformation (0x12) - · SendData (0x13) - · SendDataMulticast (0x14) - · GetControllerVersion (0x15) - · SendDataAbort (0x16) - · FUNC_ID_ZW_GET_RANDOM (0x1c) - · GetControllerId (0x20) - · UNKNOWN_FUNC_MEMORY_GET_BYTE (0x21) - · UNKNOWN_FUNC_MEMORY_PUT_BYTE (0x22) - · UNKNOWN_FUNC_MEMORY_GET_BUFFER (0x23) - · UNKNOWN_FUNC_MEMORY_PUT_BUFFER (0x24) - · EnterBootloader (0x27) - · UNKNOWN_FUNC_UNKNOWN_0x28 (0x28) - · GetNVMId (0x29) - · ExtNVMReadLongBuffer (0x2a) - · ExtNVMReadLongByte (0x2c) - · NVMOperations (0x2e) - · ClearTxTimers (0x37) - · GetTxTimers (0x38) - · ClearNetworkStats (0x39) - · GetNetworkStats (0x3a) - · GetBackgroundRSSI (0x3b) - · SetListenBeforeTalkThreshold (0x3c) - · RemoveSpecificNodeIdFromNetwork (0x3f) - · GetNodeProtocolInfo (0x41) - · HardReset (0x42) - · FUNC_ID_ZW_REPLICATION_COMMAND_COMPLETE (0x44) - · FUNC_ID_ZW_REPLICATION_SEND_DATA (0x45) - · AssignReturnRoute (0x46) - · DeleteReturnRoute (0x47) - · RequestNodeNeighborUpdate (0x48) - · ApplicationUpdateRequest (0x49) - · AddNodeToNetwork (0x4a) - · RemoveNodeFromNetwork (0x4b) - · AddPrimaryController (0x4d) - · AssignPriorityReturnRoute (0x4f) - · SetLearnMode (0x50) - · AssignSUCReturnRoute (0x51) - · RequestNetworkUpdate (0x53) - · SetSUCNodeId (0x54) - · DeleteSUCReturnRoute (0x55) - · GetSUCNodeId (0x56) - · SendSUCNodeId (0x57) - · AssignPrioritySUCReturnRoute (0x58) - · ExploreRequestInclusion (0x5e) - · ExploreRequestExclusion (0x5f) - · RequestNodeInfo (0x60) - · RemoveFailedNode (0x61) - · IsFailedNode (0x62) - · ReplaceFailedNode (0x63) - · undefined (0x65) - · RequestProtocolCCEncryption (0x68) - · GetRoutingInfo (0x80) - · LockUnlockLastRoute (0x90) - · GetPriorityRoute (0x92) - · SetPriorityRoute (0x93) - · UNKNOWN_FUNC_UNKNOWN_0x98 (0x98) - · VirtualNodeSetNodeInfo (0xa0) - · VirtualNodeSendNodeInfo (0xa2) - · VirtualNodeSetLearnMode (0xa4) - · GetVirtualNodes (0xa5) - · IsVirtualNode (0xa6) - · BridgeApplicationCommand (0xa8) - · SendDataBridge (0xa9) - · SendDataMulticastBridge (0xab) - · GetLibrary (0xbd) - · SendTestFrame (0xbe) - · GetProtocolStatus (0xbf) - · StartWatchdog (0xd2) - · StopWatchdog (0xd3) - · SetMaximumRoutingAttempts (0xd4) - · SetMaxSmartStartInclusionRequestInterval (0xd6) - · undefined (0xd7) - · undefined (0xd8) - · Shutdown (0xd9) - · GetLongRangeNodes (0xda) - · GetLongRangeChannel (0xdb) - · SetLongRangeChannel (0xdc) - · SetLongRangeShadowNodeIDs (0xdd) - · Proprietary_DE (0xde) - · Proprietary_DF (0xdf) - · Proprietary_E7 (0xe7) - · Proprietary_E8 (0xe8) -2024-09-06T11:04:59.671Z CNTRLR querying additional controller information... -2024-09-06T11:04:59.672Z SERIAL » 0x01030002fe (5 bytes) -2024-09-06T11:04:59.672Z DRIVER » [REQ] [GetSerialApiInitData] -2024-09-06T11:04:59.674Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:59.679Z SERIAL « 0x012501020a001d010000000000000000000000000000000000000000000000000 (39 bytes) - 00000000800c7 -2024-09-06T11:04:59.680Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:59.680Z DRIVER « [RES] [GetSerialApiInitData] - payload: 0x0a001d01000000000000000000000000000000000000000000000000000000000 - 800 -2024-09-06T11:04:59.681Z CNTRLR received additional controller information: - Z-Wave API version: 1 (official) - Z-Wave chip type: EFR32ZG23 / ZGM230S - node type Controller - controller role: primary - controller is the SIS: false - controller supports timers: false - Z-Wave Classic nodes: 1 -2024-09-06T11:04:59.681Z CNTRLR querying version info... -2024-09-06T11:04:59.682Z SERIAL » 0x01030015e9 (5 bytes) -2024-09-06T11:04:59.683Z DRIVER » [REQ] [GetControllerVersion] -2024-09-06T11:04:59.685Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:59.687Z SERIAL « 0x011001155a2d5761766520372e3231000794 (18 bytes) -2024-09-06T11:04:59.688Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:59.688Z DRIVER « [RES] [GetControllerVersion] - payload: 0x5a2d5761766520372e32310007 -2024-09-06T11:04:59.689Z CNTRLR received version info: - controller type: Bridge Controller - library version: Z-Wave 7.21 -2024-09-06T11:04:59.689Z CNTRLR querying protocol version info... -2024-09-06T11:04:59.689Z SERIAL » 0x01030009f5 (5 bytes) -2024-09-06T11:04:59.690Z DRIVER » [REQ] [GetProtocolVersion] -2024-09-06T11:04:59.692Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:59.695Z SERIAL « 0x011901090007150300f4353162666237323665306662383733380f (27 bytes) -2024-09-06T11:04:59.695Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:59.696Z DRIVER « [RES] [GetProtocolVersion] - payload: 0x0007150300f435316266623732366530666238373338 -2024-09-06T11:04:59.697Z CNTRLR received protocol version info: - protocol type: Z-Wave - protocol version: 7.21.3 - appl. framework build no.: 244 - git commit hash: 35316266623732366530666238373338 -2024-09-06T11:04:59.697Z CNTRLR querying controller capabilities... -2024-09-06T11:04:59.698Z SERIAL » 0x01030005f9 (5 bytes) -2024-09-06T11:04:59.698Z DRIVER » [REQ] [GetControllerCapabilities] -2024-09-06T11:04:59.701Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:59.702Z SERIAL « 0x0104010528d7 (6 bytes) -2024-09-06T11:04:59.702Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:59.703Z DRIVER « [RES] [GetControllerCapabilities] - payload: 0x28 -2024-09-06T11:04:59.704Z CNTRLR received controller capabilities: - controller role: Primary - is the SUC: false - started this network: true - SIS is present: false - was real primary: true -2024-09-06T11:04:59.704Z CNTRLR querying serial API setup capabilities... -2024-09-06T11:04:59.705Z SERIAL » 0x0104000b01f1 (6 bytes) -2024-09-06T11:04:59.705Z DRIVER » [REQ] [SerialAPISetup] - command: GetSupportedCommands - payload: 0x01 -2024-09-06T11:04:59.710Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:59.710Z SERIAL « 0x0116010b01ff9f8007800000008000000000000000800085 (24 bytes) -2024-09-06T11:04:59.711Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:59.712Z DRIVER « [RES] [SerialAPISetup] - command: GetSupportedCommands - payload: 0xff9f80078000000080000000000000008000 -2024-09-06T11:04:59.713Z CNTRLR supported serial API setup commands: - · GetSupportedCommands - · SetTxStatusReport - · SetLongRangeMaximumTxPower - · SetPowerlevel - · GetLongRangeMaximumTxPower - · GetPowerlevel - · GetMaximumPayloadSize - · GetLongRangeMaximumPayloadSize - · SetPowerlevel16Bit - · GetPowerlevel16Bit - · GetRFRegion - · SetRFRegion - · SetNodeIDType -2024-09-06T11:04:59.713Z CNTRLR querying max. payload size... -2024-09-06T11:04:59.714Z SERIAL » 0x0104000b10e0 (6 bytes) -2024-09-06T11:04:59.715Z DRIVER » [REQ] [SerialAPISetup] - command: GetMaximumPayloadSize - payload: 0x10 -2024-09-06T11:04:59.717Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:59.718Z SERIAL « 0x0105010b102ece (7 bytes) -2024-09-06T11:04:59.718Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:59.719Z DRIVER « [RES] [SerialAPISetup] - command: GetMaximumPayloadSize - maximum payload size: 46 bytes -2024-09-06T11:04:59.720Z CNTRLR maximum payload size: 46 bytes -2024-09-06T11:04:59.720Z CNTRLR supported Z-Wave features: - · SmartStart -2024-09-06T11:04:59.721Z CNTRLR Querying configured RF region... -2024-09-06T11:04:59.722Z SERIAL » 0x0104000b20d0 (6 bytes) -2024-09-06T11:04:59.722Z DRIVER » [REQ] [SerialAPISetup] - command: GetRFRegion - payload: 0x20 -2024-09-06T11:04:59.724Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:59.726Z SERIAL « 0x0105010b2000d0 (7 bytes) -2024-09-06T11:04:59.726Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:59.727Z DRIVER « [RES] [SerialAPISetup] - command: GetRFRegion - region: Europe -2024-09-06T11:04:59.728Z CNTRLR The controller is using RF region Europe -2024-09-06T11:04:59.729Z CNTRLR Querying configured max. Long Range powerlevel... -2024-09-06T11:04:59.730Z SERIAL » 0x0104000b05f5 (6 bytes) -2024-09-06T11:04:59.730Z DRIVER » [REQ] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - payload: 0x05 -2024-09-06T11:04:59.733Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:59.734Z SERIAL « 0x0106010b05008c7a (8 bytes) -2024-09-06T11:04:59.735Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:59.735Z DRIVER « [RES] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - max. TX power (LR): 14.0 dBm -2024-09-06T11:04:59.736Z CNTRLR The max. LR powerlevel is 14.0 dBm -2024-09-06T11:04:59.737Z CNTRLR Querying configured Long Range channel information... -2024-09-06T11:04:59.737Z SERIAL » 0x010300db27 (5 bytes) -2024-09-06T11:04:59.738Z DRIVER » [REQ] [GetLongRangeChannel] -2024-09-06T11:04:59.740Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:59.741Z SERIAL « 0x010501db001030 (7 bytes) -2024-09-06T11:04:59.741Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:59.742Z DRIVER « [RES] [GetLongRangeChannel] - payload: 0x0010 -2024-09-06T11:04:59.743Z CNTRLR received Z-Wave Long Range channel information: - channel: Unsupported - supports auto channel selection: true -2024-09-06T11:04:59.743Z CNTRLR Performing soft reset... -2024-09-06T11:04:59.744Z SERIAL » 0x01030008f4 (5 bytes) -2024-09-06T11:04:59.744Z DRIVER » [REQ] [SoftReset] -2024-09-06T11:04:59.746Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:59.748Z CNTRLR Waiting for the controller to reconnect... -2024-09-06T11:04:59.748Z DRIVER all queues idle -2024-09-06T11:04:59.965Z SERIAL « 0x0112000a0700010100085e989f556c568f740025 (20 bytes) -2024-09-06T11:04:59.966Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:59.968Z DRIVER « [REQ] [SerialAPIStarted] - wake up reason: SoftwareReset - watchdog enabled: false - generic device class: 0x01 - specific device class: 0x00 - always listening: false - supports Long Range: false -2024-09-06T11:04:59.969Z CNTRLR reconnected and restarted -2024-09-06T11:04:59.970Z CNTRLR Starting hardware watchdog... -2024-09-06T11:04:59.971Z CNTRLR Switching serial API to 16-bit node IDs... -2024-09-06T11:04:59.972Z CNTRLR Switching serial API to 8-bit node IDs... -2024-09-06T11:04:59.973Z DRIVER all queues busy -2024-09-06T11:04:59.974Z SERIAL » 0x010300d22e (5 bytes) -2024-09-06T11:04:59.975Z DRIVER » [REQ] [StartWatchdog] -2024-09-06T11:04:59.978Z SERIAL » 0x0105000b800273 (7 bytes) -2024-09-06T11:04:59.979Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 16 bit -2024-09-06T11:04:59.981Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:59.983Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:59.984Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T11:04:59.984Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:59.985Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T11:04:59.986Z CNTRLR Switching to 16-bit node IDs successful -2024-09-06T11:04:59.987Z SERIAL » 0x0105000b800170 (7 bytes) -2024-09-06T11:04:59.987Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 8 bit -2024-09-06T11:04:59.990Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:59.991Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T11:04:59.992Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:59.992Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T11:04:59.993Z CNTRLR Switching to 8-bit node IDs successful -2024-09-06T11:04:59.993Z CNTRLR querying controller IDs... -2024-09-06T11:04:59.994Z SERIAL » 0x01030020dc (5 bytes) -2024-09-06T11:04:59.994Z DRIVER » [REQ] [GetControllerId] -2024-09-06T11:04:59.996Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:59.997Z SERIAL « 0x01080120c80a10c501c0 (10 bytes) -2024-09-06T11:04:59.998Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:59.998Z DRIVER « [RES] [GetControllerId] - home ID: 0xc80a10c5 - own node ID: 1 -2024-09-06T11:04:59.999Z CNTRLR received controller IDs: - home ID: 0xc80a10c5 - own node ID: 1 -2024-09-06T11:04:59.999Z CNTRLR Enabling TX status report... -2024-09-06T11:05:00.000Z SERIAL » 0x0105000b02ff0c (7 bytes) -2024-09-06T11:05:00.000Z DRIVER » [REQ] [SerialAPISetup] - command: SetTxStatusReport - enabled: true -2024-09-06T11:05:00.003Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:00.004Z SERIAL « 0x0105010b0201f3 (7 bytes) -2024-09-06T11:05:00.004Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:00.005Z DRIVER « [RES] [SerialAPISetup] - command: SetTxStatusReport - success: true -2024-09-06T11:05:00.006Z CNTRLR Enabling TX status report successful... -2024-09-06T11:05:00.006Z CNTRLR finding SUC... -2024-09-06T11:05:00.006Z SERIAL » 0x01030056aa (5 bytes) -2024-09-06T11:05:00.007Z DRIVER » [REQ] [GetSUCNodeId] -2024-09-06T11:05:00.009Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:00.009Z SERIAL « 0x0104015600ac (6 bytes) -2024-09-06T11:05:00.010Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:00.010Z DRIVER « [RES] [GetSUCNodeId] - payload: 0x00 -2024-09-06T11:05:00.011Z CNTRLR No SUC present in the network -2024-09-06T11:05:00.011Z CNTRLR There is no SUC/SIS in the network - promoting ourselves... -2024-09-06T11:05:00.012Z SERIAL » 0x01080054010125010285 (10 bytes) -2024-09-06T11:05:00.013Z DRIVER » [REQ] [SetSUCNodeId] - payload: 0x0101250102 -2024-09-06T11:05:00.016Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:00.018Z SERIAL « 0x0104015401af (6 bytes) -2024-09-06T11:05:00.018Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:00.019Z DRIVER « [RES] [SetSUCNodeId] - was executed: true -2024-09-06T11:05:00.020Z CNTRLR Promotion to SUC/SIS succeeded. -2024-09-06T11:05:00.020Z DRIVER all queues idle -2024-09-06T11:05:00.024Z CNTRLR [Node 001] [Manufacturer Specific] manufacturerId: metadata updated -2024-09-06T11:05:00.025Z CNTRLR [Node 001] [Manufacturer Specific] productType: metadata updated -2024-09-06T11:05:00.025Z CNTRLR [Node 001] [Manufacturer Specific] productId: metadata updated -2024-09-06T11:05:00.025Z CNTRLR [Node 001] [+] [Manufacturer Specific] manufacturerId: 634 -2024-09-06T11:05:00.025Z CNTRLR [Node 001] [+] [Manufacturer Specific] productType: 4 -2024-09-06T11:05:00.025Z CNTRLR [Node 001] [+] [Manufacturer Specific] productId: 1552 -2024-09-06T11:05:00.026Z CNTRLR [Node 001] [Version] firmwareVersions: metadata updated -2024-09-06T11:05:00.026Z CNTRLR [Node 001] [+] [Version] firmwareVersions: 1.30 -2024-09-06T11:05:00.026Z CNTRLR [Node 001] [Version] zWaveProtocolVersion: metadata updated -2024-09-06T11:05:00.026Z CNTRLR [Node 001] [+] [Version] zWaveProtocolVersion: "7.21.3" -2024-09-06T11:05:00.026Z CNTRLR [Node 001] [Version] sdkVersion: metadata updated -2024-09-06T11:05:00.026Z CNTRLR [Node 001] [+] [Version] sdkVersion: "7.21.3" -2024-09-06T11:05:00.026Z CNTRLR Interview completed -2024-09-06T11:05:00.027Z DRIVER Network key for S0 configured, enabling S0 security manager... -2024-09-06T11:05:00.027Z DRIVER At least one network key for S2 configured, enabling S2 security manager... -2024-09-06T11:05:00.028Z DRIVER At least one network key for Z-Wave Long Range configured, enabling security m - anager... -2024-09-06T11:05:00.028Z DRIVER driver ready -2024-09-06T11:05:04.662Z CNTRLR Starting inclusion process with strategy Default... -2024-09-06T11:05:04.664Z DRIVER all queues busy -2024-09-06T11:05:04.666Z SERIAL » 0x0105004ac10372 (7 bytes) -2024-09-06T11:05:04.667Z DRIVER » [REQ] [AddNodeToNetwork] - node type: Any - high power: true - network wide: true - callback id: 3 -2024-09-06T11:05:04.670Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:04.677Z SERIAL « 0x0107004a03010000b0 (9 bytes) -2024-09-06T11:05:04.678Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:04.680Z DRIVER « [REQ] [AddNodeToNetwork] - status: Ready - callback id: 3 -2024-09-06T11:05:04.681Z CNTRLR The controller is now ready to add nodes -2024-09-06T11:05:04.682Z DRIVER all queues idle -2024-09-06T11:05:08.716Z SERIAL « 0x0107004a03020000b3 (9 bytes) -2024-09-06T11:05:08.718Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:08.719Z DRIVER « [REQ] [AddNodeToNetwork] - status: NodeFound - callback id: 3 -2024-09-06T11:05:08.720Z DRIVER handling request AddNodeToNetwork (74) -2024-09-06T11:05:08.721Z DRIVER 1 handler registered! -2024-09-06T11:05:08.721Z DRIVER invoking handler #0 -2024-09-06T11:05:08.722Z CNTRLR handling add node request (status = NodeFound) -2024-09-06T11:05:08.822Z SERIAL « 0x0112004a0304020b0201005e989f556c568f7467 (20 bytes) -2024-09-06T11:05:08.823Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:08.824Z DRIVER « [REQ] [AddNodeToNetwork] - status: AddingController - callback id: 3 -2024-09-06T11:05:08.825Z DRIVER handling request AddNodeToNetwork (74) -2024-09-06T11:05:08.825Z DRIVER 1 handler registered! -2024-09-06T11:05:08.825Z DRIVER invoking handler #0 -2024-09-06T11:05:08.825Z CNTRLR handling add node request (status = AddingController) -2024-09-06T11:05:08.827Z DRIVER the message was handled -2024-09-06T11:05:09.240Z SERIAL « 0x0107004a03050200b6 (9 bytes) -2024-09-06T11:05:09.242Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:09.243Z DRIVER « [REQ] [AddNodeToNetwork] - status: ProtocolDone - callback id: 3 -2024-09-06T11:05:09.244Z DRIVER handling request AddNodeToNetwork (74) -2024-09-06T11:05:09.244Z DRIVER 1 handler registered! -2024-09-06T11:05:09.245Z DRIVER invoking handler #0 -2024-09-06T11:05:09.245Z CNTRLR handling add node request (status = ProtocolDone) -2024-09-06T11:05:09.246Z CNTRLR finishing inclusion process... -2024-09-06T11:05:09.247Z DRIVER all queues busy -2024-09-06T11:05:09.249Z SERIAL » 0x0105004ac50471 (7 bytes) -2024-09-06T11:05:09.250Z DRIVER » [REQ] [AddNodeToNetwork] - action: Stop - high power: true - network wide: true - callback id: 4 -2024-09-06T11:05:09.252Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:09.291Z SERIAL « 0x0107004a04060200b2 (9 bytes) -2024-09-06T11:05:09.292Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:09.293Z DRIVER « [REQ] [AddNodeToNetwork] - status: Done - callback id: 4 -2024-09-06T11:05:09.294Z SERIAL » 0x0105004ac50075 (7 bytes) -2024-09-06T11:05:09.294Z DRIVER » [REQ] [AddNodeToNetwork] - action: Stop - high power: true - network wide: true - callback id: 0 -2024-09-06T11:05:09.299Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:09.300Z CNTRLR The inclusion process was stopped -2024-09-06T11:05:09.300Z CNTRLR finished adding node 2: - basic device class: Static Controller - generic device class: Remote Controller - specific device class: Unused - supported CCs: - · Z-Wave Plus Info (0x5e) - · Security (0x98) - · Security 2 (0x9f) - · Transport Service (0x55) - · Supervision (0x6c) - · CRC-16 Encapsulation (0x56) - · Multi Command (0x8f) - · Inclusion Controller (0x74) - controlled CCs: -2024-09-06T11:05:09.301Z CNTRLR » [Node 002] Assigning SUC return route... -2024-09-06T11:05:09.301Z CNTRLR » [Node 002] Deleting SUC return route... -2024-09-06T11:05:09.302Z SERIAL » 0x010500550205a8 (7 bytes) -2024-09-06T11:05:09.302Z DRIVER » [Node 002] [REQ] [DeleteSUCReturnRoute] - payload: 0x0205 -2024-09-06T11:05:09.307Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:09.311Z SERIAL « 0x0104015501ae (6 bytes) -2024-09-06T11:05:09.311Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:09.312Z DRIVER « [RES] [DeleteSUCReturnRoute] - was executed: true -2024-09-06T11:05:09.377Z SERIAL « 0x01210055050000000000000000000000000000000000000000000000000000000 (35 bytes) - 0008e -2024-09-06T11:05:09.378Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:09.380Z DRIVER « [REQ] [DeleteSUCReturnRoute] - callback id: 5 - transmit status: OK -2024-09-06T11:05:09.384Z SERIAL » 0x010500510206af (7 bytes) -2024-09-06T11:05:09.385Z DRIVER » [Node 002] [REQ] [AssignSUCReturnRoute] - payload: 0x0206 -2024-09-06T11:05:09.388Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:09.395Z SERIAL « 0x0104015101aa (6 bytes) -2024-09-06T11:05:09.395Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:09.396Z DRIVER « [RES] [AssignSUCReturnRoute] - was executed: true -2024-09-06T11:05:09.468Z SERIAL « 0x01210051060000000000000000000000000000000000000000000000000000000 (35 bytes) - 00089 -2024-09-06T11:05:09.470Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:09.472Z DRIVER « [REQ] [AssignSUCReturnRoute] - callback id: 6 - transmit status: OK -2024-09-06T11:05:09.479Z SERIAL » 0x010e00a90102029f04250000000007e0 (16 bytes) -2024-09-06T11:05:09.480Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x25 - │ callback id: 7 - └─[Security2CCKEXGet] -2024-09-06T11:05:09.484Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:09.490Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:05:09.491Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:09.492Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:05:24.417Z SERIAL « 0x011d00a90700000100e07f7f7f7f00000300000000030100007f7f7f7f7fd3 (31 bytes) -2024-09-06T11:05:24.418Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:24.418Z SERIAL « 0x011d00a90700000100e07f7f7f7f00000300000000030100007f7f7f7f7fd3 (31 bytes) -2024-09-06T11:05:24.419Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:24.419Z SERIAL « 0x011d00a90700000100e07f7f7f7f00000300000000030100007f7f7f7f7fd3 (31 bytes) -2024-09-06T11:05:24.419Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:24.420Z SERIAL « 0x011d00a90700000100e07f7f7f7f00000300000000030100007f7f7f7f7fd3 (31 bytes) -2024-09-06T11:05:24.420Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:24.420Z SERIAL « 0x010f00a8000102069f050002018700e0a3 (17 bytes) -2024-09-06T11:05:24.421Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:24.422Z DRIVER « [REQ] [SendDataBridge] - callback id: 7 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -32 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:05:24.424Z DRIVER « [REQ] [SendDataBridge] - callback id: 7 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -32 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:05:24.424Z DRIVER handling request SendDataBridge (169) -2024-09-06T11:05:24.425Z DRIVER no handlers registered! -2024-09-06T11:05:24.425Z DRIVER « [REQ] [SendDataBridge] - callback id: 7 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -32 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:05:24.425Z DRIVER handling request SendDataBridge (169) -2024-09-06T11:05:24.425Z DRIVER no handlers registered! -2024-09-06T11:05:24.426Z DRIVER « [REQ] [SendDataBridge] - callback id: 7 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -32 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:05:24.426Z DRIVER handling request SendDataBridge (169) -2024-09-06T11:05:24.426Z DRIVER no handlers registered! -2024-09-06T11:05:24.426Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -32 dBm - └─[Security2CCKEXReport] - echo: false - supported schemes: - · KEXScheme1 - supported ECDH profiles: - · Curve25519 - CSA requested: false - requested security classes: - · S2_Unauthenticated - · S2_Authenticated - · S2_AccessControl - · S0_Legacy -2024-09-06T11:05:24.429Z SERIAL » 0x011200a90102069f060002018725000000000871 (20 bytes) -2024-09-06T11:05:24.429Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x25 - │ callback id: 8 - └─[Security2CCKEXSet] - echo: false - selected scheme: KEXScheme1 - selected ECDH profile: Curve25519 - CSA permitted: false - granted security classes: - · S2_Unauthenticated - · S2_Authenticated - · S2_AccessControl - · S0_Legacy -2024-09-06T11:05:24.433Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:24.439Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:05:24.440Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:24.441Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:05:24.456Z SERIAL « 0x011d00a90800000100e07f7f7f7f00000300000000030100007f7f7f7f7fdc (31 bytes) -2024-09-06T11:05:24.457Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:24.457Z DRIVER « [REQ] [SendDataBridge] - callback id: 8 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -32 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:05:24.458Z DRIVER all queues idle -2024-09-06T11:05:24.481Z SERIAL « 0x012c00a8000102239f080000004d2fbeb6c2b5b7622a32ff6946734809975b3d0 (46 bytes) - 0ce7d639056f7fd7f837500e07a -2024-09-06T11:05:24.482Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:24.483Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -32 dBm - └─[Security2CCPublicKeyReport] - is including node: false - public key: 0x00004d2fbeb6c2b5b7622a32ff6946734809975b3d00ce7d63905 - 6f7fd7f8375 -2024-09-06T11:05:24.484Z DRIVER all queues busy -2024-09-06T11:05:24.484Z SERIAL » 0x012f00a90102239f08014b2d67c5fc1c4760172137de73c0be95f4d6c3544af03 (49 bytes) - 7a442da5c6309354d41250000000009ac -2024-09-06T11:05:24.485Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x25 - │ callback id: 9 - └─[Security2CCPublicKeyReport] - is including node: true - public key: 0x4b2d67c5fc1c4760172137de73c0be95f4d6c3544af037a442da5 - c6309354d41 -2024-09-06T11:05:24.494Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:24.500Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:05:24.501Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:24.501Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:05:24.522Z SERIAL « 0x011d00a90900000200e07f7f7f7f00000300000000030100007f7f7f7f7fde (31 bytes) -2024-09-06T11:05:24.522Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:24.523Z DRIVER « [REQ] [SendDataBridge] - callback id: 9 - transmit status: OK, took 20 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -32 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:05:24.525Z DRIVER all queues idle -2024-09-06T11:05:24.538Z SERIAL « 0x010c00a8000102039f01a700e082 (14 bytes) -2024-09-06T11:05:24.540Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:24.541Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -32 dBm - └─[Security2CCNonceGet] - sequence number: 167 -2024-09-06T11:05:24.543Z DRIVER all queues busy -2024-09-06T11:05:24.545Z SERIAL » 0x012000a90102149f02e40141268356a2061d10d0a567b6aa11a14305000000000 (34 bytes) - af0 -2024-09-06T11:05:24.546Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x05 - │ callback id: 10 - └─[Security2CCNonceReport] - sequence number: 228 - SOS: true - MOS: false - receiver entropy: 0x41268356a2061d10d0a567b6aa11a143 -2024-09-06T11:05:24.552Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:24.558Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:05:24.559Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:24.560Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:05:24.577Z SERIAL « 0x011d00a90a00000100e07f7f7f7f00000300000000030100007f7f7f7f7fde (31 bytes) -2024-09-06T11:05:24.577Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:24.578Z DRIVER « [REQ] [SendDataBridge] - callback id: 10 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -32 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:05:24.579Z DRIVER all queues idle -2024-09-06T11:05:24.604Z SERIAL « 0x012d00a8000102249f03a8011241f8e3d97f8f9dd68d05e5ce20f70a0949f6908 (47 bytes) - 91a8669ae5a58faafde586500e09c -2024-09-06T11:05:24.606Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:24.607Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -32 dBm - └─[Security2CCMessageEncapsulation] - │ sequence number: 168 - │ extensions: - │ · type: SPAN - │ sender EI: 0xf8e3d97f8f9dd68d05e5ce20f70a0949 - │ key: 0xba0a768edc36f7885e51c63b3d1c8608 - │ IV: 0x5345c0699cc4f877eb61b24e37 - │ plaintext: 0x9f0601020187 - │ auth tag: 0xae5a58faafde5865 - │ security class: Temporary - └─[Security2CCKEXSet] - echo: true - selected scheme: KEXScheme1 - selected ECDH profile: Curve25519 - CSA permitted: false - granted security classes: - · S2_Unauthenticated - · S2_Authenticated - · S2_AccessControl - · S0_Legacy -2024-09-06T11:05:24.609Z DRIVER all queues busy -2024-09-06T11:05:24.610Z SERIAL » 0x011e00a90102129f03e500428f5533ac14822bab5ec23b45ac25000000000b51 (32 bytes) -2024-09-06T11:05:24.611Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x25 - │ callback id: 11 - └─[Security2CCMessageEncapsulation] - │ sequence number: 229 - │ key: 0xba0a768edc36f7885e51c63b3d1c8608 - │ IV: 0x4e4ceb14e04905965a92d6b9ef - │ ciphertext: 0x428f5533ac14 - │ auth data: 0x0102c80a10c50012e500 - │ auth tag: 0x822bab5ec23b45ac - │ security class: Temporary - └─[Security2CCKEXReport] - echo: true - supported schemes: - · KEXScheme1 - supported ECDH profiles: - · Curve25519 - CSA requested: false - requested security classes: - · S2_Unauthenticated - · S2_Authenticated - · S2_AccessControl - · S0_Legacy -2024-09-06T11:05:24.617Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:24.624Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:05:24.624Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:24.625Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:05:24.642Z SERIAL « 0x011d00a90b00000100e07f7f7f7f00000300000000030100007f7f7f7f7fdf (31 bytes) -2024-09-06T11:05:24.643Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:24.644Z DRIVER « [REQ] [SendDataBridge] - callback id: 11 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -32 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:05:24.645Z DRIVER all queues idle -2024-09-06T11:05:24.661Z SERIAL « 0x011800a80001020f9f03a9004cb4a70c38d3a9b3497c5700e056 (26 bytes) -2024-09-06T11:05:24.662Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:24.663Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -32 dBm - └─[Security2CCMessageEncapsulation] - │ sequence number: 169 - │ key: 0xba0a768edc36f7885e51c63b3d1c8608 - │ IV: 0x96181e40d56a9edac90701af73 - │ plaintext: 0x9f0901 - │ auth tag: 0x0c38d3a9b3497c57 - │ security class: Temporary - └─[Security2CCNetworkKeyGet] - security class: S2_Unauthenticated -2024-09-06T11:05:24.664Z DRIVER all queues busy -2024-09-06T11:05:24.666Z SERIAL » 0x012b00a901021f9f03e6005af2a8d2443d73153404f665f7a1363109a3141477a (45 bytes) - 4f05885e8e825000000000c59 -2024-09-06T11:05:24.666Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x25 - │ callback id: 12 - └─[Security2CCMessageEncapsulation] - │ sequence number: 230 - │ key: 0xba0a768edc36f7885e51c63b3d1c8608 - │ IV: 0x45f6be582e90028e2ec202248e - │ ciphertext: 0x5af2a8d2443d73153404f665f7a1363109a314 - │ auth data: 0x0102c80a10c5001fe600 - │ auth tag: 0x1477a4f05885e8e8 - │ security class: Temporary - └─[Security2CCNetworkKeyReport] - security class: S2_Unauthenticated -2024-09-06T11:05:24.675Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:24.681Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:05:24.681Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:24.682Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:05:24.698Z SERIAL « 0x011d00a90c00000100e07f7f7f7f00000300000000030100007f7f7f7f7fd8 (31 bytes) -2024-09-06T11:05:24.699Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:24.699Z DRIVER « [REQ] [SendDataBridge] - callback id: 12 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -32 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:05:24.700Z DRIVER all queues idle -2024-09-06T11:05:24.714Z SERIAL « 0x010c00a8000102039f01aa00e08f (14 bytes) -2024-09-06T11:05:24.715Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:24.715Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -32 dBm - └─[Security2CCNonceGet] - sequence number: 170 -2024-09-06T11:05:24.717Z DRIVER all queues busy -2024-09-06T11:05:24.717Z SERIAL » 0x012000a90102149f02e7017f3e13d7d4f217de0d2a5c69245ab00505000000000 (34 bytes) - da1 -2024-09-06T11:05:24.718Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x05 - │ callback id: 13 - └─[Security2CCNonceReport] - sequence number: 231 - SOS: true - MOS: false - receiver entropy: 0x7f3e13d7d4f217de0d2a5c69245ab005 -2024-09-06T11:05:24.724Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:24.730Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:05:24.731Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:24.732Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:05:24.745Z SERIAL « 0x011d00a90d00000100e07f7f7f7f00000300000000030100007f7f7f7f7fd9 (31 bytes) -2024-09-06T11:05:24.746Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:24.746Z DRIVER « [REQ] [SendDataBridge] - callback id: 13 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -32 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:05:24.747Z DRIVER all queues idle -2024-09-06T11:05:24.770Z SERIAL « 0x012900a8000102209f03ab0112416c9053070ea7cbd892365571bb8f567098a6e (43 bytes) - 6cd81aeeae5d3d600e068 -2024-09-06T11:05:24.772Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:24.772Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -32 dBm - └─[Security2CCMessageEncapsulation] - │ sequence number: 171 - │ extensions: - │ · type: SPAN - │ sender EI: 0x6c9053070ea7cbd892365571bb8f5670 - │ key: 0x44b45806725f2a6ebc3e2641f36f6caa - │ IV: 0x0ea53396a858f7caa64da81545 - │ plaintext: 0x9f0b - │ auth tag: 0xe6cd81aeeae5d3d6 - │ security class: S2_Unauthenticated - └─[Security2CCNetworkKeyVerify] -2024-09-06T11:05:24.774Z DRIVER all queues busy -2024-09-06T11:05:24.775Z SERIAL » 0x010f00a90102039f01e825000000000e04 (17 bytes) -2024-09-06T11:05:24.775Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x25 - │ callback id: 14 - └─[Security2CCNonceGet] - sequence number: 232 -2024-09-06T11:05:24.779Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:24.786Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:05:24.786Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:24.787Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:05:24.799Z SERIAL « 0x011d00a90e00000100e07f7f7f7f00000300000000030100007f7f7f7f7fda (31 bytes) -2024-09-06T11:05:24.799Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:24.800Z DRIVER « [REQ] [SendDataBridge] - callback id: 14 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -32 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:05:24.818Z SERIAL « 0x011d00a8000102149f02ac017ce365eb0aeee30f265dcfaca3503bae00e0ea (31 bytes) -2024-09-06T11:05:24.819Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:24.820Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -32 dBm - └─[Security2CCNonceReport] - sequence number: 172 - SOS: true - MOS: false - receiver entropy: 0x7ce365eb0aeee30f265dcfaca3503bae -2024-09-06T11:05:24.821Z SERIAL » 0x012d00a90102219f03e9011241e3ecc76c91f66723a2cf918c908f12aac640847 (47 bytes) - a688928fdf72cc424000000000059 -2024-09-06T11:05:24.821Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x24 - │ callback id: 0 - └─[Security2CCMessageEncapsulation] - │ sequence number: 233 - │ extensions: - │ · type: SPAN - │ sender EI: 0xe3ecc76c91f66723a2cf918c908f12aa - │ key: 0xba0a768edc36f7885e51c63b3d1c8608 - │ IV: 0x506425ba50dbfe1af3850973dc - │ ciphertext: 0xc64084 - │ auth data: 0x0102c80a10c50021e9011241e3ecc76c91f66723a2cf918c908f12a - a - │ auth tag: 0x7a688928fdf72cc4 - │ security class: Temporary - └─[Security2CCTransferEnd] - key verified: true - request complete: false -2024-09-06T11:05:24.830Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:24.836Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:05:24.836Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:24.837Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:05:24.837Z DRIVER all queues idle -2024-09-06T11:05:24.876Z SERIAL « 0x011800a80001020f9f03ad0032c7a9153ceaf3e3fde96600e06f (26 bytes) -2024-09-06T11:05:24.877Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:24.879Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -32 dBm - └─[Security2CCMessageEncapsulation] - │ sequence number: 173 - │ key: 0xba0a768edc36f7885e51c63b3d1c8608 - │ IV: 0x1690d623380bbe423060815569 - │ plaintext: 0x9f0902 - │ auth tag: 0x153ceaf3e3fde966 - │ security class: Temporary - └─[Security2CCNetworkKeyGet] - security class: S2_Authenticated -2024-09-06T11:05:24.880Z DRIVER all queues busy -2024-09-06T11:05:24.881Z SERIAL » 0x012b00a901021f9f03ea0072c676cf8c27c4fe4f34ec4fc8eb31c340d8f1fca58 (45 bytes) - a7c176d544c25000000000f0c -2024-09-06T11:05:24.882Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x25 - │ callback id: 15 - └─[Security2CCMessageEncapsulation] - │ sequence number: 234 - │ key: 0xba0a768edc36f7885e51c63b3d1c8608 - │ IV: 0x7da23cea0a62d4f4e1800adb6c - │ ciphertext: 0x72c676cf8c27c4fe4f34ec4fc8eb31c340d8f1 - │ auth data: 0x0102c80a10c5001fea00 - │ auth tag: 0xfca58a7c176d544c - │ security class: Temporary - └─[Security2CCNetworkKeyReport] - security class: S2_Authenticated -2024-09-06T11:05:24.890Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:24.897Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:05:24.897Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:24.898Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:05:24.916Z SERIAL « 0x011d00a90f00000100e07f7f7f7f00000300000000030100007f7f7f7f7fdb (31 bytes) -2024-09-06T11:05:24.917Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:24.918Z DRIVER « [REQ] [SendDataBridge] - callback id: 15 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -32 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:05:24.919Z DRIVER all queues idle -2024-09-06T11:05:24.932Z SERIAL « 0x010c00a8000102039f01ae00e08b (14 bytes) -2024-09-06T11:05:24.934Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:24.936Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -32 dBm - └─[Security2CCNonceGet] - sequence number: 174 -2024-09-06T11:05:24.940Z DRIVER all queues busy -2024-09-06T11:05:24.941Z SERIAL » 0x012000a90102149f02eb019f0c81c8baa966dbf855f4ec10791d2a05000000001 (34 bytes) - 09c -2024-09-06T11:05:24.942Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x05 - │ callback id: 16 - └─[Security2CCNonceReport] - sequence number: 235 - SOS: true - MOS: false - receiver entropy: 0x9f0c81c8baa966dbf855f4ec10791d2a -2024-09-06T11:05:24.953Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:24.962Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:05:24.963Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:24.967Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:05:24.978Z SERIAL « 0x011d00a91000000100e07f7f7f7f00000300000000030100007f7f7f7f7fc4 (31 bytes) -2024-09-06T11:05:24.979Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:24.980Z DRIVER « [REQ] [SendDataBridge] - callback id: 16 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -32 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:05:24.982Z DRIVER all queues idle -2024-09-06T11:05:25.003Z SERIAL « 0x012900a8000102209f03af01124129942536bfabf27b9238ad36bf05a60871818 (43 bytes) - b659c8eff6c23c900e1be -2024-09-06T11:05:25.005Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:25.007Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -31 dBm - └─[Security2CCMessageEncapsulation] - │ sequence number: 175 - │ extensions: - │ · type: SPAN - │ sender EI: 0x29942536bfabf27b9238ad36bf05a608 - │ key: 0xdda415256006027530b2d9548c898f93 - │ IV: 0x449ba0b4965628c1b636f66f45 - │ plaintext: 0x9f0b - │ auth tag: 0x8b659c8eff6c23c9 - │ security class: S2_Authenticated - └─[Security2CCNetworkKeyVerify] -2024-09-06T11:05:25.008Z DRIVER all queues busy -2024-09-06T11:05:25.009Z SERIAL » 0x010f00a90102039f01ec2500000000111f (17 bytes) -2024-09-06T11:05:25.010Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x25 - │ callback id: 17 - └─[Security2CCNonceGet] - sequence number: 236 -2024-09-06T11:05:25.014Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:25.021Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:05:25.021Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:25.022Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:05:25.035Z SERIAL « 0x011d00a91100000100e07f7f7f7f00000300000000030100007f7f7f7f7fc5 (31 bytes) -2024-09-06T11:05:25.035Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:25.036Z DRIVER « [REQ] [SendDataBridge] - callback id: 17 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -32 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:05:25.053Z SERIAL « 0x011d00a8000102149f02b001517dafb42bab9df98a5e8058039a790300e0ad (31 bytes) -2024-09-06T11:05:25.054Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:25.055Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -32 dBm - └─[Security2CCNonceReport] - sequence number: 176 - SOS: true - MOS: false - receiver entropy: 0x517dafb42bab9df98a5e8058039a7903 -2024-09-06T11:05:25.056Z SERIAL » 0x012d00a90102219f03ed01124124a1abcb9a02883058d24d40247cb572472c62f (47 bytes) - 4bd8b7448084d98240000000000a9 -2024-09-06T11:05:25.057Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x24 - │ callback id: 0 - └─[Security2CCMessageEncapsulation] - │ sequence number: 237 - │ extensions: - │ · type: SPAN - │ sender EI: 0x24a1abcb9a02883058d24d40247cb572 - │ key: 0xba0a768edc36f7885e51c63b3d1c8608 - │ IV: 0x3c10ed8c02588f8a544e741506 - │ ciphertext: 0x472c62 - │ auth data: 0x0102c80a10c50021ed01124124a1abcb9a02883058d24d40247cb57 - 2 - │ auth tag: 0xf4bd8b7448084d98 - │ security class: Temporary - └─[Security2CCTransferEnd] - key verified: true - request complete: false -2024-09-06T11:05:25.065Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:25.071Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:05:25.071Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:25.072Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:05:25.073Z DRIVER all queues idle -2024-09-06T11:05:25.112Z SERIAL « 0x011800a80001020f9f03b100b7a7cba4fee41a55ceb6a600e07a (26 bytes) -2024-09-06T11:05:25.113Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:25.114Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -32 dBm - └─[Security2CCMessageEncapsulation] - │ sequence number: 177 - │ key: 0xba0a768edc36f7885e51c63b3d1c8608 - │ IV: 0x3f4ca78d9d7b8772913260ddf6 - │ plaintext: 0x9f0904 - │ auth tag: 0xa4fee41a55ceb6a6 - │ security class: Temporary - └─[Security2CCNetworkKeyGet] - security class: S2_AccessControl -2024-09-06T11:05:25.114Z DRIVER all queues busy -2024-09-06T11:05:25.115Z SERIAL » 0x012b00a901021f9f03ee00a81baed2e377c75a785675d80aa2d4d965fc702d943 (45 bytes) - e7cc53334e2250000000012f6 -2024-09-06T11:05:25.116Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x25 - │ callback id: 18 - └─[Security2CCMessageEncapsulation] - │ sequence number: 238 - │ key: 0xba0a768edc36f7885e51c63b3d1c8608 - │ IV: 0x2b5242176fd36b74ebd2588a69 - │ ciphertext: 0xa81baed2e377c75a785675d80aa2d4d965fc70 - │ auth data: 0x0102c80a10c5001fee00 - │ auth tag: 0x2d943e7cc53334e2 - │ security class: Temporary - └─[Security2CCNetworkKeyReport] - security class: S2_AccessControl -2024-09-06T11:05:25.124Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:25.130Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:05:25.131Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:25.131Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:05:25.149Z SERIAL « 0x011d00a91200000200e07f7f7f7f00000300000000030100007f7f7f7f7fc5 (31 bytes) -2024-09-06T11:05:25.149Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:25.150Z DRIVER « [REQ] [SendDataBridge] - callback id: 18 - transmit status: OK, took 20 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -32 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:05:25.151Z DRIVER all queues idle -2024-09-06T11:05:25.167Z SERIAL « 0x010c00a8000102039f01b200e097 (14 bytes) -2024-09-06T11:05:25.168Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:25.169Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -32 dBm - └─[Security2CCNonceGet] - sequence number: 178 -2024-09-06T11:05:25.170Z DRIVER all queues busy -2024-09-06T11:05:25.171Z SERIAL » 0x012000a90102149f02ef0192b1bb0e0bf8ebf23b3e23d2f5f6d12505000000001 (34 bytes) - 37b -2024-09-06T11:05:25.171Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x05 - │ callback id: 19 - └─[Security2CCNonceReport] - sequence number: 239 - SOS: true - MOS: false - receiver entropy: 0x92b1bb0e0bf8ebf23b3e23d2f5f6d125 -2024-09-06T11:05:25.177Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:25.183Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:05:25.184Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:25.184Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:05:25.200Z SERIAL « 0x011d00a91300000100e07f7f7f7f00000300000000030100007f7f7f7f7fc7 (31 bytes) -2024-09-06T11:05:25.201Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:25.201Z DRIVER « [REQ] [SendDataBridge] - callback id: 19 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -32 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:05:25.202Z DRIVER all queues idle -2024-09-06T11:05:25.226Z SERIAL « 0x012900a8000102209f03b3011241d644fd7aceb92302b2458014f83422c1f9d0d (43 bytes) - f9730abc69c3aa900e1fd -2024-09-06T11:05:25.228Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:25.229Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -31 dBm - └─[Security2CCMessageEncapsulation] - │ sequence number: 179 - │ extensions: - │ · type: SPAN - │ sender EI: 0xd644fd7aceb92302b2458014f83422c1 - │ key: 0xfca06923982033f3af9dfc7c1e4ad45a - │ IV: 0x428af89b733a090b8fa86a7ef8 - │ plaintext: 0x9f0b - │ auth tag: 0xdf9730abc69c3aa9 - │ security class: S2_AccessControl - └─[Security2CCNetworkKeyVerify] -2024-09-06T11:05:25.229Z DRIVER all queues busy -2024-09-06T11:05:25.230Z SERIAL » 0x010f00a90102039f01f025000000001406 (17 bytes) -2024-09-06T11:05:25.231Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x25 - │ callback id: 20 - └─[Security2CCNonceGet] - sequence number: 240 -2024-09-06T11:05:25.234Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:25.241Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:05:25.242Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:25.242Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:05:25.254Z SERIAL « 0x011d00a91400000100e07f7f7f7f00000300000000030100007f7f7f7f7fc0 (31 bytes) -2024-09-06T11:05:25.255Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:25.255Z DRIVER « [REQ] [SendDataBridge] - callback id: 20 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -32 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:05:25.274Z SERIAL « 0x011d00a8000102149f02b4011a41624d9611356de8b7ce83dca9993800e0f8 (31 bytes) -2024-09-06T11:05:25.274Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:25.275Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -32 dBm - └─[Security2CCNonceReport] - sequence number: 180 - SOS: true - MOS: false - receiver entropy: 0x1a41624d9611356de8b7ce83dca99938 -2024-09-06T11:05:25.276Z SERIAL » 0x012d00a90102219f03f10112419bf94bd8ff38c1d1155ab536c92c5f7acc19325 (47 bytes) - 6e46a0c62ed6d8824000000000031 -2024-09-06T11:05:25.276Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x24 - │ callback id: 0 - └─[Security2CCMessageEncapsulation] - │ sequence number: 241 - │ extensions: - │ · type: SPAN - │ sender EI: 0x9bf94bd8ff38c1d1155ab536c92c5f7a - │ key: 0xba0a768edc36f7885e51c63b3d1c8608 - │ IV: 0x1b1c27ccd3e078d4cb788a7ef0 - │ ciphertext: 0xcc1932 - │ auth data: 0x0102c80a10c50021f10112419bf94bd8ff38c1d1155ab536c92c5f7 - a - │ auth tag: 0x56e46a0c62ed6d88 - │ security class: Temporary - └─[Security2CCTransferEnd] - key verified: true - request complete: false -2024-09-06T11:05:25.285Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:25.291Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:05:25.292Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:25.292Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:05:25.293Z DRIVER all queues idle -2024-09-06T11:05:25.328Z SERIAL « 0x011800a80001020f9f03b50027ab0a469c4b6c5b1416f800e050 (26 bytes) -2024-09-06T11:05:25.329Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:25.330Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -32 dBm - └─[Security2CCMessageEncapsulation] - │ sequence number: 181 - │ key: 0xba0a768edc36f7885e51c63b3d1c8608 - │ IV: 0x23b368bfa4ba5dd44b7b68b0b6 - │ plaintext: 0x9f0980 - │ auth tag: 0x469c4b6c5b1416f8 - │ security class: Temporary - └─[Security2CCNetworkKeyGet] - security class: S0_Legacy -2024-09-06T11:05:25.331Z DRIVER all queues busy -2024-09-06T11:05:25.331Z SERIAL » 0x012b00a901021f9f03f200f959ad8b13753eb8237cd2990a5edbdc4f37305e920 (45 bytes) - 15d8cb4d34b25000000001566 -2024-09-06T11:05:25.332Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x25 - │ callback id: 21 - └─[Security2CCMessageEncapsulation] - │ sequence number: 242 - │ key: 0xba0a768edc36f7885e51c63b3d1c8608 - │ IV: 0x8af07c0e552fccd1990e26a2e2 - │ ciphertext: 0xf959ad8b13753eb8237cd2990a5edbdc4f3730 - │ auth data: 0x0102c80a10c5001ff200 - │ auth tag: 0x5e92015d8cb4d34b - │ security class: Temporary - └─[Security2CCNetworkKeyReport] - security class: S0_Legacy -2024-09-06T11:05:25.340Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:25.346Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:05:25.346Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:25.347Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:05:25.364Z SERIAL « 0x011d00a91500000100e07f7f7f7f00000300000000030100007f7f7f7f7fc1 (31 bytes) -2024-09-06T11:05:25.365Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:25.365Z DRIVER « [REQ] [SendDataBridge] - callback id: 21 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -32 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:05:25.366Z DRIVER all queues idle -2024-09-06T11:05:25.380Z SERIAL « 0x010c00a8000102039f01b600e093 (14 bytes) -2024-09-06T11:05:25.381Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:25.382Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -32 dBm - └─[Security2CCNonceGet] - sequence number: 182 -2024-09-06T11:05:25.382Z DRIVER all queues busy -2024-09-06T11:05:25.383Z SERIAL » 0x012000a90102149f02f301591072502cc06bfdc1b985fc8b7e9f7505000000001 (34 bytes) - 612 -2024-09-06T11:05:25.383Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x05 - │ callback id: 22 - └─[Security2CCNonceReport] - sequence number: 243 - SOS: true - MOS: false - receiver entropy: 0x591072502cc06bfdc1b985fc8b7e9f75 -2024-09-06T11:05:25.391Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:25.396Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:05:25.397Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:25.398Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:05:25.415Z SERIAL « 0x011d00a91600000100e07f7f7f7f00000300000000030100007f7f7f7f7fc2 (31 bytes) -2024-09-06T11:05:25.415Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:25.416Z DRIVER « [REQ] [SendDataBridge] - callback id: 22 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -32 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:05:25.417Z DRIVER all queues idle -2024-09-06T11:05:25.440Z SERIAL « 0x012900a8000102209f03b70112417b17ee5e7fd64614f64846ccf4c83a0260f29 (43 bytes) - c5680a3c8ae605200e0fc -2024-09-06T11:05:25.442Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:25.443Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -32 dBm - └─[Security2CCMessageEncapsulation] - │ sequence number: 183 - │ extensions: - │ · type: SPAN - │ sender EI: 0x7b17ee5e7fd64614f64846ccf4c83a02 - │ key: 0xece479ca82cc867c1db471e86eab2248 - │ IV: 0x6e2e5d911ea903206d6d1f38b8 - │ plaintext: 0x9f0b - │ auth tag: 0x9c5680a3c8ae6052 - │ security class: S0_Legacy - └─[Security2CCNetworkKeyVerify] -2024-09-06T11:05:25.444Z DRIVER all queues busy -2024-09-06T11:05:25.444Z SERIAL » 0x010f00a90102039f01f425000000001701 (17 bytes) -2024-09-06T11:05:25.445Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x25 - │ callback id: 23 - └─[Security2CCNonceGet] - sequence number: 244 -2024-09-06T11:05:25.449Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:25.455Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:05:25.456Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:25.456Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:05:25.469Z SERIAL « 0x011d00a91700000100e07f7f7f7f00000300000000030100007f7f7f7f7fc3 (31 bytes) -2024-09-06T11:05:25.470Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:25.470Z DRIVER « [REQ] [SendDataBridge] - callback id: 23 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -32 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:05:25.490Z SERIAL « 0x011d00a8000102149f02b801fdce68f693b0caefa4c7bc60935f633f00e01d (31 bytes) -2024-09-06T11:05:25.491Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:25.491Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -32 dBm - └─[Security2CCNonceReport] - sequence number: 184 - SOS: true - MOS: false - receiver entropy: 0xfdce68f693b0caefa4c7bc60935f633f -2024-09-06T11:05:25.492Z SERIAL » 0x012d00a90102219f03f5011241c2f0ffb5a7f3c01f8b52f8255358c660513bdc2 (47 bytes) - b90b0602c845b2324000000000011 -2024-09-06T11:05:25.493Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x24 - │ callback id: 0 - └─[Security2CCMessageEncapsulation] - │ sequence number: 245 - │ extensions: - │ · type: SPAN - │ sender EI: 0xc2f0ffb5a7f3c01f8b52f8255358c660 - │ key: 0xba0a768edc36f7885e51c63b3d1c8608 - │ IV: 0x5fe047a15c4f3a56b698cb51f4 - │ ciphertext: 0x513bdc - │ auth data: 0x0102c80a10c50021f5011241c2f0ffb5a7f3c01f8b52f8255358c66 - 0 - │ auth tag: 0x2b90b0602c845b23 - │ security class: Temporary - └─[Security2CCTransferEnd] - key verified: true - request complete: false -2024-09-06T11:05:25.501Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:25.508Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:05:25.509Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:25.509Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:05:25.510Z DRIVER all queues idle -2024-09-06T11:05:25.546Z SERIAL « 0x011800a80001020f9f03b900d21d0f61da2ac33d0ed74400e0b4 (26 bytes) -2024-09-06T11:05:25.548Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:25.549Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -32 dBm - └─[Security2CCMessageEncapsulation] - │ sequence number: 185 - │ key: 0xba0a768edc36f7885e51c63b3d1c8608 - │ IV: 0x239de663297e35472ac380463b - │ plaintext: 0x9f0c01 - │ auth tag: 0x61da2ac33d0ed744 - │ security class: Temporary - └─[Security2CCTransferEnd] - key verified: false - request complete: true -2024-09-06T11:05:25.550Z CNTRLR [Node 002] Security S2 bootstrapping successful with these security classes: - · S2_AccessControl - · S2_Authenticated - · S2_Unauthenticated - · S0_Legacy -2024-09-06T11:05:25.550Z DRIVER the message was handled -2024-09-06T11:05:30.512Z DRIVER all queues busy -2024-09-06T11:05:30.514Z SERIAL » 0x0103003bc7 (5 bytes) -2024-09-06T11:05:30.515Z DRIVER » [REQ] [GetBackgroundRSSI] -2024-09-06T11:05:30.518Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:30.520Z SERIAL « 0x0107013b9492927f29 (9 bytes) -2024-09-06T11:05:30.522Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:30.524Z DRIVER « [RES] [GetBackgroundRSSI] - channel 0: -108 dBm - channel 1: -110 dBm - channel 2: -110 dBm - channel 3: N/A -2024-09-06T11:05:30.527Z DRIVER all queues idle -2024-09-06T11:05:45.880Z DRIVER ███████╗ ██╗ ██╗ █████╗ ██╗ ██╗ ███████╗ ██╗ ███████╗ - ╚══███╔╝ ██║ ██║ ██╔══██╗ ██║ ██║ ██╔════╝ ██║ ██╔════╝ - ███╔╝ █████╗ ██║ █╗ ██║ ███████║ ██║ ██║ █████╗ ██║ ███████╗ - ███╔╝ ╚════╝ ██║███╗██║ ██╔══██║ ╚██╗ ██╔╝ ██╔══╝ ██ ██║ ╚════██║ - ███████╗ ╚███╔███╔╝ ██║ ██║ ╚████╔╝ ███████╗ ╚█████╔╝ ███████║ - ╚══════╝ ╚══╝╚══╝ ╚═╝ ╚═╝ ╚═══╝ ╚══════╝ ╚════╝ ╚══════╝ -2024-09-06T11:05:45.882Z DRIVER version 13.2.0 -2024-09-06T11:05:45.883Z DRIVER -2024-09-06T11:05:45.883Z DRIVER starting driver... -2024-09-06T11:05:45.883Z DRIVER opening serial port /dev/serial/by-id/usb-Zooz_800_Z-Wave_Stick_533D004242-if0 - 0 -2024-09-06T11:05:45.893Z DRIVER serial port opened -2024-09-06T11:05:45.894Z SERIAL » 0x15 (1 bytes) -2024-09-06T11:05:46.899Z DRIVER loading configuration... -2024-09-06T11:05:46.905Z CONFIG version 13.2.0 -2024-09-06T11:05:47.225Z DRIVER beginning interview... -2024-09-06T11:05:47.225Z DRIVER added request handler for AddNodeToNetwork (0x4a)... - 1 registered -2024-09-06T11:05:47.226Z DRIVER added request handler for RemoveNodeFromNetwork (0x4b)... - 1 registered -2024-09-06T11:05:47.226Z DRIVER added request handler for ReplaceFailedNode (0x63)... - 1 registered -2024-09-06T11:05:47.226Z DRIVER added request handler for SetLearnMode (0x50)... - 1 registered -2024-09-06T11:05:47.226Z CNTRLR querying Serial API capabilities... -2024-09-06T11:05:47.227Z SERIAL » 0x01030007fb (5 bytes) -2024-09-06T11:05:47.228Z DRIVER » [REQ] [GetSerialApiCapabilities] -2024-09-06T11:05:47.231Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:47.241Z SERIAL « 0x012b0107011e027a00040610f6873e88cf2bc04ffbd7fde09700008000808680b (45 bytes) - a0500700000ee7fc000000035 -2024-09-06T11:05:47.242Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:47.243Z DRIVER « [RES] [GetSerialApiCapabilities] - payload: 0x011e027a00040610f6873e88cf2bc04ffbd7fde09700008000808680ba0500700 - 000ee7fc0000000 -2024-09-06T11:05:47.244Z CNTRLR received API capabilities: - firmware version: 1.30 - manufacturer ID: 0x027a - product type: 0x04 - product ID: 0x0610 - supported functions: - · GetSerialApiInitData (0x02) - · SetApplicationNodeInformation (0x03) - · GetControllerCapabilities (0x05) - · SetSerialApiTimeouts (0x06) - · GetSerialApiCapabilities (0x07) - · SoftReset (0x08) - · GetProtocolVersion (0x09) - · SerialAPIStarted (0x0a) - · SerialAPISetup (0x0b) - · SetRFReceiveMode (0x10) - · SendNodeInformation (0x12) - · SendData (0x13) - · SendDataMulticast (0x14) - · GetControllerVersion (0x15) - · SendDataAbort (0x16) - · FUNC_ID_ZW_GET_RANDOM (0x1c) - · GetControllerId (0x20) - · UNKNOWN_FUNC_MEMORY_GET_BYTE (0x21) - · UNKNOWN_FUNC_MEMORY_PUT_BYTE (0x22) - · UNKNOWN_FUNC_MEMORY_GET_BUFFER (0x23) - · UNKNOWN_FUNC_MEMORY_PUT_BUFFER (0x24) - · EnterBootloader (0x27) - · UNKNOWN_FUNC_UNKNOWN_0x28 (0x28) - · GetNVMId (0x29) - · ExtNVMReadLongBuffer (0x2a) - · ExtNVMReadLongByte (0x2c) - · NVMOperations (0x2e) - · ClearTxTimers (0x37) - · GetTxTimers (0x38) - · ClearNetworkStats (0x39) - · GetNetworkStats (0x3a) - · GetBackgroundRSSI (0x3b) - · SetListenBeforeTalkThreshold (0x3c) - · RemoveSpecificNodeIdFromNetwork (0x3f) - · GetNodeProtocolInfo (0x41) - · HardReset (0x42) - · FUNC_ID_ZW_REPLICATION_COMMAND_COMPLETE (0x44) - · FUNC_ID_ZW_REPLICATION_SEND_DATA (0x45) - · AssignReturnRoute (0x46) - · DeleteReturnRoute (0x47) - · RequestNodeNeighborUpdate (0x48) - · ApplicationUpdateRequest (0x49) - · AddNodeToNetwork (0x4a) - · RemoveNodeFromNetwork (0x4b) - · AddPrimaryController (0x4d) - · AssignPriorityReturnRoute (0x4f) - · SetLearnMode (0x50) - · AssignSUCReturnRoute (0x51) - · RequestNetworkUpdate (0x53) - · SetSUCNodeId (0x54) - · DeleteSUCReturnRoute (0x55) - · GetSUCNodeId (0x56) - · SendSUCNodeId (0x57) - · AssignPrioritySUCReturnRoute (0x58) - · ExploreRequestInclusion (0x5e) - · ExploreRequestExclusion (0x5f) - · RequestNodeInfo (0x60) - · RemoveFailedNode (0x61) - · IsFailedNode (0x62) - · ReplaceFailedNode (0x63) - · undefined (0x65) - · RequestProtocolCCEncryption (0x68) - · GetRoutingInfo (0x80) - · LockUnlockLastRoute (0x90) - · GetPriorityRoute (0x92) - · SetPriorityRoute (0x93) - · UNKNOWN_FUNC_UNKNOWN_0x98 (0x98) - · VirtualNodeSetNodeInfo (0xa0) - · VirtualNodeSendNodeInfo (0xa2) - · VirtualNodeSetLearnMode (0xa4) - · GetVirtualNodes (0xa5) - · IsVirtualNode (0xa6) - · BridgeApplicationCommand (0xa8) - · SendDataBridge (0xa9) - · SendDataMulticastBridge (0xab) - · GetLibrary (0xbd) - · SendTestFrame (0xbe) - · GetProtocolStatus (0xbf) - · StartWatchdog (0xd2) - · StopWatchdog (0xd3) - · SetMaximumRoutingAttempts (0xd4) - · SetMaxSmartStartInclusionRequestInterval (0xd6) - · undefined (0xd7) - · undefined (0xd8) - · Shutdown (0xd9) - · GetLongRangeNodes (0xda) - · GetLongRangeChannel (0xdb) - · SetLongRangeChannel (0xdc) - · SetLongRangeShadowNodeIDs (0xdd) - · Proprietary_DE (0xde) - · Proprietary_DF (0xdf) - · Proprietary_E7 (0xe7) - · Proprietary_E8 (0xe8) -2024-09-06T11:05:47.244Z CNTRLR querying additional controller information... -2024-09-06T11:05:47.245Z SERIAL » 0x01030002fe (5 bytes) -2024-09-06T11:05:47.245Z DRIVER » [REQ] [GetSerialApiInitData] -2024-09-06T11:05:47.251Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:47.252Z SERIAL « 0x012501020a081d030000000000000000000000000000000000000000000000000 (39 bytes) - 00000000800cd -2024-09-06T11:05:47.253Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:47.253Z DRIVER « [RES] [GetSerialApiInitData] - payload: 0x0a081d03000000000000000000000000000000000000000000000000000000000 - 800 -2024-09-06T11:05:47.254Z CNTRLR received additional controller information: - Z-Wave API version: 1 (official) - Z-Wave chip type: EFR32ZG23 / ZGM230S - node type Controller - controller role: primary - controller is the SIS: true - controller supports timers: false - Z-Wave Classic nodes: 1, 2 -2024-09-06T11:05:47.255Z CNTRLR querying version info... -2024-09-06T11:05:47.256Z SERIAL » 0x01030015e9 (5 bytes) -2024-09-06T11:05:47.256Z DRIVER » [REQ] [GetControllerVersion] -2024-09-06T11:05:47.261Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:47.262Z SERIAL « 0x011001155a2d5761766520372e3231000794 (18 bytes) -2024-09-06T11:05:47.262Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:47.262Z DRIVER « [RES] [GetControllerVersion] - payload: 0x5a2d5761766520372e32310007 -2024-09-06T11:05:47.263Z CNTRLR received version info: - controller type: Bridge Controller - library version: Z-Wave 7.21 -2024-09-06T11:05:47.263Z CNTRLR querying protocol version info... -2024-09-06T11:05:47.264Z SERIAL » 0x01030009f5 (5 bytes) -2024-09-06T11:05:47.265Z DRIVER » [REQ] [GetProtocolVersion] -2024-09-06T11:05:47.272Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:47.272Z SERIAL « 0x011901090007150300f4353162666237323665306662383733380f (27 bytes) -2024-09-06T11:05:47.273Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:47.273Z DRIVER « [RES] [GetProtocolVersion] - payload: 0x0007150300f435316266623732366530666238373338 -2024-09-06T11:05:47.274Z CNTRLR received protocol version info: - protocol type: Z-Wave - protocol version: 7.21.3 - appl. framework build no.: 244 - git commit hash: 35316266623732366530666238373338 -2024-09-06T11:05:47.274Z CNTRLR querying controller capabilities... -2024-09-06T11:05:47.275Z SERIAL » 0x01030005f9 (5 bytes) -2024-09-06T11:05:47.275Z DRIVER » [REQ] [GetControllerCapabilities] -2024-09-06T11:05:47.280Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:47.280Z SERIAL « 0x010401051ce3 (6 bytes) -2024-09-06T11:05:47.281Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:47.281Z DRIVER « [RES] [GetControllerCapabilities] - payload: 0x1c -2024-09-06T11:05:47.282Z CNTRLR received controller capabilities: - controller role: Primary - is the SUC: true - started this network: true - SIS is present: true - was real primary: true -2024-09-06T11:05:47.282Z CNTRLR querying serial API setup capabilities... -2024-09-06T11:05:47.283Z SERIAL » 0x0104000b01f1 (6 bytes) -2024-09-06T11:05:47.283Z DRIVER » [REQ] [SerialAPISetup] - command: GetSupportedCommands - payload: 0x01 -2024-09-06T11:05:47.290Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:47.290Z SERIAL « 0x0116010b01ff9f8007800000008000000000000000800085 (24 bytes) -2024-09-06T11:05:47.291Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:47.291Z DRIVER « [RES] [SerialAPISetup] - command: GetSupportedCommands - payload: 0xff9f80078000000080000000000000008000 -2024-09-06T11:05:47.292Z CNTRLR supported serial API setup commands: - · GetSupportedCommands - · SetTxStatusReport - · SetLongRangeMaximumTxPower - · SetPowerlevel - · GetLongRangeMaximumTxPower - · GetPowerlevel - · GetMaximumPayloadSize - · GetLongRangeMaximumPayloadSize - · SetPowerlevel16Bit - · GetPowerlevel16Bit - · GetRFRegion - · SetRFRegion - · SetNodeIDType -2024-09-06T11:05:47.292Z CNTRLR querying max. payload size... -2024-09-06T11:05:47.293Z SERIAL » 0x0104000b10e0 (6 bytes) -2024-09-06T11:05:47.293Z DRIVER » [REQ] [SerialAPISetup] - command: GetMaximumPayloadSize - payload: 0x10 -2024-09-06T11:05:47.298Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:47.298Z SERIAL « 0x0105010b102ece (7 bytes) -2024-09-06T11:05:47.299Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:47.299Z DRIVER « [RES] [SerialAPISetup] - command: GetMaximumPayloadSize - maximum payload size: 46 bytes -2024-09-06T11:05:47.300Z CNTRLR maximum payload size: 46 bytes -2024-09-06T11:05:47.300Z CNTRLR supported Z-Wave features: - · SmartStart -2024-09-06T11:05:47.301Z CNTRLR Querying configured RF region... -2024-09-06T11:05:47.301Z SERIAL » 0x0104000b20d0 (6 bytes) -2024-09-06T11:05:47.302Z DRIVER » [REQ] [SerialAPISetup] - command: GetRFRegion - payload: 0x20 -2024-09-06T11:05:47.307Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:47.307Z SERIAL « 0x0105010b2000d0 (7 bytes) -2024-09-06T11:05:47.308Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:47.308Z DRIVER « [RES] [SerialAPISetup] - command: GetRFRegion - region: Europe -2024-09-06T11:05:47.309Z CNTRLR The controller is using RF region Europe -2024-09-06T11:05:47.309Z CNTRLR Querying configured max. Long Range powerlevel... -2024-09-06T11:05:47.310Z SERIAL » 0x0104000b05f5 (6 bytes) -2024-09-06T11:05:47.310Z DRIVER » [REQ] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - payload: 0x05 -2024-09-06T11:05:47.315Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:47.315Z SERIAL « 0x0106010b05008c7a (8 bytes) -2024-09-06T11:05:47.315Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:47.316Z DRIVER « [RES] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - max. TX power (LR): 14.0 dBm -2024-09-06T11:05:47.316Z CNTRLR The max. LR powerlevel is 14.0 dBm -2024-09-06T11:05:47.317Z CNTRLR Querying configured Long Range channel information... -2024-09-06T11:05:47.317Z SERIAL » 0x010300db27 (5 bytes) -2024-09-06T11:05:47.318Z DRIVER » [REQ] [GetLongRangeChannel] -2024-09-06T11:05:47.323Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:47.323Z SERIAL « 0x010501db001030 (7 bytes) -2024-09-06T11:05:47.323Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:47.324Z DRIVER « [RES] [GetLongRangeChannel] - payload: 0x0010 -2024-09-06T11:05:47.325Z CNTRLR received Z-Wave Long Range channel information: - channel: Unsupported - supports auto channel selection: true -2024-09-06T11:05:47.325Z CNTRLR Performing soft reset... -2024-09-06T11:05:47.326Z SERIAL » 0x01030008f4 (5 bytes) -2024-09-06T11:05:47.326Z DRIVER » [REQ] [SoftReset] -2024-09-06T11:05:47.328Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:47.329Z CNTRLR Waiting for the controller to reconnect... -2024-09-06T11:05:47.330Z DRIVER all queues idle -2024-09-06T11:05:47.548Z SERIAL « 0x0112000a0700010100085e989f556c568f740025 (20 bytes) -2024-09-06T11:05:47.548Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:47.549Z DRIVER « [REQ] [SerialAPIStarted] - wake up reason: SoftwareReset - watchdog enabled: false - generic device class: 0x01 - specific device class: 0x00 - always listening: false - supports Long Range: false -2024-09-06T11:05:47.549Z CNTRLR reconnected and restarted -2024-09-06T11:05:47.550Z CNTRLR Starting hardware watchdog... -2024-09-06T11:05:47.550Z CNTRLR Switching serial API to 16-bit node IDs... -2024-09-06T11:05:47.550Z CNTRLR Switching serial API to 8-bit node IDs... -2024-09-06T11:05:47.551Z DRIVER all queues busy -2024-09-06T11:05:47.551Z SERIAL » 0x010300d22e (5 bytes) -2024-09-06T11:05:47.551Z DRIVER » [REQ] [StartWatchdog] -2024-09-06T11:05:47.552Z SERIAL » 0x0105000b800273 (7 bytes) -2024-09-06T11:05:47.553Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 16 bit -2024-09-06T11:05:47.554Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:47.554Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:47.556Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T11:05:47.557Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:47.557Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T11:05:47.558Z CNTRLR Switching to 16-bit node IDs successful -2024-09-06T11:05:47.558Z SERIAL » 0x0105000b800170 (7 bytes) -2024-09-06T11:05:47.559Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 8 bit -2024-09-06T11:05:47.564Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:47.566Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T11:05:47.566Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:47.567Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T11:05:47.567Z CNTRLR Switching to 8-bit node IDs successful -2024-09-06T11:05:47.568Z CNTRLR querying controller IDs... -2024-09-06T11:05:47.568Z SERIAL » 0x01030020dc (5 bytes) -2024-09-06T11:05:47.569Z DRIVER » [REQ] [GetControllerId] -2024-09-06T11:05:47.570Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:47.572Z SERIAL « 0x01080120c80a10c501c0 (10 bytes) -2024-09-06T11:05:47.572Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:47.573Z DRIVER « [RES] [GetControllerId] - home ID: 0xc80a10c5 - own node ID: 1 -2024-09-06T11:05:47.574Z CNTRLR received controller IDs: - home ID: 0xc80a10c5 - own node ID: 1 -2024-09-06T11:05:47.574Z CNTRLR Enabling TX status report... -2024-09-06T11:05:47.574Z SERIAL » 0x0105000b02ff0c (7 bytes) -2024-09-06T11:05:47.575Z DRIVER » [REQ] [SerialAPISetup] - command: SetTxStatusReport - enabled: true -2024-09-06T11:05:47.579Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:47.579Z SERIAL « 0x0105010b0201f3 (7 bytes) -2024-09-06T11:05:47.580Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:47.580Z DRIVER « [RES] [SerialAPISetup] - command: SetTxStatusReport - success: true -2024-09-06T11:05:47.581Z CNTRLR Enabling TX status report successful... -2024-09-06T11:05:47.581Z CNTRLR finding SUC... -2024-09-06T11:05:47.582Z SERIAL » 0x01030056aa (5 bytes) -2024-09-06T11:05:47.582Z DRIVER » [REQ] [GetSUCNodeId] -2024-09-06T11:05:47.586Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:47.586Z SERIAL « 0x0104015601ad (6 bytes) -2024-09-06T11:05:47.587Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:47.587Z DRIVER « [RES] [GetSUCNodeId] - payload: 0x01 -2024-09-06T11:05:47.588Z CNTRLR This is the SUC -2024-09-06T11:05:47.588Z DRIVER all queues idle -2024-09-06T11:05:47.607Z DRIVER Cache file for homeId 0xc80a10c5 found, attempting to restore the network from - cache... -2024-09-06T11:05:47.609Z CNTRLR [Node 001] Embedded device config loaded -2024-09-06T11:05:47.610Z DRIVER Restoring the network from cache was successful! -2024-09-06T11:05:47.610Z CNTRLR [Node 001] [Manufacturer Specific] manufacturerId: metadata updated -2024-09-06T11:05:47.611Z CNTRLR [Node 001] [Manufacturer Specific] productType: metadata updated -2024-09-06T11:05:47.611Z CNTRLR [Node 001] [Manufacturer Specific] productId: metadata updated -2024-09-06T11:05:47.611Z CNTRLR [Node 001] [~] [Manufacturer Specific] manufacturerId: 634 => 634 -2024-09-06T11:05:47.611Z CNTRLR [Node 001] [~] [Manufacturer Specific] productType: 4 => 4 -2024-09-06T11:05:47.611Z CNTRLR [Node 001] [~] [Manufacturer Specific] productId: 1552 => 1552 -2024-09-06T11:05:47.612Z CNTRLR [Node 001] [Version] firmwareVersions: metadata updated -2024-09-06T11:05:47.612Z CNTRLR [Node 001] [~] [Version] firmwareVersions: 1.30 => 1.30 -2024-09-06T11:05:47.612Z CNTRLR [Node 001] [Version] zWaveProtocolVersion: metadata updated -2024-09-06T11:05:47.612Z CNTRLR [Node 001] [~] [Version] zWaveProtocolVersion: "7.21.3" => "7.21.3" -2024-09-06T11:05:47.613Z CNTRLR [Node 001] [Version] sdkVersion: metadata updated -2024-09-06T11:05:47.613Z CNTRLR [Node 001] [~] [Version] sdkVersion: "7.21.3" => "7.21.3" -2024-09-06T11:05:47.613Z CNTRLR Interview completed -2024-09-06T11:05:47.613Z DRIVER Network key for S0 configured, enabling S0 security manager... -2024-09-06T11:05:47.614Z DRIVER At least one network key for S2 configured, enabling S2 security manager... -2024-09-06T11:05:47.615Z DRIVER At least one network key for Z-Wave Long Range configured, enabling security m - anager... -2024-09-06T11:05:47.615Z DRIVER driver ready -2024-09-06T11:05:48.616Z CNTRLR Updating the controller NIF... -2024-09-06T11:05:48.618Z DRIVER all queues busy -2024-09-06T11:05:48.621Z SERIAL » 0x010f0003010100085e989f556c568f7436 (17 bytes) -2024-09-06T11:05:48.622Z DRIVER » [REQ] [SetApplicationNodeInformation] - is listening: true - generic device class: 0x01 - specific device class: 0x00 - supported CCs: - · Z-Wave Plus Info - · Security - · Security 2 - · Transport Service - · Supervision - · CRC-16 Encapsulation - · Multi Command - · Inclusion Controller - controlled CCs: -2024-09-06T11:05:48.627Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:48.630Z CNTRLR performing hard reset... -2024-09-06T11:05:48.633Z SERIAL » 0x0104004201b8 (6 bytes) -2024-09-06T11:05:48.634Z DRIVER » [REQ] [HardReset] - callback id: 1 -2024-09-06T11:05:48.636Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:48.657Z SERIAL « 0x0104004201b8 (6 bytes) -2024-09-06T11:05:48.657Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:48.658Z DRIVER « [REQ] [HardReset] - callback id: 1 -2024-09-06T11:05:48.659Z CNTRLR hard reset succeeded -2024-09-06T11:05:48.659Z CNTRLR querying Serial API capabilities... -2024-09-06T11:05:48.660Z SERIAL » 0x01030007fb (5 bytes) -2024-09-06T11:05:48.661Z DRIVER » [REQ] [GetSerialApiCapabilities] -2024-09-06T11:05:48.674Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:48.679Z SERIAL « 0x012b0107011e027a00040610f6873e88cf2bc04ffbd7fde09700008000808680b (45 bytes) - a0500700000ee7fc000000035 -2024-09-06T11:05:48.679Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:48.680Z DRIVER « [RES] [GetSerialApiCapabilities] - payload: 0x011e027a00040610f6873e88cf2bc04ffbd7fde09700008000808680ba0500700 - 000ee7fc0000000 -2024-09-06T11:05:48.681Z CNTRLR received API capabilities: - firmware version: 1.30 - manufacturer ID: 0x027a - product type: 0x04 - product ID: 0x0610 - supported functions: - · GetSerialApiInitData (0x02) - · SetApplicationNodeInformation (0x03) - · GetControllerCapabilities (0x05) - · SetSerialApiTimeouts (0x06) - · GetSerialApiCapabilities (0x07) - · SoftReset (0x08) - · GetProtocolVersion (0x09) - · SerialAPIStarted (0x0a) - · SerialAPISetup (0x0b) - · SetRFReceiveMode (0x10) - · SendNodeInformation (0x12) - · SendData (0x13) - · SendDataMulticast (0x14) - · GetControllerVersion (0x15) - · SendDataAbort (0x16) - · FUNC_ID_ZW_GET_RANDOM (0x1c) - · GetControllerId (0x20) - · UNKNOWN_FUNC_MEMORY_GET_BYTE (0x21) - · UNKNOWN_FUNC_MEMORY_PUT_BYTE (0x22) - · UNKNOWN_FUNC_MEMORY_GET_BUFFER (0x23) - · UNKNOWN_FUNC_MEMORY_PUT_BUFFER (0x24) - · EnterBootloader (0x27) - · UNKNOWN_FUNC_UNKNOWN_0x28 (0x28) - · GetNVMId (0x29) - · ExtNVMReadLongBuffer (0x2a) - · ExtNVMReadLongByte (0x2c) - · NVMOperations (0x2e) - · ClearTxTimers (0x37) - · GetTxTimers (0x38) - · ClearNetworkStats (0x39) - · GetNetworkStats (0x3a) - · GetBackgroundRSSI (0x3b) - · SetListenBeforeTalkThreshold (0x3c) - · RemoveSpecificNodeIdFromNetwork (0x3f) - · GetNodeProtocolInfo (0x41) - · HardReset (0x42) - · FUNC_ID_ZW_REPLICATION_COMMAND_COMPLETE (0x44) - · FUNC_ID_ZW_REPLICATION_SEND_DATA (0x45) - · AssignReturnRoute (0x46) - · DeleteReturnRoute (0x47) - · RequestNodeNeighborUpdate (0x48) - · ApplicationUpdateRequest (0x49) - · AddNodeToNetwork (0x4a) - · RemoveNodeFromNetwork (0x4b) - · AddPrimaryController (0x4d) - · AssignPriorityReturnRoute (0x4f) - · SetLearnMode (0x50) - · AssignSUCReturnRoute (0x51) - · RequestNetworkUpdate (0x53) - · SetSUCNodeId (0x54) - · DeleteSUCReturnRoute (0x55) - · GetSUCNodeId (0x56) - · SendSUCNodeId (0x57) - · AssignPrioritySUCReturnRoute (0x58) - · ExploreRequestInclusion (0x5e) - · ExploreRequestExclusion (0x5f) - · RequestNodeInfo (0x60) - · RemoveFailedNode (0x61) - · IsFailedNode (0x62) - · ReplaceFailedNode (0x63) - · undefined (0x65) - · RequestProtocolCCEncryption (0x68) - · GetRoutingInfo (0x80) - · LockUnlockLastRoute (0x90) - · GetPriorityRoute (0x92) - · SetPriorityRoute (0x93) - · UNKNOWN_FUNC_UNKNOWN_0x98 (0x98) - · VirtualNodeSetNodeInfo (0xa0) - · VirtualNodeSendNodeInfo (0xa2) - · VirtualNodeSetLearnMode (0xa4) - · GetVirtualNodes (0xa5) - · IsVirtualNode (0xa6) - · BridgeApplicationCommand (0xa8) - · SendDataBridge (0xa9) - · SendDataMulticastBridge (0xab) - · GetLibrary (0xbd) - · SendTestFrame (0xbe) - · GetProtocolStatus (0xbf) - · StartWatchdog (0xd2) - · StopWatchdog (0xd3) - · SetMaximumRoutingAttempts (0xd4) - · SetMaxSmartStartInclusionRequestInterval (0xd6) - · undefined (0xd7) - · undefined (0xd8) - · Shutdown (0xd9) - · GetLongRangeNodes (0xda) - · GetLongRangeChannel (0xdb) - · SetLongRangeChannel (0xdc) - · SetLongRangeShadowNodeIDs (0xdd) - · Proprietary_DE (0xde) - · Proprietary_DF (0xdf) - · Proprietary_E7 (0xe7) - · Proprietary_E8 (0xe8) -2024-09-06T11:05:48.681Z CNTRLR querying additional controller information... -2024-09-06T11:05:48.682Z SERIAL » 0x01030002fe (5 bytes) -2024-09-06T11:05:48.682Z DRIVER » [REQ] [GetSerialApiInitData] -2024-09-06T11:05:48.685Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:48.689Z SERIAL « 0x012501020a001d010000000000000000000000000000000000000000000000000 (39 bytes) - 00000000800c7 -2024-09-06T11:05:48.690Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:48.691Z DRIVER « [RES] [GetSerialApiInitData] - payload: 0x0a001d01000000000000000000000000000000000000000000000000000000000 - 800 -2024-09-06T11:05:48.692Z CNTRLR received additional controller information: - Z-Wave API version: 1 (official) - Z-Wave chip type: EFR32ZG23 / ZGM230S - node type Controller - controller role: primary - controller is the SIS: false - controller supports timers: false - Z-Wave Classic nodes: 1 -2024-09-06T11:05:48.692Z CNTRLR querying version info... -2024-09-06T11:05:48.693Z SERIAL » 0x01030015e9 (5 bytes) -2024-09-06T11:05:48.693Z DRIVER » [REQ] [GetControllerVersion] -2024-09-06T11:05:48.695Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:48.697Z SERIAL « 0x011001155a2d5761766520372e3231000794 (18 bytes) -2024-09-06T11:05:48.698Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:48.698Z DRIVER « [RES] [GetControllerVersion] - payload: 0x5a2d5761766520372e32310007 -2024-09-06T11:05:48.699Z CNTRLR received version info: - controller type: Bridge Controller - library version: Z-Wave 7.21 -2024-09-06T11:05:48.699Z CNTRLR querying protocol version info... -2024-09-06T11:05:48.700Z SERIAL » 0x01030009f5 (5 bytes) -2024-09-06T11:05:48.701Z DRIVER » [REQ] [GetProtocolVersion] -2024-09-06T11:05:48.703Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:48.706Z SERIAL « 0x011901090007150300f4353162666237323665306662383733380f (27 bytes) -2024-09-06T11:05:48.706Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:48.707Z DRIVER « [RES] [GetProtocolVersion] - payload: 0x0007150300f435316266623732366530666238373338 -2024-09-06T11:05:48.707Z CNTRLR received protocol version info: - protocol type: Z-Wave - protocol version: 7.21.3 - appl. framework build no.: 244 - git commit hash: 35316266623732366530666238373338 -2024-09-06T11:05:48.708Z CNTRLR querying controller capabilities... -2024-09-06T11:05:48.708Z SERIAL » 0x01030005f9 (5 bytes) -2024-09-06T11:05:48.709Z DRIVER » [REQ] [GetControllerCapabilities] -2024-09-06T11:05:48.711Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:48.712Z SERIAL « 0x0104010528d7 (6 bytes) -2024-09-06T11:05:48.713Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:48.713Z DRIVER « [RES] [GetControllerCapabilities] - payload: 0x28 -2024-09-06T11:05:48.714Z CNTRLR received controller capabilities: - controller role: Primary - is the SUC: false - started this network: true - SIS is present: false - was real primary: true -2024-09-06T11:05:48.714Z CNTRLR querying serial API setup capabilities... -2024-09-06T11:05:48.715Z SERIAL » 0x0104000b01f1 (6 bytes) -2024-09-06T11:05:48.715Z DRIVER » [REQ] [SerialAPISetup] - command: GetSupportedCommands - payload: 0x01 -2024-09-06T11:05:48.718Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:48.721Z SERIAL « 0x0116010b01ff9f8007800000008000000000000000800085 (24 bytes) -2024-09-06T11:05:48.721Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:48.722Z DRIVER « [RES] [SerialAPISetup] - command: GetSupportedCommands - payload: 0xff9f80078000000080000000000000008000 -2024-09-06T11:05:48.723Z CNTRLR supported serial API setup commands: - · GetSupportedCommands - · SetTxStatusReport - · SetLongRangeMaximumTxPower - · SetPowerlevel - · GetLongRangeMaximumTxPower - · GetPowerlevel - · GetMaximumPayloadSize - · GetLongRangeMaximumPayloadSize - · SetPowerlevel16Bit - · GetPowerlevel16Bit - · GetRFRegion - · SetRFRegion - · SetNodeIDType -2024-09-06T11:05:48.723Z CNTRLR querying max. payload size... -2024-09-06T11:05:48.724Z SERIAL » 0x0104000b10e0 (6 bytes) -2024-09-06T11:05:48.725Z DRIVER » [REQ] [SerialAPISetup] - command: GetMaximumPayloadSize - payload: 0x10 -2024-09-06T11:05:48.727Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:48.728Z SERIAL « 0x0105010b102ece (7 bytes) -2024-09-06T11:05:48.728Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:48.729Z DRIVER « [RES] [SerialAPISetup] - command: GetMaximumPayloadSize - maximum payload size: 46 bytes -2024-09-06T11:05:48.730Z CNTRLR maximum payload size: 46 bytes -2024-09-06T11:05:48.730Z CNTRLR supported Z-Wave features: - · SmartStart -2024-09-06T11:05:48.730Z CNTRLR Querying configured RF region... -2024-09-06T11:05:48.731Z SERIAL » 0x0104000b20d0 (6 bytes) -2024-09-06T11:05:48.731Z DRIVER » [REQ] [SerialAPISetup] - command: GetRFRegion - payload: 0x20 -2024-09-06T11:05:48.733Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:48.734Z SERIAL « 0x0105010b2000d0 (7 bytes) -2024-09-06T11:05:48.735Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:48.735Z DRIVER « [RES] [SerialAPISetup] - command: GetRFRegion - region: Europe -2024-09-06T11:05:48.736Z CNTRLR The controller is using RF region Europe -2024-09-06T11:05:48.736Z CNTRLR Querying configured max. Long Range powerlevel... -2024-09-06T11:05:48.737Z SERIAL » 0x0104000b05f5 (6 bytes) -2024-09-06T11:05:48.737Z DRIVER » [REQ] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - payload: 0x05 -2024-09-06T11:05:48.739Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:48.740Z SERIAL « 0x0106010b05008c7a (8 bytes) -2024-09-06T11:05:48.741Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:48.741Z DRIVER « [RES] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - max. TX power (LR): 14.0 dBm -2024-09-06T11:05:48.742Z CNTRLR The max. LR powerlevel is 14.0 dBm -2024-09-06T11:05:48.742Z CNTRLR Querying configured Long Range channel information... -2024-09-06T11:05:48.743Z SERIAL » 0x010300db27 (5 bytes) -2024-09-06T11:05:48.743Z DRIVER » [REQ] [GetLongRangeChannel] -2024-09-06T11:05:48.745Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:48.746Z SERIAL « 0x010501db001030 (7 bytes) -2024-09-06T11:05:48.747Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:48.747Z DRIVER « [RES] [GetLongRangeChannel] - payload: 0x0010 -2024-09-06T11:05:48.748Z CNTRLR received Z-Wave Long Range channel information: - channel: Unsupported - supports auto channel selection: true -2024-09-06T11:05:48.748Z CNTRLR Performing soft reset... -2024-09-06T11:05:48.749Z SERIAL » 0x01030008f4 (5 bytes) -2024-09-06T11:05:48.749Z DRIVER » [REQ] [SoftReset] -2024-09-06T11:05:48.751Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:48.751Z CNTRLR Waiting for the controller to reconnect... -2024-09-06T11:05:48.752Z DRIVER all queues idle -2024-09-06T11:05:48.976Z SERIAL « 0x0112000a0700010100085e989f556c568f740025 (20 bytes) -2024-09-06T11:05:48.977Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:48.979Z DRIVER « [REQ] [SerialAPIStarted] - wake up reason: SoftwareReset - watchdog enabled: false - generic device class: 0x01 - specific device class: 0x00 - always listening: false - supports Long Range: false -2024-09-06T11:05:48.980Z CNTRLR reconnected and restarted -2024-09-06T11:05:48.980Z CNTRLR Starting hardware watchdog... -2024-09-06T11:05:48.981Z CNTRLR Switching serial API to 16-bit node IDs... -2024-09-06T11:05:48.982Z CNTRLR Switching serial API to 8-bit node IDs... -2024-09-06T11:05:48.983Z DRIVER all queues busy -2024-09-06T11:05:48.985Z SERIAL » 0x010300d22e (5 bytes) -2024-09-06T11:05:48.986Z DRIVER » [REQ] [StartWatchdog] -2024-09-06T11:05:48.988Z SERIAL » 0x0105000b800273 (7 bytes) -2024-09-06T11:05:48.990Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 16 bit -2024-09-06T11:05:48.992Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:48.993Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:48.994Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T11:05:48.995Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:48.996Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T11:05:48.997Z CNTRLR Switching to 16-bit node IDs successful -2024-09-06T11:05:48.998Z SERIAL » 0x0105000b800170 (7 bytes) -2024-09-06T11:05:48.998Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 8 bit -2024-09-06T11:05:49.000Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:49.002Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T11:05:49.002Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:49.003Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T11:05:49.003Z CNTRLR Switching to 8-bit node IDs successful -2024-09-06T11:05:49.004Z CNTRLR querying controller IDs... -2024-09-06T11:05:49.004Z SERIAL » 0x01030020dc (5 bytes) -2024-09-06T11:05:49.005Z DRIVER » [REQ] [GetControllerId] -2024-09-06T11:05:49.008Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:49.009Z SERIAL « 0x01080120f6b51bac0123 (10 bytes) -2024-09-06T11:05:49.009Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:49.009Z DRIVER « [RES] [GetControllerId] - home ID: 0xf6b51bac - own node ID: 1 -2024-09-06T11:05:49.010Z CNTRLR received controller IDs: - home ID: 0xf6b51bac - own node ID: 1 -2024-09-06T11:05:49.010Z CNTRLR Enabling TX status report... -2024-09-06T11:05:49.011Z SERIAL » 0x0105000b02ff0c (7 bytes) -2024-09-06T11:05:49.011Z DRIVER » [REQ] [SerialAPISetup] - command: SetTxStatusReport - enabled: true -2024-09-06T11:05:49.014Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:49.015Z SERIAL « 0x0105010b0201f3 (7 bytes) -2024-09-06T11:05:49.015Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:49.016Z DRIVER « [RES] [SerialAPISetup] - command: SetTxStatusReport - success: true -2024-09-06T11:05:49.016Z CNTRLR Enabling TX status report successful... -2024-09-06T11:05:49.017Z CNTRLR finding SUC... -2024-09-06T11:05:49.017Z SERIAL » 0x01030056aa (5 bytes) -2024-09-06T11:05:49.018Z DRIVER » [REQ] [GetSUCNodeId] -2024-09-06T11:05:49.020Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:49.021Z SERIAL « 0x0104015600ac (6 bytes) -2024-09-06T11:05:49.022Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:49.022Z DRIVER « [RES] [GetSUCNodeId] - payload: 0x00 -2024-09-06T11:05:49.023Z CNTRLR No SUC present in the network -2024-09-06T11:05:49.023Z CNTRLR There is no SUC/SIS in the network - promoting ourselves... -2024-09-06T11:05:49.024Z SERIAL » 0x01080054010125010285 (10 bytes) -2024-09-06T11:05:49.024Z DRIVER » [REQ] [SetSUCNodeId] - payload: 0x0101250102 -2024-09-06T11:05:49.028Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:49.030Z SERIAL « 0x0104015401af (6 bytes) -2024-09-06T11:05:49.030Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:49.031Z DRIVER « [RES] [SetSUCNodeId] - was executed: true -2024-09-06T11:05:49.032Z CNTRLR Promotion to SUC/SIS succeeded. -2024-09-06T11:05:49.032Z DRIVER all queues idle -2024-09-06T11:05:49.037Z CNTRLR [Node 001] [Manufacturer Specific] manufacturerId: metadata updated -2024-09-06T11:05:49.037Z CNTRLR [Node 001] [Manufacturer Specific] productType: metadata updated -2024-09-06T11:05:49.037Z CNTRLR [Node 001] [Manufacturer Specific] productId: metadata updated -2024-09-06T11:05:49.038Z CNTRLR [Node 001] [+] [Manufacturer Specific] manufacturerId: 634 -2024-09-06T11:05:49.038Z CNTRLR [Node 001] [+] [Manufacturer Specific] productType: 4 -2024-09-06T11:05:49.038Z CNTRLR [Node 001] [+] [Manufacturer Specific] productId: 1552 -2024-09-06T11:05:49.038Z CNTRLR [Node 001] [Version] firmwareVersions: metadata updated -2024-09-06T11:05:49.038Z CNTRLR [Node 001] [+] [Version] firmwareVersions: 1.30 -2024-09-06T11:05:49.039Z CNTRLR [Node 001] [Version] zWaveProtocolVersion: metadata updated -2024-09-06T11:05:49.039Z CNTRLR [Node 001] [+] [Version] zWaveProtocolVersion: "7.21.3" -2024-09-06T11:05:49.039Z CNTRLR [Node 001] [Version] sdkVersion: metadata updated -2024-09-06T11:05:49.039Z CNTRLR [Node 001] [+] [Version] sdkVersion: "7.21.3" -2024-09-06T11:05:49.040Z CNTRLR Interview completed -2024-09-06T11:05:49.040Z DRIVER Network key for S0 configured, enabling S0 security manager... -2024-09-06T11:05:49.040Z DRIVER At least one network key for S2 configured, enabling S2 security manager... -2024-09-06T11:05:49.041Z DRIVER At least one network key for Z-Wave Long Range configured, enabling security m - anager... -2024-09-06T11:05:49.041Z DRIVER driver ready -2024-09-06T11:05:53.660Z CNTRLR Starting inclusion process with strategy Default... -2024-09-06T11:05:53.662Z DRIVER all queues busy -2024-09-06T11:05:53.664Z SERIAL » 0x0105004ac10372 (7 bytes) -2024-09-06T11:05:53.665Z DRIVER » [REQ] [AddNodeToNetwork] - node type: Any - high power: true - network wide: true - callback id: 3 -2024-09-06T11:05:53.668Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:53.675Z SERIAL « 0x0107004a03010000b0 (9 bytes) -2024-09-06T11:05:53.677Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:53.679Z DRIVER « [REQ] [AddNodeToNetwork] - status: Ready - callback id: 3 -2024-09-06T11:05:53.680Z CNTRLR The controller is now ready to add nodes -2024-09-06T11:05:53.681Z DRIVER all queues idle -2024-09-06T11:05:57.715Z SERIAL « 0x0107004a03020000b3 (9 bytes) -2024-09-06T11:05:57.715Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:57.716Z DRIVER « [REQ] [AddNodeToNetwork] - status: NodeFound - callback id: 3 -2024-09-06T11:05:57.716Z DRIVER handling request AddNodeToNetwork (74) -2024-09-06T11:05:57.716Z DRIVER 1 handler registered! -2024-09-06T11:05:57.717Z DRIVER invoking handler #0 -2024-09-06T11:05:57.717Z CNTRLR handling add node request (status = NodeFound) -2024-09-06T11:05:57.820Z SERIAL « 0x0112004a0304020b0201005e989f556c568f7467 (20 bytes) -2024-09-06T11:05:57.822Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:57.824Z DRIVER « [REQ] [AddNodeToNetwork] - status: AddingController - callback id: 3 -2024-09-06T11:05:57.824Z DRIVER handling request AddNodeToNetwork (74) -2024-09-06T11:05:57.825Z DRIVER 1 handler registered! -2024-09-06T11:05:57.825Z DRIVER invoking handler #0 -2024-09-06T11:05:57.826Z CNTRLR handling add node request (status = AddingController) -2024-09-06T11:05:57.831Z DRIVER the message was handled -2024-09-06T11:05:58.240Z SERIAL « 0x0107004a03050200b6 (9 bytes) -2024-09-06T11:05:58.241Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:58.243Z DRIVER « [REQ] [AddNodeToNetwork] - status: ProtocolDone - callback id: 3 -2024-09-06T11:05:58.244Z DRIVER handling request AddNodeToNetwork (74) -2024-09-06T11:05:58.244Z DRIVER 1 handler registered! -2024-09-06T11:05:58.245Z DRIVER invoking handler #0 -2024-09-06T11:05:58.245Z CNTRLR handling add node request (status = ProtocolDone) -2024-09-06T11:05:58.246Z CNTRLR finishing inclusion process... -2024-09-06T11:05:58.247Z DRIVER all queues busy -2024-09-06T11:05:58.249Z SERIAL » 0x0105004ac50471 (7 bytes) -2024-09-06T11:05:58.250Z DRIVER » [REQ] [AddNodeToNetwork] - action: Stop - high power: true - network wide: true - callback id: 4 -2024-09-06T11:05:58.253Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:58.290Z SERIAL « 0x0107004a04060200b2 (9 bytes) -2024-09-06T11:05:58.290Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:58.291Z DRIVER « [REQ] [AddNodeToNetwork] - status: Done - callback id: 4 -2024-09-06T11:05:58.292Z SERIAL » 0x0105004ac50075 (7 bytes) -2024-09-06T11:05:58.293Z DRIVER » [REQ] [AddNodeToNetwork] - action: Stop - high power: true - network wide: true - callback id: 0 -2024-09-06T11:05:58.298Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:58.298Z CNTRLR The inclusion process was stopped -2024-09-06T11:05:58.299Z CNTRLR finished adding node 2: - basic device class: Static Controller - generic device class: Remote Controller - specific device class: Unused - supported CCs: - · Z-Wave Plus Info (0x5e) - · Security (0x98) - · Security 2 (0x9f) - · Transport Service (0x55) - · Supervision (0x6c) - · CRC-16 Encapsulation (0x56) - · Multi Command (0x8f) - · Inclusion Controller (0x74) - controlled CCs: -2024-09-06T11:05:58.299Z CNTRLR » [Node 002] Assigning SUC return route... -2024-09-06T11:05:58.299Z CNTRLR » [Node 002] Deleting SUC return route... -2024-09-06T11:05:58.300Z SERIAL » 0x010500550205a8 (7 bytes) -2024-09-06T11:05:58.301Z DRIVER » [Node 002] [REQ] [DeleteSUCReturnRoute] - payload: 0x0205 -2024-09-06T11:05:58.306Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:58.309Z SERIAL « 0x0104015501ae (6 bytes) -2024-09-06T11:05:58.310Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:58.310Z DRIVER « [RES] [DeleteSUCReturnRoute] - was executed: true -2024-09-06T11:05:58.374Z SERIAL « 0x01210055050000000000000000000000000000000000000000000000000000000 (35 bytes) - 0008e -2024-09-06T11:05:58.375Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:58.376Z DRIVER « [REQ] [DeleteSUCReturnRoute] - callback id: 5 - transmit status: OK -2024-09-06T11:05:58.377Z SERIAL » 0x010500510206af (7 bytes) -2024-09-06T11:05:58.378Z DRIVER » [Node 002] [REQ] [AssignSUCReturnRoute] - payload: 0x0206 -2024-09-06T11:05:58.380Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:58.387Z SERIAL « 0x0104015101aa (6 bytes) -2024-09-06T11:05:58.388Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:58.389Z DRIVER « [RES] [AssignSUCReturnRoute] - was executed: true -2024-09-06T11:05:58.460Z SERIAL « 0x01210051060000000000000000000000000000000000000000000000000000000 (35 bytes) - 00089 -2024-09-06T11:05:58.462Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:58.464Z DRIVER « [REQ] [AssignSUCReturnRoute] - callback id: 6 - transmit status: OK -2024-09-06T11:05:58.471Z SERIAL » 0x010e00a90102029f04250000000007e0 (16 bytes) -2024-09-06T11:05:58.473Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x25 - │ callback id: 7 - └─[Security2CCKEXGet] -2024-09-06T11:05:58.476Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:58.483Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:05:58.483Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:58.484Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:01.595Z SERIAL « 0x011d00a90700000100df7f7f7f7f00000300000000030100007f7f7f7f7fec (31 bytes) -2024-09-06T11:06:01.596Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:01.596Z SERIAL « 0x011d00a90700000100df7f7f7f7f00000300000000030100007f7f7f7f7fec (31 bytes) -2024-09-06T11:06:01.597Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:01.597Z SERIAL « 0x011d00a90700000100df7f7f7f7f00000300000000030100007f7f7f7f7fec (31 bytes) -2024-09-06T11:06:01.597Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:01.599Z DRIVER « [REQ] [SendDataBridge] - callback id: 7 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -33 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:01.601Z DRIVER « [REQ] [SendDataBridge] - callback id: 7 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -33 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:01.602Z DRIVER handling request SendDataBridge (169) -2024-09-06T11:06:01.602Z DRIVER no handlers registered! -2024-09-06T11:06:01.602Z DRIVER « [REQ] [SendDataBridge] - callback id: 7 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -33 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:01.603Z DRIVER handling request SendDataBridge (169) -2024-09-06T11:06:01.603Z DRIVER no handlers registered! -2024-09-06T11:06:01.604Z SERIAL « 0x010f00a8000102069f050002018700df9c (17 bytes) -2024-09-06T11:06:01.605Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:01.606Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -33 dBm - └─[Security2CCKEXReport] - echo: false - supported schemes: - · KEXScheme1 - supported ECDH profiles: - · Curve25519 - CSA requested: false - requested security classes: - · S2_Unauthenticated - · S2_Authenticated - · S2_AccessControl - · S0_Legacy -2024-09-06T11:06:01.608Z SERIAL » 0x011200a90102069f060002018725000000000871 (20 bytes) -2024-09-06T11:06:01.609Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x25 - │ callback id: 8 - └─[Security2CCKEXSet] - echo: false - selected scheme: KEXScheme1 - selected ECDH profile: Curve25519 - CSA permitted: false - granted security classes: - · S2_Unauthenticated - · S2_Authenticated - · S2_AccessControl - · S0_Legacy -2024-09-06T11:06:01.615Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:01.621Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:01.622Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:01.624Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:01.640Z SERIAL « 0x011d00a90800000100df7f7f7f7f00000300000000030100007f7f7f7f7fe3 (31 bytes) -2024-09-06T11:06:01.640Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:01.641Z DRIVER « [REQ] [SendDataBridge] - callback id: 8 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -33 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:01.642Z DRIVER all queues idle -2024-09-06T11:06:01.665Z SERIAL « 0x012c00a8000102239f0800000016326db7f17b665ff37e1510eaeeced1cd3d320 (46 bytes) - 0ee627b76f02fb82ad74600df52 -2024-09-06T11:06:01.666Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:01.667Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -33 dBm - └─[Security2CCPublicKeyReport] - is including node: false - public key: 0x000016326db7f17b665ff37e1510eaeeced1cd3d3200ee627b76f - 02fb82ad746 -2024-09-06T11:06:01.668Z DRIVER all queues busy -2024-09-06T11:06:01.669Z SERIAL » 0x012f00a90102239f0801fde52acde7bf333072b0d32512f8d3ed9f97f1cdc0139 (49 bytes) - 676e5a988b7aad15809250000000009f9 -2024-09-06T11:06:01.669Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x25 - │ callback id: 9 - └─[Security2CCPublicKeyReport] - is including node: true - public key: 0xfde52acde7bf333072b0d32512f8d3ed9f97f1cdc0139676e5a98 - 8b7aad15809 -2024-09-06T11:06:01.679Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:01.684Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:01.684Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:01.685Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:01.706Z SERIAL « 0x011d00a90900000200df7f7f7f7f00000300000000030100007f7f7f7f7fe1 (31 bytes) -2024-09-06T11:06:01.706Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:01.707Z DRIVER « [REQ] [SendDataBridge] - callback id: 9 - transmit status: OK, took 20 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -33 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:01.709Z DRIVER all queues idle -2024-09-06T11:06:01.723Z SERIAL « 0x010c00a8000102039f01fd00dfe7 (14 bytes) -2024-09-06T11:06:01.724Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:01.724Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -33 dBm - └─[Security2CCNonceGet] - sequence number: 253 -2024-09-06T11:06:01.726Z DRIVER all queues busy -2024-09-06T11:06:01.727Z SERIAL » 0x012000a90102149f020601e68611a022589a58c26524d318ea85e105000000000 (34 bytes) - a5b -2024-09-06T11:06:01.728Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x05 - │ callback id: 10 - └─[Security2CCNonceReport] - sequence number: 6 - SOS: true - MOS: false - receiver entropy: 0xe68611a022589a58c26524d318ea85e1 -2024-09-06T11:06:01.734Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:01.740Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:01.741Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:01.741Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:01.757Z SERIAL « 0x011d00a90a00000100df7f7f7f7f00000300000000030100007f7f7f7f7fe1 (31 bytes) -2024-09-06T11:06:01.758Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:01.758Z DRIVER « [REQ] [SendDataBridge] - callback id: 10 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -33 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:01.759Z DRIVER all queues idle -2024-09-06T11:06:01.785Z SERIAL « 0x012d00a8000102249f03fe0112415291a211d5aa969a469363af95164ec59537f (47 bytes) - c5d5bc3cb4554f274f1ecc300e086 -2024-09-06T11:06:01.787Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:01.788Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -32 dBm - └─[Security2CCMessageEncapsulation] - │ sequence number: 254 - │ extensions: - │ · type: SPAN - │ sender EI: 0x5291a211d5aa969a469363af95164ec5 - │ key: 0xd303b057e46ed9a7315b3d81d4c79497 - │ IV: 0x05f2c238b27c7229b6259f98cf - │ plaintext: 0x9f0601020187 - │ auth tag: 0xcb4554f274f1ecc3 - │ security class: Temporary - └─[Security2CCKEXSet] - echo: true - selected scheme: KEXScheme1 - selected ECDH profile: Curve25519 - CSA permitted: false - granted security classes: - · S2_Unauthenticated - · S2_Authenticated - · S2_AccessControl - · S0_Legacy -2024-09-06T11:06:01.789Z DRIVER all queues busy -2024-09-06T11:06:01.790Z SERIAL » 0x011e00a90102129f030700e70b239a84c507dfc350c154a3cc25000000000b49 (32 bytes) -2024-09-06T11:06:01.791Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x25 - │ callback id: 11 - └─[Security2CCMessageEncapsulation] - │ sequence number: 7 - │ key: 0xd303b057e46ed9a7315b3d81d4c79497 - │ IV: 0x77104b86cc59fedb418c8467cb - │ ciphertext: 0xe70b239a84c5 - │ auth data: 0x0102f6b51bac00120700 - │ auth tag: 0x07dfc350c154a3cc - │ security class: Temporary - └─[Security2CCKEXReport] - echo: true - supported schemes: - · KEXScheme1 - supported ECDH profiles: - · Curve25519 - CSA requested: false - requested security classes: - · S2_Unauthenticated - · S2_Authenticated - · S2_AccessControl - · S0_Legacy -2024-09-06T11:06:01.797Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:01.804Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:01.804Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:01.805Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:01.821Z SERIAL « 0x011d00a90b00000100df7f7f7f7f00000300000000030100007f7f7f7f7fe0 (31 bytes) -2024-09-06T11:06:01.821Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:01.822Z DRIVER « [REQ] [SendDataBridge] - callback id: 11 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -33 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:01.824Z DRIVER all queues idle -2024-09-06T11:06:01.840Z SERIAL « 0x011800a80001020f9f03ff007cbaacabfa461fdc88216600df8e (26 bytes) -2024-09-06T11:06:01.841Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:01.843Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -33 dBm - └─[Security2CCMessageEncapsulation] - │ sequence number: 255 - │ key: 0xd303b057e46ed9a7315b3d81d4c79497 - │ IV: 0x40e1bf0161b0dd7eba59f12e31 - │ plaintext: 0x9f0901 - │ auth tag: 0xabfa461fdc882166 - │ security class: Temporary - └─[Security2CCNetworkKeyGet] - security class: S2_Unauthenticated -2024-09-06T11:06:01.844Z DRIVER all queues busy -2024-09-06T11:06:01.845Z SERIAL » 0x012b00a901021f9f0308007a731f9da8c841a0629f6bebbcfd350238c0b569752 (45 bytes) - 93f7455284125000000000cd2 -2024-09-06T11:06:01.846Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x25 - │ callback id: 12 - └─[Security2CCMessageEncapsulation] - │ sequence number: 8 - │ key: 0xd303b057e46ed9a7315b3d81d4c79497 - │ IV: 0x10304918fbe84810ffe3027341 - │ ciphertext: 0x7a731f9da8c841a0629f6bebbcfd350238c0b5 - │ auth data: 0x0102f6b51bac001f0800 - │ auth tag: 0x6975293f74552841 - │ security class: Temporary - └─[Security2CCNetworkKeyReport] - security class: S2_Unauthenticated -2024-09-06T11:06:01.854Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:01.861Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:01.861Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:01.862Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:01.881Z SERIAL « 0x011d00a90c00000100df7f7f7f7f00000300000000030100007f7f7f7f7fe7 (31 bytes) -2024-09-06T11:06:01.882Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:01.883Z DRIVER « [REQ] [SendDataBridge] - callback id: 12 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -33 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:01.883Z DRIVER all queues idle -2024-09-06T11:06:01.895Z SERIAL « 0x010c00a8000102039f010000df1a (14 bytes) -2024-09-06T11:06:01.896Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:01.897Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -33 dBm - └─[Security2CCNonceGet] - sequence number: 0 -2024-09-06T11:06:01.898Z DRIVER all queues busy -2024-09-06T11:06:01.898Z SERIAL » 0x012000a90102149f02090152202eaa5dcf9a821fff7e55bf58043205000000000 (34 bytes) - d9a -2024-09-06T11:06:01.899Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x05 - │ callback id: 13 - └─[Security2CCNonceReport] - sequence number: 9 - SOS: true - MOS: false - receiver entropy: 0x52202eaa5dcf9a821fff7e55bf580432 -2024-09-06T11:06:01.905Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:01.911Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:01.912Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:01.913Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:01.927Z SERIAL « 0x011d00a90d00000100df7f7f7f7f00000300000000030100007f7f7f7f7fe6 (31 bytes) -2024-09-06T11:06:01.927Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:01.928Z DRIVER « [REQ] [SendDataBridge] - callback id: 13 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -33 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:01.934Z DRIVER all queues idle -2024-09-06T11:06:01.952Z SERIAL « 0x012900a8000102209f030101124163c9abbad297243227bb7640f0c1df134c0ce (43 bytes) - 7d2be38ee26e6e400dfcb -2024-09-06T11:06:01.953Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:01.954Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -33 dBm - └─[Security2CCMessageEncapsulation] - │ sequence number: 1 - │ extensions: - │ · type: SPAN - │ sender EI: 0x63c9abbad297243227bb7640f0c1df13 - │ key: 0x44b45806725f2a6ebc3e2641f36f6caa - │ IV: 0x31e3c9f88a6d07b6fa1b7a487e - │ plaintext: 0x9f0b - │ auth tag: 0xe7d2be38ee26e6e4 - │ security class: S2_Unauthenticated - └─[Security2CCNetworkKeyVerify] -2024-09-06T11:06:01.956Z DRIVER all queues busy -2024-09-06T11:06:01.957Z SERIAL » 0x010f00a90102039f010a25000000000ee6 (17 bytes) -2024-09-06T11:06:01.957Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x25 - │ callback id: 14 - └─[Security2CCNonceGet] - sequence number: 10 -2024-09-06T11:06:01.961Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:01.967Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:01.968Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:01.968Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:01.981Z SERIAL « 0x011d00a90e00000100df7f7f7f7f00000300000000030100007f7f7f7f7fe5 (31 bytes) -2024-09-06T11:06:01.982Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:01.982Z DRIVER « [REQ] [SendDataBridge] - callback id: 14 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -33 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:02.000Z SERIAL « 0x011d00a8000102149f02020128bd40dff9dd41d38759d7bbda0424c600df2e (31 bytes) -2024-09-06T11:06:02.001Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.002Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -33 dBm - └─[Security2CCNonceReport] - sequence number: 2 - SOS: true - MOS: false - receiver entropy: 0x28bd40dff9dd41d38759d7bbda0424c6 -2024-09-06T11:06:02.003Z SERIAL » 0x012d00a90102219f030b01124149eeea66ad49472de177aaae06fc83ba6e281d9 (47 bytes) - 195ec24d3dd5ecc24000000000047 -2024-09-06T11:06:02.003Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x24 - │ callback id: 0 - └─[Security2CCMessageEncapsulation] - │ sequence number: 11 - │ extensions: - │ · type: SPAN - │ sender EI: 0x49eeea66ad49472de177aaae06fc83ba - │ key: 0xd303b057e46ed9a7315b3d81d4c79497 - │ IV: 0x9d9b899fcc011daf96936fd0d4 - │ ciphertext: 0x6e281d - │ auth data: 0x0102f6b51bac00210b01124149eeea66ad49472de177aaae06fc83b - a - │ auth tag: 0x9195ec24d3dd5ecc - │ security class: Temporary - └─[Security2CCTransferEnd] - key verified: true - request complete: false -2024-09-06T11:06:02.012Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:02.018Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:02.018Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.019Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:02.020Z DRIVER all queues idle -2024-09-06T11:06:02.055Z SERIAL « 0x011800a80001020f9f030300a35d4b6dacc81a65e9f39c00df46 (26 bytes) -2024-09-06T11:06:02.056Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.057Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -33 dBm - └─[Security2CCMessageEncapsulation] - │ sequence number: 3 - │ key: 0xd303b057e46ed9a7315b3d81d4c79497 - │ IV: 0x6d755fb03128713909b22ac4a5 - │ plaintext: 0x9f0902 - │ auth tag: 0x6dacc81a65e9f39c - │ security class: Temporary - └─[Security2CCNetworkKeyGet] - security class: S2_Authenticated -2024-09-06T11:06:02.058Z DRIVER all queues busy -2024-09-06T11:06:02.059Z SERIAL » 0x012b00a901021f9f030c00bb00ffbd6830ec49380fa18b3da543a8c688eeb2f25 (45 bytes) - c256536bb8825000000000f48 -2024-09-06T11:06:02.060Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x25 - │ callback id: 15 - └─[Security2CCMessageEncapsulation] - │ sequence number: 12 - │ key: 0xd303b057e46ed9a7315b3d81d4c79497 - │ IV: 0x12efb6c27224f675626dc98e3e - │ ciphertext: 0xbb00ffbd6830ec49380fa18b3da543a8c688ee - │ auth data: 0x0102f6b51bac001f0c00 - │ auth tag: 0xb2f25c256536bb88 - │ security class: Temporary - └─[Security2CCNetworkKeyReport] - security class: S2_Authenticated -2024-09-06T11:06:02.068Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:02.074Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:02.074Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.075Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:02.092Z SERIAL « 0x011d00a90f00000100df7f7f7f7f00000300000000030100007f7f7f7f7fe4 (31 bytes) -2024-09-06T11:06:02.092Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.093Z DRIVER « [REQ] [SendDataBridge] - callback id: 15 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -33 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:02.094Z DRIVER all queues idle -2024-09-06T11:06:02.107Z SERIAL « 0x010c00a8000102039f010400df1e (14 bytes) -2024-09-06T11:06:02.108Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.109Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -33 dBm - └─[Security2CCNonceGet] - sequence number: 4 -2024-09-06T11:06:02.110Z DRIVER all queues busy -2024-09-06T11:06:02.110Z SERIAL » 0x012000a90102149f020d0111bd97b743c81c935b2802eece0f698d05000000001 (34 bytes) - 0d7 -2024-09-06T11:06:02.111Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x05 - │ callback id: 16 - └─[Security2CCNonceReport] - sequence number: 13 - SOS: true - MOS: false - receiver entropy: 0x11bd97b743c81c935b2802eece0f698d -2024-09-06T11:06:02.118Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:02.123Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:02.124Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.124Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:02.140Z SERIAL « 0x011d00a91000000100df7f7f7f7f00000300000000030100007f7f7f7f7ffb (31 bytes) -2024-09-06T11:06:02.141Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.141Z DRIVER « [REQ] [SendDataBridge] - callback id: 16 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -33 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:02.142Z DRIVER all queues idle -2024-09-06T11:06:02.165Z SERIAL « 0x012900a8000102209f0305011241f2440a66e5c2598eb31421baa7e4f74ead929 (43 bytes) - 26cfb9c0db765cf00df13 -2024-09-06T11:06:02.167Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.168Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -33 dBm - └─[Security2CCMessageEncapsulation] - │ sequence number: 5 - │ extensions: - │ · type: SPAN - │ sender EI: 0xf2440a66e5c2598eb31421baa7e4f74e - │ key: 0xdda415256006027530b2d9548c898f93 - │ IV: 0x77f78076a8ba454b8be39ed4d7 - │ plaintext: 0x9f0b - │ auth tag: 0x926cfb9c0db765cf - │ security class: S2_Authenticated - └─[Security2CCNetworkKeyVerify] -2024-09-06T11:06:02.169Z DRIVER all queues busy -2024-09-06T11:06:02.169Z SERIAL » 0x010f00a90102039f010e250000000011fd (17 bytes) -2024-09-06T11:06:02.170Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x25 - │ callback id: 17 - └─[Security2CCNonceGet] - sequence number: 14 -2024-09-06T11:06:02.174Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:02.180Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:02.181Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.181Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:02.194Z SERIAL « 0x011d00a91100000100df7f7f7f7f00000300000000030100007f7f7f7f7ffa (31 bytes) -2024-09-06T11:06:02.194Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.195Z DRIVER « [REQ] [SendDataBridge] - callback id: 17 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -33 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:02.213Z SERIAL « 0x011d00a8000102149f0206015ce666ecdfec4de70ad7539bb456014a00df0d (31 bytes) -2024-09-06T11:06:02.214Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.215Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -33 dBm - └─[Security2CCNonceReport] - sequence number: 6 - SOS: true - MOS: false - receiver entropy: 0x5ce666ecdfec4de70ad7539bb456014a -2024-09-06T11:06:02.216Z SERIAL » 0x012d00a90102219f030f0112418e325bd8dad4d37b513cef4cb21dc3ced80444f (47 bytes) - ea60c22c869e41d240000000000ff -2024-09-06T11:06:02.216Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x24 - │ callback id: 0 - └─[Security2CCMessageEncapsulation] - │ sequence number: 15 - │ extensions: - │ · type: SPAN - │ sender EI: 0x8e325bd8dad4d37b513cef4cb21dc3ce - │ key: 0xd303b057e46ed9a7315b3d81d4c79497 - │ IV: 0x65f3e112721d30625d04fcef75 - │ ciphertext: 0xd80444 - │ auth data: 0x0102f6b51bac00210f0112418e325bd8dad4d37b513cef4cb21dc3c - e - │ auth tag: 0xfea60c22c869e41d - │ security class: Temporary - └─[Security2CCTransferEnd] - key verified: true - request complete: false -2024-09-06T11:06:02.225Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:02.231Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:02.232Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.232Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:02.233Z DRIVER all queues idle -2024-09-06T11:06:02.271Z SERIAL « 0x011800a80001020f9f030700aea3fa37ba236d7efa9f2a00df02 (26 bytes) -2024-09-06T11:06:02.272Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.273Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -33 dBm - └─[Security2CCMessageEncapsulation] - │ sequence number: 7 - │ key: 0xd303b057e46ed9a7315b3d81d4c79497 - │ IV: 0x296a7a7016d2f5b9cc1bee6c97 - │ plaintext: 0x9f0904 - │ auth tag: 0x37ba236d7efa9f2a - │ security class: Temporary - └─[Security2CCNetworkKeyGet] - security class: S2_AccessControl -2024-09-06T11:06:02.273Z DRIVER all queues busy -2024-09-06T11:06:02.274Z SERIAL » 0x012b00a901021f9f031000277e517f2f48795adca604f18c3c03afbcbe3c235ad (45 bytes) - f97ebea850b250000000012fa -2024-09-06T11:06:02.275Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x25 - │ callback id: 18 - └─[Security2CCMessageEncapsulation] - │ sequence number: 16 - │ key: 0xd303b057e46ed9a7315b3d81d4c79497 - │ IV: 0xf2a09412a5eac0907757890c7b - │ ciphertext: 0x277e517f2f48795adca604f18c3c03afbcbe3c - │ auth data: 0x0102f6b51bac001f1000 - │ auth tag: 0x235adf97ebea850b - │ security class: Temporary - └─[Security2CCNetworkKeyReport] - security class: S2_AccessControl -2024-09-06T11:06:02.283Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:02.289Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:02.290Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.290Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:02.308Z SERIAL « 0x011d00a91200000100df7f7f7f7f00000300000000030100007f7f7f7f7ff9 (31 bytes) -2024-09-06T11:06:02.308Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.309Z DRIVER « [REQ] [SendDataBridge] - callback id: 18 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -33 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:02.312Z DRIVER all queues idle -2024-09-06T11:06:02.325Z SERIAL « 0x010c00a8000102039f010800df12 (14 bytes) -2024-09-06T11:06:02.326Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.327Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -33 dBm - └─[Security2CCNonceGet] - sequence number: 8 -2024-09-06T11:06:02.328Z DRIVER all queues busy -2024-09-06T11:06:02.329Z SERIAL » 0x012000a90102149f021101763d177bb16b85299b32ff75d44f1c8605000000001 (34 bytes) - 389 -2024-09-06T11:06:02.329Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x05 - │ callback id: 19 - └─[Security2CCNonceReport] - sequence number: 17 - SOS: true - MOS: false - receiver entropy: 0x763d177bb16b85299b32ff75d44f1c86 -2024-09-06T11:06:02.336Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:02.341Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:02.342Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.342Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:02.358Z SERIAL « 0x011d00a91300000100df7f7f7f7f00000300000000030100007f7f7f7f7ff8 (31 bytes) -2024-09-06T11:06:02.359Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.359Z DRIVER « [REQ] [SendDataBridge] - callback id: 19 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -33 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:02.360Z DRIVER all queues idle -2024-09-06T11:06:02.385Z SERIAL « 0x012900a8000102209f0309011241f8ff20c6f7337e9d0d61e8ae5925f597752ce (43 bytes) - feb2ff06de9b44200df47 -2024-09-06T11:06:02.386Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.387Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -33 dBm - └─[Security2CCMessageEncapsulation] - │ sequence number: 9 - │ extensions: - │ · type: SPAN - │ sender EI: 0xf8ff20c6f7337e9d0d61e8ae5925f597 - │ key: 0xfca06923982033f3af9dfc7c1e4ad45a - │ IV: 0x9ffcc90d68eca7fd9d90c814d6 - │ plaintext: 0x9f0b - │ auth tag: 0xefeb2ff06de9b442 - │ security class: S2_AccessControl - └─[Security2CCNetworkKeyVerify] -2024-09-06T11:06:02.388Z DRIVER all queues busy -2024-09-06T11:06:02.388Z SERIAL » 0x010f00a90102039f0112250000000014e4 (17 bytes) -2024-09-06T11:06:02.389Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x25 - │ callback id: 20 - └─[Security2CCNonceGet] - sequence number: 18 -2024-09-06T11:06:02.392Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:02.399Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:02.399Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.400Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:02.412Z SERIAL « 0x011d00a91400000100df7f7f7f7f00000300000000030100007f7f7f7f7fff (31 bytes) -2024-09-06T11:06:02.413Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.413Z DRIVER « [REQ] [SendDataBridge] - callback id: 20 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -33 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:02.431Z SERIAL « 0x011d00a8000102149f020a0124e98c5e0a68b23a67afa3b6037a4e1400df1f (31 bytes) -2024-09-06T11:06:02.432Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.433Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -33 dBm - └─[Security2CCNonceReport] - sequence number: 10 - SOS: true - MOS: false - receiver entropy: 0x24e98c5e0a68b23a67afa3b6037a4e14 -2024-09-06T11:06:02.434Z SERIAL » 0x012d00a90102219f0313011241953713e93e8173a9bf90bc14fc9e3b8a8e80823 (47 bytes) - a74ac77a52be26c240000000000d0 -2024-09-06T11:06:02.435Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x24 - │ callback id: 0 - └─[Security2CCMessageEncapsulation] - │ sequence number: 19 - │ extensions: - │ · type: SPAN - │ sender EI: 0x953713e93e8173a9bf90bc14fc9e3b8a - │ key: 0xd303b057e46ed9a7315b3d81d4c79497 - │ IV: 0x9fef4b9232ec7fb741cf1852a6 - │ ciphertext: 0x8e8082 - │ auth data: 0x0102f6b51bac002113011241953713e93e8173a9bf90bc14fc9e3b8 - a - │ auth tag: 0x3a74ac77a52be26c - │ security class: Temporary - └─[Security2CCTransferEnd] - key verified: true - request complete: false -2024-09-06T11:06:02.443Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:02.450Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:02.451Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.451Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:02.452Z DRIVER all queues idle -2024-09-06T11:06:02.486Z SERIAL « 0x011800a80001020f9f030b0063a31c7a2f98a43aa2b8f700df69 (26 bytes) -2024-09-06T11:06:02.487Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.488Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -33 dBm - └─[Security2CCMessageEncapsulation] - │ sequence number: 11 - │ key: 0xd303b057e46ed9a7315b3d81d4c79497 - │ IV: 0xe6121ae308a3774662a9aa1ef1 - │ plaintext: 0x9f0980 - │ auth tag: 0x7a2f98a43aa2b8f7 - │ security class: Temporary - └─[Security2CCNetworkKeyGet] - security class: S0_Legacy -2024-09-06T11:06:02.489Z DRIVER all queues busy -2024-09-06T11:06:02.489Z SERIAL » 0x012b00a901021f9f0314006e6919ed5ab8638d2979744b1a68bbd43284bb535e8 (45 bytes) - 763078b4e89250000000015fb -2024-09-06T11:06:02.490Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x25 - │ callback id: 21 - └─[Security2CCMessageEncapsulation] - │ sequence number: 20 - │ key: 0xd303b057e46ed9a7315b3d81d4c79497 - │ IV: 0x00204748ed62431b4aa3e83a48 - │ ciphertext: 0x6e6919ed5ab8638d2979744b1a68bbd43284bb - │ auth data: 0x0102f6b51bac001f1400 - │ auth tag: 0x535e8763078b4e89 - │ security class: Temporary - └─[Security2CCNetworkKeyReport] - security class: S0_Legacy -2024-09-06T11:06:02.498Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:02.504Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:02.505Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.505Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:02.521Z SERIAL « 0x011d00a91500000100df7f7f7f7f00000300000000030100007f7f7f7f7ffe (31 bytes) -2024-09-06T11:06:02.522Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.523Z DRIVER « [REQ] [SendDataBridge] - callback id: 21 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -33 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:02.524Z DRIVER all queues idle -2024-09-06T11:06:02.537Z SERIAL « 0x010c00a8000102039f010c00df16 (14 bytes) -2024-09-06T11:06:02.538Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.539Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -33 dBm - └─[Security2CCNonceGet] - sequence number: 12 -2024-09-06T11:06:02.540Z DRIVER all queues busy -2024-09-06T11:06:02.541Z SERIAL » 0x012000a90102149f02150161354b97efb7a67d462d9a888063575605000000001 (34 bytes) - 66b -2024-09-06T11:06:02.541Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x05 - │ callback id: 22 - └─[Security2CCNonceReport] - sequence number: 21 - SOS: true - MOS: false - receiver entropy: 0x61354b97efb7a67d462d9a8880635756 -2024-09-06T11:06:02.548Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:02.554Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:02.554Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.555Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:02.570Z SERIAL « 0x011d00a91600000100df7f7f7f7f00000300000000030100007f7f7f7f7ffd (31 bytes) -2024-09-06T11:06:02.570Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.570Z DRIVER « [REQ] [SendDataBridge] - callback id: 22 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -33 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:02.571Z DRIVER all queues idle -2024-09-06T11:06:02.596Z SERIAL « 0x012900a8000102209f030d011241870f126da9776b3cd1412ae3717afa48e06e0 (43 bytes) - 80c32e190aed6c800dfa6 -2024-09-06T11:06:02.597Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.598Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -33 dBm - └─[Security2CCMessageEncapsulation] - │ sequence number: 13 - │ extensions: - │ · type: SPAN - │ sender EI: 0x870f126da9776b3cd1412ae3717afa48 - │ key: 0xece479ca82cc867c1db471e86eab2248 - │ IV: 0x86be5f7ddf89e0a9244e16f9aa - │ plaintext: 0x9f0b - │ auth tag: 0x080c32e190aed6c8 - │ security class: S0_Legacy - └─[Security2CCNetworkKeyVerify] -2024-09-06T11:06:02.599Z DRIVER all queues busy -2024-09-06T11:06:02.599Z SERIAL » 0x010f00a90102039f0116250000000017e3 (17 bytes) -2024-09-06T11:06:02.600Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x25 - │ callback id: 23 - └─[Security2CCNonceGet] - sequence number: 22 -2024-09-06T11:06:02.604Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:02.610Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:02.610Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.611Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:02.623Z SERIAL « 0x011d00a91700000100df7f7f7f7f00000300000000030100007f7f7f7f7ffc (31 bytes) -2024-09-06T11:06:02.624Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.625Z DRIVER « [REQ] [SendDataBridge] - callback id: 23 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -33 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:02.646Z SERIAL « 0x011d00a8000102149f020e0136f954b3af5bacd7af45140619de332c00df97 (31 bytes) -2024-09-06T11:06:02.646Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.647Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -33 dBm - └─[Security2CCNonceReport] - sequence number: 14 - SOS: true - MOS: false - receiver entropy: 0x36f954b3af5bacd7af45140619de332c -2024-09-06T11:06:02.648Z SERIAL » 0x012d00a90102219f03170112413ea321fe7ab403923c0d12693f29ab8e33bfbca (47 bytes) - 625b7a9dad56f562400000000005b -2024-09-06T11:06:02.649Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x24 - │ callback id: 0 - └─[Security2CCMessageEncapsulation] - │ sequence number: 23 - │ extensions: - │ · type: SPAN - │ sender EI: 0x3ea321fe7ab403923c0d12693f29ab8e - │ key: 0xd303b057e46ed9a7315b3d81d4c79497 - │ IV: 0x800c0f6dcfd1dee8148199ed3c - │ ciphertext: 0x33bfbc - │ auth data: 0x0102f6b51bac0021170112413ea321fe7ab403923c0d12693f29ab8 - e - │ auth tag: 0xa625b7a9dad56f56 - │ security class: Temporary - └─[Security2CCTransferEnd] - key verified: true - request complete: false -2024-09-06T11:06:02.657Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:02.663Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:02.664Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.665Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:02.665Z DRIVER all queues idle -2024-09-06T11:06:02.702Z SERIAL « 0x011800a80001020f9f030f00ebdd5e55166e9212fcf5e200df21 (26 bytes) -2024-09-06T11:06:02.703Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.704Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -33 dBm - └─[Security2CCMessageEncapsulation] - │ sequence number: 15 - │ key: 0xd303b057e46ed9a7315b3d81d4c79497 - │ IV: 0x09ed6aae312b67ed9b87e9760d - │ plaintext: 0x9f0c01 - │ auth tag: 0x55166e9212fcf5e2 - │ security class: Temporary - └─[Security2CCTransferEnd] - key verified: false - request complete: true -2024-09-06T11:06:02.705Z CNTRLR [Node 002] Security S2 bootstrapping successful with these security classes: - · S2_AccessControl - · S2_Authenticated - · S2_Unauthenticated - · S0_Legacy -2024-09-06T11:06:02.705Z DRIVER the message was handled -2024-09-06T11:06:07.371Z DRIVER ███████╗ ██╗ ██╗ █████╗ ██╗ ██╗ ███████╗ ██╗ ███████╗ - ╚══███╔╝ ██║ ██║ ██╔══██╗ ██║ ██║ ██╔════╝ ██║ ██╔════╝ - ███╔╝ █████╗ ██║ █╗ ██║ ███████║ ██║ ██║ █████╗ ██║ ███████╗ - ███╔╝ ╚════╝ ██║███╗██║ ██╔══██║ ╚██╗ ██╔╝ ██╔══╝ ██ ██║ ╚════██║ - ███████╗ ╚███╔███╔╝ ██║ ██║ ╚████╔╝ ███████╗ ╚█████╔╝ ███████║ - ╚══════╝ ╚══╝╚══╝ ╚═╝ ╚═╝ ╚═══╝ ╚══════╝ ╚════╝ ╚══════╝ -2024-09-06T11:06:07.373Z DRIVER version 13.2.0 -2024-09-06T11:06:07.374Z DRIVER -2024-09-06T11:06:07.374Z DRIVER starting driver... -2024-09-06T11:06:07.374Z DRIVER opening serial port /dev/serial/by-id/usb-Zooz_800_Z-Wave_Stick_533D004242-if0 - 0 -2024-09-06T11:06:07.383Z DRIVER serial port opened -2024-09-06T11:06:07.384Z SERIAL » 0x15 (1 bytes) -2024-09-06T11:06:08.389Z DRIVER loading configuration... -2024-09-06T11:06:08.394Z CONFIG version 13.2.0 -2024-09-06T11:06:08.696Z DRIVER beginning interview... -2024-09-06T11:06:08.698Z DRIVER added request handler for AddNodeToNetwork (0x4a)... - 1 registered -2024-09-06T11:06:08.698Z DRIVER added request handler for RemoveNodeFromNetwork (0x4b)... - 1 registered -2024-09-06T11:06:08.698Z DRIVER added request handler for ReplaceFailedNode (0x63)... - 1 registered -2024-09-06T11:06:08.698Z DRIVER added request handler for SetLearnMode (0x50)... - 1 registered -2024-09-06T11:06:08.699Z CNTRLR querying Serial API capabilities... -2024-09-06T11:06:08.707Z SERIAL » 0x01030007fb (5 bytes) -2024-09-06T11:06:08.708Z DRIVER » [REQ] [GetSerialApiCapabilities] -2024-09-06T11:06:08.711Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:08.716Z SERIAL « 0x012b0107011e027a00040610f6873e88cf2bc04ffbd7fde09700008000808680b (45 bytes) - a0500700000ee7fc000000035 -2024-09-06T11:06:08.717Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:08.718Z DRIVER « [RES] [GetSerialApiCapabilities] - payload: 0x011e027a00040610f6873e88cf2bc04ffbd7fde09700008000808680ba0500700 - 000ee7fc0000000 -2024-09-06T11:06:08.720Z CNTRLR received API capabilities: - firmware version: 1.30 - manufacturer ID: 0x027a - product type: 0x04 - product ID: 0x0610 - supported functions: - · GetSerialApiInitData (0x02) - · SetApplicationNodeInformation (0x03) - · GetControllerCapabilities (0x05) - · SetSerialApiTimeouts (0x06) - · GetSerialApiCapabilities (0x07) - · SoftReset (0x08) - · GetProtocolVersion (0x09) - · SerialAPIStarted (0x0a) - · SerialAPISetup (0x0b) - · SetRFReceiveMode (0x10) - · SendNodeInformation (0x12) - · SendData (0x13) - · SendDataMulticast (0x14) - · GetControllerVersion (0x15) - · SendDataAbort (0x16) - · FUNC_ID_ZW_GET_RANDOM (0x1c) - · GetControllerId (0x20) - · UNKNOWN_FUNC_MEMORY_GET_BYTE (0x21) - · UNKNOWN_FUNC_MEMORY_PUT_BYTE (0x22) - · UNKNOWN_FUNC_MEMORY_GET_BUFFER (0x23) - · UNKNOWN_FUNC_MEMORY_PUT_BUFFER (0x24) - · EnterBootloader (0x27) - · UNKNOWN_FUNC_UNKNOWN_0x28 (0x28) - · GetNVMId (0x29) - · ExtNVMReadLongBuffer (0x2a) - · ExtNVMReadLongByte (0x2c) - · NVMOperations (0x2e) - · ClearTxTimers (0x37) - · GetTxTimers (0x38) - · ClearNetworkStats (0x39) - · GetNetworkStats (0x3a) - · GetBackgroundRSSI (0x3b) - · SetListenBeforeTalkThreshold (0x3c) - · RemoveSpecificNodeIdFromNetwork (0x3f) - · GetNodeProtocolInfo (0x41) - · HardReset (0x42) - · FUNC_ID_ZW_REPLICATION_COMMAND_COMPLETE (0x44) - · FUNC_ID_ZW_REPLICATION_SEND_DATA (0x45) - · AssignReturnRoute (0x46) - · DeleteReturnRoute (0x47) - · RequestNodeNeighborUpdate (0x48) - · ApplicationUpdateRequest (0x49) - · AddNodeToNetwork (0x4a) - · RemoveNodeFromNetwork (0x4b) - · AddPrimaryController (0x4d) - · AssignPriorityReturnRoute (0x4f) - · SetLearnMode (0x50) - · AssignSUCReturnRoute (0x51) - · RequestNetworkUpdate (0x53) - · SetSUCNodeId (0x54) - · DeleteSUCReturnRoute (0x55) - · GetSUCNodeId (0x56) - · SendSUCNodeId (0x57) - · AssignPrioritySUCReturnRoute (0x58) - · ExploreRequestInclusion (0x5e) - · ExploreRequestExclusion (0x5f) - · RequestNodeInfo (0x60) - · RemoveFailedNode (0x61) - · IsFailedNode (0x62) - · ReplaceFailedNode (0x63) - · undefined (0x65) - · RequestProtocolCCEncryption (0x68) - · GetRoutingInfo (0x80) - · LockUnlockLastRoute (0x90) - · GetPriorityRoute (0x92) - · SetPriorityRoute (0x93) - · UNKNOWN_FUNC_UNKNOWN_0x98 (0x98) - · VirtualNodeSetNodeInfo (0xa0) - · VirtualNodeSendNodeInfo (0xa2) - · VirtualNodeSetLearnMode (0xa4) - · GetVirtualNodes (0xa5) - · IsVirtualNode (0xa6) - · BridgeApplicationCommand (0xa8) - · SendDataBridge (0xa9) - · SendDataMulticastBridge (0xab) - · GetLibrary (0xbd) - · SendTestFrame (0xbe) - · GetProtocolStatus (0xbf) - · StartWatchdog (0xd2) - · StopWatchdog (0xd3) - · SetMaximumRoutingAttempts (0xd4) - · SetMaxSmartStartInclusionRequestInterval (0xd6) - · undefined (0xd7) - · undefined (0xd8) - · Shutdown (0xd9) - · GetLongRangeNodes (0xda) - · GetLongRangeChannel (0xdb) - · SetLongRangeChannel (0xdc) - · SetLongRangeShadowNodeIDs (0xdd) - · Proprietary_DE (0xde) - · Proprietary_DF (0xdf) - · Proprietary_E7 (0xe7) - · Proprietary_E8 (0xe8) -2024-09-06T11:06:08.721Z CNTRLR querying additional controller information... -2024-09-06T11:06:08.722Z SERIAL » 0x01030002fe (5 bytes) -2024-09-06T11:06:08.723Z DRIVER » [REQ] [GetSerialApiInitData] -2024-09-06T11:06:08.731Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:08.732Z SERIAL « 0x012501020a081d030000000000000000000000000000000000000000000000000 (39 bytes) - 00000000800cd -2024-09-06T11:06:08.733Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:08.734Z DRIVER « [RES] [GetSerialApiInitData] - payload: 0x0a081d03000000000000000000000000000000000000000000000000000000000 - 800 -2024-09-06T11:06:08.734Z CNTRLR received additional controller information: - Z-Wave API version: 1 (official) - Z-Wave chip type: EFR32ZG23 / ZGM230S - node type Controller - controller role: primary - controller is the SIS: true - controller supports timers: false - Z-Wave Classic nodes: 1, 2 -2024-09-06T11:06:08.735Z CNTRLR querying version info... -2024-09-06T11:06:08.736Z SERIAL » 0x01030015e9 (5 bytes) -2024-09-06T11:06:08.736Z DRIVER » [REQ] [GetControllerVersion] -2024-09-06T11:06:08.738Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:08.743Z SERIAL « 0x011001155a2d5761766520372e3231000794 (18 bytes) -2024-09-06T11:06:08.743Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:08.744Z DRIVER « [RES] [GetControllerVersion] - payload: 0x5a2d5761766520372e32310007 -2024-09-06T11:06:08.745Z CNTRLR received version info: - controller type: Bridge Controller - library version: Z-Wave 7.21 -2024-09-06T11:06:08.745Z CNTRLR querying protocol version info... -2024-09-06T11:06:08.746Z SERIAL » 0x01030009f5 (5 bytes) -2024-09-06T11:06:08.746Z DRIVER » [REQ] [GetProtocolVersion] -2024-09-06T11:06:08.752Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:08.752Z SERIAL « 0x011901090007150300f4353162666237323665306662383733380f (27 bytes) -2024-09-06T11:06:08.753Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:08.753Z DRIVER « [RES] [GetProtocolVersion] - payload: 0x0007150300f435316266623732366530666238373338 -2024-09-06T11:06:08.754Z CNTRLR received protocol version info: - protocol type: Z-Wave - protocol version: 7.21.3 - appl. framework build no.: 244 - git commit hash: 35316266623732366530666238373338 -2024-09-06T11:06:08.754Z CNTRLR querying controller capabilities... -2024-09-06T11:06:08.755Z SERIAL » 0x01030005f9 (5 bytes) -2024-09-06T11:06:08.756Z DRIVER » [REQ] [GetControllerCapabilities] -2024-09-06T11:06:08.761Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:08.761Z SERIAL « 0x010401051ce3 (6 bytes) -2024-09-06T11:06:08.762Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:08.762Z DRIVER « [RES] [GetControllerCapabilities] - payload: 0x1c -2024-09-06T11:06:08.763Z CNTRLR received controller capabilities: - controller role: Primary - is the SUC: true - started this network: true - SIS is present: true - was real primary: true -2024-09-06T11:06:08.763Z CNTRLR querying serial API setup capabilities... -2024-09-06T11:06:08.764Z SERIAL » 0x0104000b01f1 (6 bytes) -2024-09-06T11:06:08.765Z DRIVER » [REQ] [SerialAPISetup] - command: GetSupportedCommands - payload: 0x01 -2024-09-06T11:06:08.769Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:08.770Z SERIAL « 0x0116010b01ff9f8007800000008000000000000000800085 (24 bytes) -2024-09-06T11:06:08.770Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:08.771Z DRIVER « [RES] [SerialAPISetup] - command: GetSupportedCommands - payload: 0xff9f80078000000080000000000000008000 -2024-09-06T11:06:08.772Z CNTRLR supported serial API setup commands: - · GetSupportedCommands - · SetTxStatusReport - · SetLongRangeMaximumTxPower - · SetPowerlevel - · GetLongRangeMaximumTxPower - · GetPowerlevel - · GetMaximumPayloadSize - · GetLongRangeMaximumPayloadSize - · SetPowerlevel16Bit - · GetPowerlevel16Bit - · GetRFRegion - · SetRFRegion - · SetNodeIDType -2024-09-06T11:06:08.772Z CNTRLR querying max. payload size... -2024-09-06T11:06:08.773Z SERIAL » 0x0104000b10e0 (6 bytes) -2024-09-06T11:06:08.773Z DRIVER » [REQ] [SerialAPISetup] - command: GetMaximumPayloadSize - payload: 0x10 -2024-09-06T11:06:08.778Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:08.778Z SERIAL « 0x0105010b102ece (7 bytes) -2024-09-06T11:06:08.778Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:08.779Z DRIVER « [RES] [SerialAPISetup] - command: GetMaximumPayloadSize - maximum payload size: 46 bytes -2024-09-06T11:06:08.780Z CNTRLR maximum payload size: 46 bytes -2024-09-06T11:06:08.780Z CNTRLR supported Z-Wave features: - · SmartStart -2024-09-06T11:06:08.781Z CNTRLR Querying configured RF region... -2024-09-06T11:06:08.781Z SERIAL » 0x0104000b20d0 (6 bytes) -2024-09-06T11:06:08.782Z DRIVER » [REQ] [SerialAPISetup] - command: GetRFRegion - payload: 0x20 -2024-09-06T11:06:08.786Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:08.787Z SERIAL « 0x0105010b2000d0 (7 bytes) -2024-09-06T11:06:08.787Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:08.788Z DRIVER « [RES] [SerialAPISetup] - command: GetRFRegion - region: Europe -2024-09-06T11:06:08.788Z CNTRLR The controller is using RF region Europe -2024-09-06T11:06:08.788Z CNTRLR Querying configured max. Long Range powerlevel... -2024-09-06T11:06:08.789Z SERIAL » 0x0104000b05f5 (6 bytes) -2024-09-06T11:06:08.790Z DRIVER » [REQ] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - payload: 0x05 -2024-09-06T11:06:08.793Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:08.794Z SERIAL « 0x0106010b05008c7a (8 bytes) -2024-09-06T11:06:08.794Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:08.795Z DRIVER « [RES] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - max. TX power (LR): 14.0 dBm -2024-09-06T11:06:08.795Z CNTRLR The max. LR powerlevel is 14.0 dBm -2024-09-06T11:06:08.796Z CNTRLR Querying configured Long Range channel information... -2024-09-06T11:06:08.796Z SERIAL » 0x010300db27 (5 bytes) -2024-09-06T11:06:08.797Z DRIVER » [REQ] [GetLongRangeChannel] -2024-09-06T11:06:08.801Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:08.802Z SERIAL « 0x010501db001030 (7 bytes) -2024-09-06T11:06:08.802Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:08.803Z DRIVER « [RES] [GetLongRangeChannel] - payload: 0x0010 -2024-09-06T11:06:08.804Z CNTRLR received Z-Wave Long Range channel information: - channel: Unsupported - supports auto channel selection: true -2024-09-06T11:06:08.804Z CNTRLR Performing soft reset... -2024-09-06T11:06:08.805Z SERIAL » 0x01030008f4 (5 bytes) -2024-09-06T11:06:08.805Z DRIVER » [REQ] [SoftReset] -2024-09-06T11:06:08.809Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:08.810Z CNTRLR Waiting for the controller to reconnect... -2024-09-06T11:06:08.811Z DRIVER all queues idle -2024-09-06T11:06:09.037Z SERIAL « 0x0112000a0700010100085e989f556c568f740025 (20 bytes) -2024-09-06T11:06:09.037Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:09.038Z DRIVER « [REQ] [SerialAPIStarted] - wake up reason: SoftwareReset - watchdog enabled: false - generic device class: 0x01 - specific device class: 0x00 - always listening: false - supports Long Range: false -2024-09-06T11:06:09.038Z CNTRLR reconnected and restarted -2024-09-06T11:06:09.038Z CNTRLR Starting hardware watchdog... -2024-09-06T11:06:09.038Z CNTRLR Switching serial API to 16-bit node IDs... -2024-09-06T11:06:09.039Z CNTRLR Switching serial API to 8-bit node IDs... -2024-09-06T11:06:09.039Z DRIVER all queues busy -2024-09-06T11:06:09.039Z SERIAL » 0x010300d22e (5 bytes) -2024-09-06T11:06:09.040Z DRIVER » [REQ] [StartWatchdog] -2024-09-06T11:06:09.041Z SERIAL » 0x0105000b800273 (7 bytes) -2024-09-06T11:06:09.041Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 16 bit -2024-09-06T11:06:09.042Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:09.043Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:09.045Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T11:06:09.045Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:09.046Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T11:06:09.047Z CNTRLR Switching to 16-bit node IDs successful -2024-09-06T11:06:09.047Z SERIAL » 0x0105000b800170 (7 bytes) -2024-09-06T11:06:09.048Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 8 bit -2024-09-06T11:06:09.053Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:09.054Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T11:06:09.054Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:09.055Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T11:06:09.056Z CNTRLR Switching to 8-bit node IDs successful -2024-09-06T11:06:09.056Z CNTRLR querying controller IDs... -2024-09-06T11:06:09.056Z SERIAL » 0x01030020dc (5 bytes) -2024-09-06T11:06:09.057Z DRIVER » [REQ] [GetControllerId] -2024-09-06T11:06:09.059Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:09.060Z SERIAL « 0x01080120f6b51bac0123 (10 bytes) -2024-09-06T11:06:09.061Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:09.061Z DRIVER « [RES] [GetControllerId] - home ID: 0xf6b51bac - own node ID: 1 -2024-09-06T11:06:09.062Z CNTRLR received controller IDs: - home ID: 0xf6b51bac - own node ID: 1 -2024-09-06T11:06:09.062Z CNTRLR Enabling TX status report... -2024-09-06T11:06:09.063Z SERIAL » 0x0105000b02ff0c (7 bytes) -2024-09-06T11:06:09.063Z DRIVER » [REQ] [SerialAPISetup] - command: SetTxStatusReport - enabled: true -2024-09-06T11:06:09.068Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:09.068Z SERIAL « 0x0105010b0201f3 (7 bytes) -2024-09-06T11:06:09.068Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:09.069Z DRIVER « [RES] [SerialAPISetup] - command: SetTxStatusReport - success: true -2024-09-06T11:06:09.070Z CNTRLR Enabling TX status report successful... -2024-09-06T11:06:09.070Z CNTRLR finding SUC... -2024-09-06T11:06:09.070Z SERIAL » 0x01030056aa (5 bytes) -2024-09-06T11:06:09.071Z DRIVER » [REQ] [GetSUCNodeId] -2024-09-06T11:06:09.074Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:09.075Z SERIAL « 0x0104015601ad (6 bytes) -2024-09-06T11:06:09.075Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:09.076Z DRIVER « [RES] [GetSUCNodeId] - payload: 0x01 -2024-09-06T11:06:09.077Z CNTRLR This is the SUC -2024-09-06T11:06:09.078Z DRIVER all queues idle -2024-09-06T11:06:09.095Z DRIVER Cache file for homeId 0xf6b51bac found, attempting to restore the network from - cache... -2024-09-06T11:06:09.097Z CNTRLR [Node 001] Embedded device config loaded -2024-09-06T11:06:09.098Z DRIVER Restoring the network from cache was successful! -2024-09-06T11:06:09.098Z CNTRLR [Node 001] [Manufacturer Specific] manufacturerId: metadata updated -2024-09-06T11:06:09.098Z CNTRLR [Node 001] [Manufacturer Specific] productType: metadata updated -2024-09-06T11:06:09.099Z CNTRLR [Node 001] [Manufacturer Specific] productId: metadata updated -2024-09-06T11:06:09.099Z CNTRLR [Node 001] [~] [Manufacturer Specific] manufacturerId: 634 => 634 -2024-09-06T11:06:09.099Z CNTRLR [Node 001] [~] [Manufacturer Specific] productType: 4 => 4 -2024-09-06T11:06:09.099Z CNTRLR [Node 001] [~] [Manufacturer Specific] productId: 1552 => 1552 -2024-09-06T11:06:09.100Z CNTRLR [Node 001] [Version] firmwareVersions: metadata updated -2024-09-06T11:06:09.100Z CNTRLR [Node 001] [~] [Version] firmwareVersions: 1.30 => 1.30 -2024-09-06T11:06:09.100Z CNTRLR [Node 001] [Version] zWaveProtocolVersion: metadata updated -2024-09-06T11:06:09.100Z CNTRLR [Node 001] [~] [Version] zWaveProtocolVersion: "7.21.3" => "7.21.3" -2024-09-06T11:06:09.101Z CNTRLR [Node 001] [Version] sdkVersion: metadata updated -2024-09-06T11:06:09.101Z CNTRLR [Node 001] [~] [Version] sdkVersion: "7.21.3" => "7.21.3" -2024-09-06T11:06:09.101Z CNTRLR Interview completed -2024-09-06T11:06:09.101Z DRIVER Network key for S0 configured, enabling S0 security manager... -2024-09-06T11:06:09.102Z DRIVER At least one network key for S2 configured, enabling S2 security manager... -2024-09-06T11:06:09.103Z DRIVER At least one network key for Z-Wave Long Range configured, enabling security m - anager... -2024-09-06T11:06:09.104Z DRIVER driver ready -2024-09-06T11:06:10.104Z CNTRLR Updating the controller NIF... -2024-09-06T11:06:10.106Z DRIVER all queues busy -2024-09-06T11:06:10.109Z SERIAL » 0x010f0003010100085e989f556c568f7436 (17 bytes) -2024-09-06T11:06:10.111Z DRIVER » [REQ] [SetApplicationNodeInformation] - is listening: true - generic device class: 0x01 - specific device class: 0x00 - supported CCs: - · Z-Wave Plus Info - · Security - · Security 2 - · Transport Service - · Supervision - · CRC-16 Encapsulation - · Multi Command - · Inclusion Controller - controlled CCs: -2024-09-06T11:06:10.114Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:10.117Z CNTRLR performing hard reset... -2024-09-06T11:06:10.119Z SERIAL » 0x0104004201b8 (6 bytes) -2024-09-06T11:06:10.120Z DRIVER » [REQ] [HardReset] - callback id: 1 -2024-09-06T11:06:10.123Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:10.144Z SERIAL « 0x0104004201b8 (6 bytes) -2024-09-06T11:06:10.144Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:10.145Z DRIVER « [REQ] [HardReset] - callback id: 1 -2024-09-06T11:06:10.146Z CNTRLR hard reset succeeded -2024-09-06T11:06:10.146Z CNTRLR querying Serial API capabilities... -2024-09-06T11:06:10.147Z SERIAL » 0x01030007fb (5 bytes) -2024-09-06T11:06:10.147Z DRIVER » [REQ] [GetSerialApiCapabilities] -2024-09-06T11:06:10.150Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:10.154Z SERIAL « 0x012b0107011e027a00040610f6873e88cf2bc04ffbd7fde09700008000808680b (45 bytes) - a0500700000ee7fc000000035 -2024-09-06T11:06:10.155Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:10.155Z DRIVER « [RES] [GetSerialApiCapabilities] - payload: 0x011e027a00040610f6873e88cf2bc04ffbd7fde09700008000808680ba0500700 - 000ee7fc0000000 -2024-09-06T11:06:10.156Z CNTRLR received API capabilities: - firmware version: 1.30 - manufacturer ID: 0x027a - product type: 0x04 - product ID: 0x0610 - supported functions: - · GetSerialApiInitData (0x02) - · SetApplicationNodeInformation (0x03) - · GetControllerCapabilities (0x05) - · SetSerialApiTimeouts (0x06) - · GetSerialApiCapabilities (0x07) - · SoftReset (0x08) - · GetProtocolVersion (0x09) - · SerialAPIStarted (0x0a) - · SerialAPISetup (0x0b) - · SetRFReceiveMode (0x10) - · SendNodeInformation (0x12) - · SendData (0x13) - · SendDataMulticast (0x14) - · GetControllerVersion (0x15) - · SendDataAbort (0x16) - · FUNC_ID_ZW_GET_RANDOM (0x1c) - · GetControllerId (0x20) - · UNKNOWN_FUNC_MEMORY_GET_BYTE (0x21) - · UNKNOWN_FUNC_MEMORY_PUT_BYTE (0x22) - · UNKNOWN_FUNC_MEMORY_GET_BUFFER (0x23) - · UNKNOWN_FUNC_MEMORY_PUT_BUFFER (0x24) - · EnterBootloader (0x27) - · UNKNOWN_FUNC_UNKNOWN_0x28 (0x28) - · GetNVMId (0x29) - · ExtNVMReadLongBuffer (0x2a) - · ExtNVMReadLongByte (0x2c) - · NVMOperations (0x2e) - · ClearTxTimers (0x37) - · GetTxTimers (0x38) - · ClearNetworkStats (0x39) - · GetNetworkStats (0x3a) - · GetBackgroundRSSI (0x3b) - · SetListenBeforeTalkThreshold (0x3c) - · RemoveSpecificNodeIdFromNetwork (0x3f) - · GetNodeProtocolInfo (0x41) - · HardReset (0x42) - · FUNC_ID_ZW_REPLICATION_COMMAND_COMPLETE (0x44) - · FUNC_ID_ZW_REPLICATION_SEND_DATA (0x45) - · AssignReturnRoute (0x46) - · DeleteReturnRoute (0x47) - · RequestNodeNeighborUpdate (0x48) - · ApplicationUpdateRequest (0x49) - · AddNodeToNetwork (0x4a) - · RemoveNodeFromNetwork (0x4b) - · AddPrimaryController (0x4d) - · AssignPriorityReturnRoute (0x4f) - · SetLearnMode (0x50) - · AssignSUCReturnRoute (0x51) - · RequestNetworkUpdate (0x53) - · SetSUCNodeId (0x54) - · DeleteSUCReturnRoute (0x55) - · GetSUCNodeId (0x56) - · SendSUCNodeId (0x57) - · AssignPrioritySUCReturnRoute (0x58) - · ExploreRequestInclusion (0x5e) - · ExploreRequestExclusion (0x5f) - · RequestNodeInfo (0x60) - · RemoveFailedNode (0x61) - · IsFailedNode (0x62) - · ReplaceFailedNode (0x63) - · undefined (0x65) - · RequestProtocolCCEncryption (0x68) - · GetRoutingInfo (0x80) - · LockUnlockLastRoute (0x90) - · GetPriorityRoute (0x92) - · SetPriorityRoute (0x93) - · UNKNOWN_FUNC_UNKNOWN_0x98 (0x98) - · VirtualNodeSetNodeInfo (0xa0) - · VirtualNodeSendNodeInfo (0xa2) - · VirtualNodeSetLearnMode (0xa4) - · GetVirtualNodes (0xa5) - · IsVirtualNode (0xa6) - · BridgeApplicationCommand (0xa8) - · SendDataBridge (0xa9) - · SendDataMulticastBridge (0xab) - · GetLibrary (0xbd) - · SendTestFrame (0xbe) - · GetProtocolStatus (0xbf) - · StartWatchdog (0xd2) - · StopWatchdog (0xd3) - · SetMaximumRoutingAttempts (0xd4) - · SetMaxSmartStartInclusionRequestInterval (0xd6) - · undefined (0xd7) - · undefined (0xd8) - · Shutdown (0xd9) - · GetLongRangeNodes (0xda) - · GetLongRangeChannel (0xdb) - · SetLongRangeChannel (0xdc) - · SetLongRangeShadowNodeIDs (0xdd) - · Proprietary_DE (0xde) - · Proprietary_DF (0xdf) - · Proprietary_E7 (0xe7) - · Proprietary_E8 (0xe8) -2024-09-06T11:06:10.156Z CNTRLR querying additional controller information... -2024-09-06T11:06:10.157Z SERIAL » 0x01030002fe (5 bytes) -2024-09-06T11:06:10.158Z DRIVER » [REQ] [GetSerialApiInitData] -2024-09-06T11:06:10.159Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:10.164Z SERIAL « 0x012501020a001d010000000000000000000000000000000000000000000000000 (39 bytes) - 00000000800c7 -2024-09-06T11:06:10.165Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:10.166Z DRIVER « [RES] [GetSerialApiInitData] - payload: 0x0a001d01000000000000000000000000000000000000000000000000000000000 - 800 -2024-09-06T11:06:10.167Z CNTRLR received additional controller information: - Z-Wave API version: 1 (official) - Z-Wave chip type: EFR32ZG23 / ZGM230S - node type Controller - controller role: primary - controller is the SIS: false - controller supports timers: false - Z-Wave Classic nodes: 1 -2024-09-06T11:06:10.167Z CNTRLR querying version info... -2024-09-06T11:06:10.168Z SERIAL » 0x01030015e9 (5 bytes) -2024-09-06T11:06:10.168Z DRIVER » [REQ] [GetControllerVersion] -2024-09-06T11:06:10.170Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:10.173Z SERIAL « 0x011001155a2d5761766520372e3231000794 (18 bytes) -2024-09-06T11:06:10.173Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:10.174Z DRIVER « [RES] [GetControllerVersion] - payload: 0x5a2d5761766520372e32310007 -2024-09-06T11:06:10.174Z CNTRLR received version info: - controller type: Bridge Controller - library version: Z-Wave 7.21 -2024-09-06T11:06:10.174Z CNTRLR querying protocol version info... -2024-09-06T11:06:10.175Z SERIAL » 0x01030009f5 (5 bytes) -2024-09-06T11:06:10.176Z DRIVER » [REQ] [GetProtocolVersion] -2024-09-06T11:06:10.177Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:10.180Z SERIAL « 0x011901090007150300f4353162666237323665306662383733380f (27 bytes) -2024-09-06T11:06:10.181Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:10.181Z DRIVER « [RES] [GetProtocolVersion] - payload: 0x0007150300f435316266623732366530666238373338 -2024-09-06T11:06:10.182Z CNTRLR received protocol version info: - protocol type: Z-Wave - protocol version: 7.21.3 - appl. framework build no.: 244 - git commit hash: 35316266623732366530666238373338 -2024-09-06T11:06:10.182Z CNTRLR querying controller capabilities... -2024-09-06T11:06:10.183Z SERIAL » 0x01030005f9 (5 bytes) -2024-09-06T11:06:10.184Z DRIVER » [REQ] [GetControllerCapabilities] -2024-09-06T11:06:10.186Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:10.187Z SERIAL « 0x0104010528d7 (6 bytes) -2024-09-06T11:06:10.188Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:10.188Z DRIVER « [RES] [GetControllerCapabilities] - payload: 0x28 -2024-09-06T11:06:10.189Z CNTRLR received controller capabilities: - controller role: Primary - is the SUC: false - started this network: true - SIS is present: false - was real primary: true -2024-09-06T11:06:10.189Z CNTRLR querying serial API setup capabilities... -2024-09-06T11:06:10.190Z SERIAL » 0x0104000b01f1 (6 bytes) -2024-09-06T11:06:10.190Z DRIVER » [REQ] [SerialAPISetup] - command: GetSupportedCommands - payload: 0x01 -2024-09-06T11:06:10.192Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:10.195Z SERIAL « 0x0116010b01ff9f8007800000008000000000000000800085 (24 bytes) -2024-09-06T11:06:10.195Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:10.196Z DRIVER « [RES] [SerialAPISetup] - command: GetSupportedCommands - payload: 0xff9f80078000000080000000000000008000 -2024-09-06T11:06:10.197Z CNTRLR supported serial API setup commands: - · GetSupportedCommands - · SetTxStatusReport - · SetLongRangeMaximumTxPower - · SetPowerlevel - · GetLongRangeMaximumTxPower - · GetPowerlevel - · GetMaximumPayloadSize - · GetLongRangeMaximumPayloadSize - · SetPowerlevel16Bit - · GetPowerlevel16Bit - · GetRFRegion - · SetRFRegion - · SetNodeIDType -2024-09-06T11:06:10.197Z CNTRLR querying max. payload size... -2024-09-06T11:06:10.198Z SERIAL » 0x0104000b10e0 (6 bytes) -2024-09-06T11:06:10.198Z DRIVER » [REQ] [SerialAPISetup] - command: GetMaximumPayloadSize - payload: 0x10 -2024-09-06T11:06:10.200Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:10.201Z SERIAL « 0x0105010b102ece (7 bytes) -2024-09-06T11:06:10.202Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:10.202Z DRIVER « [RES] [SerialAPISetup] - command: GetMaximumPayloadSize - maximum payload size: 46 bytes -2024-09-06T11:06:10.203Z CNTRLR maximum payload size: 46 bytes -2024-09-06T11:06:10.203Z CNTRLR supported Z-Wave features: - · SmartStart -2024-09-06T11:06:10.203Z CNTRLR Querying configured RF region... -2024-09-06T11:06:10.204Z SERIAL » 0x0104000b20d0 (6 bytes) -2024-09-06T11:06:10.205Z DRIVER » [REQ] [SerialAPISetup] - command: GetRFRegion - payload: 0x20 -2024-09-06T11:06:10.207Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:10.208Z SERIAL « 0x0105010b2000d0 (7 bytes) -2024-09-06T11:06:10.208Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:10.209Z DRIVER « [RES] [SerialAPISetup] - command: GetRFRegion - region: Europe -2024-09-06T11:06:10.210Z CNTRLR The controller is using RF region Europe -2024-09-06T11:06:10.210Z CNTRLR Querying configured max. Long Range powerlevel... -2024-09-06T11:06:10.210Z SERIAL » 0x0104000b05f5 (6 bytes) -2024-09-06T11:06:10.211Z DRIVER » [REQ] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - payload: 0x05 -2024-09-06T11:06:10.213Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:10.214Z SERIAL « 0x0106010b05008c7a (8 bytes) -2024-09-06T11:06:10.215Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:10.215Z DRIVER « [RES] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - max. TX power (LR): 14.0 dBm -2024-09-06T11:06:10.216Z CNTRLR The max. LR powerlevel is 14.0 dBm -2024-09-06T11:06:10.216Z CNTRLR Querying configured Long Range channel information... -2024-09-06T11:06:10.217Z SERIAL » 0x010300db27 (5 bytes) -2024-09-06T11:06:10.218Z DRIVER » [REQ] [GetLongRangeChannel] -2024-09-06T11:06:10.219Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:10.221Z SERIAL « 0x010501db001030 (7 bytes) -2024-09-06T11:06:10.221Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:10.222Z DRIVER « [RES] [GetLongRangeChannel] - payload: 0x0010 -2024-09-06T11:06:10.222Z CNTRLR received Z-Wave Long Range channel information: - channel: Unsupported - supports auto channel selection: true -2024-09-06T11:06:10.223Z CNTRLR Performing soft reset... -2024-09-06T11:06:10.223Z SERIAL » 0x01030008f4 (5 bytes) -2024-09-06T11:06:10.224Z DRIVER » [REQ] [SoftReset] -2024-09-06T11:06:10.226Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:10.227Z CNTRLR Waiting for the controller to reconnect... -2024-09-06T11:06:10.227Z DRIVER all queues idle -2024-09-06T11:06:10.452Z SERIAL « 0x0112000a0700010100085e989f556c568f740025 (20 bytes) -2024-09-06T11:06:10.454Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:10.455Z DRIVER « [REQ] [SerialAPIStarted] - wake up reason: SoftwareReset - watchdog enabled: false - generic device class: 0x01 - specific device class: 0x00 - always listening: false - supports Long Range: false -2024-09-06T11:06:10.456Z CNTRLR reconnected and restarted -2024-09-06T11:06:10.457Z CNTRLR Starting hardware watchdog... -2024-09-06T11:06:10.458Z CNTRLR Switching serial API to 16-bit node IDs... -2024-09-06T11:06:10.459Z CNTRLR Switching serial API to 8-bit node IDs... -2024-09-06T11:06:10.459Z DRIVER all queues busy -2024-09-06T11:06:10.461Z SERIAL » 0x010300d22e (5 bytes) -2024-09-06T11:06:10.462Z DRIVER » [REQ] [StartWatchdog] -2024-09-06T11:06:10.465Z SERIAL » 0x0105000b800273 (7 bytes) -2024-09-06T11:06:10.466Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 16 bit -2024-09-06T11:06:10.468Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:10.469Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:10.470Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T11:06:10.471Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:10.471Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T11:06:10.472Z CNTRLR Switching to 16-bit node IDs successful -2024-09-06T11:06:10.473Z SERIAL » 0x0105000b800170 (7 bytes) -2024-09-06T11:06:10.473Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 8 bit -2024-09-06T11:06:10.476Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:10.477Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T11:06:10.478Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:10.478Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T11:06:10.479Z CNTRLR Switching to 8-bit node IDs successful -2024-09-06T11:06:10.479Z CNTRLR querying controller IDs... -2024-09-06T11:06:10.480Z SERIAL » 0x01030020dc (5 bytes) -2024-09-06T11:06:10.481Z DRIVER » [REQ] [GetControllerId] -2024-09-06T11:06:10.483Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:10.484Z SERIAL « 0x01080120e37018550109 (10 bytes) -2024-09-06T11:06:10.485Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:10.485Z DRIVER « [RES] [GetControllerId] - home ID: 0xe3701855 - own node ID: 1 -2024-09-06T11:06:10.486Z CNTRLR received controller IDs: - home ID: 0xe3701855 - own node ID: 1 -2024-09-06T11:06:10.486Z CNTRLR Enabling TX status report... -2024-09-06T11:06:10.487Z SERIAL » 0x0105000b02ff0c (7 bytes) -2024-09-06T11:06:10.487Z DRIVER » [REQ] [SerialAPISetup] - command: SetTxStatusReport - enabled: true -2024-09-06T11:06:10.490Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:10.491Z SERIAL « 0x0105010b0201f3 (7 bytes) -2024-09-06T11:06:10.491Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:10.491Z DRIVER « [RES] [SerialAPISetup] - command: SetTxStatusReport - success: true -2024-09-06T11:06:10.492Z CNTRLR Enabling TX status report successful... -2024-09-06T11:06:10.492Z CNTRLR finding SUC... -2024-09-06T11:06:10.493Z SERIAL » 0x01030056aa (5 bytes) -2024-09-06T11:06:10.493Z DRIVER » [REQ] [GetSUCNodeId] -2024-09-06T11:06:10.496Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:10.497Z SERIAL « 0x0104015600ac (6 bytes) -2024-09-06T11:06:10.497Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:10.498Z DRIVER « [RES] [GetSUCNodeId] - payload: 0x00 -2024-09-06T11:06:10.499Z CNTRLR No SUC present in the network -2024-09-06T11:06:10.499Z CNTRLR There is no SUC/SIS in the network - promoting ourselves... -2024-09-06T11:06:10.500Z SERIAL » 0x01080054010125010285 (10 bytes) -2024-09-06T11:06:10.500Z DRIVER » [REQ] [SetSUCNodeId] - payload: 0x0101250102 -2024-09-06T11:06:10.503Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:10.505Z SERIAL « 0x0104015401af (6 bytes) -2024-09-06T11:06:10.505Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:10.506Z DRIVER « [RES] [SetSUCNodeId] - was executed: true -2024-09-06T11:06:10.507Z CNTRLR Promotion to SUC/SIS succeeded. -2024-09-06T11:06:10.507Z DRIVER all queues idle -2024-09-06T11:06:10.512Z CNTRLR [Node 001] [Manufacturer Specific] manufacturerId: metadata updated -2024-09-06T11:06:10.513Z CNTRLR [Node 001] [Manufacturer Specific] productType: metadata updated -2024-09-06T11:06:10.513Z CNTRLR [Node 001] [Manufacturer Specific] productId: metadata updated -2024-09-06T11:06:10.513Z CNTRLR [Node 001] [+] [Manufacturer Specific] manufacturerId: 634 -2024-09-06T11:06:10.514Z CNTRLR [Node 001] [+] [Manufacturer Specific] productType: 4 -2024-09-06T11:06:10.514Z CNTRLR [Node 001] [+] [Manufacturer Specific] productId: 1552 -2024-09-06T11:06:10.514Z CNTRLR [Node 001] [Version] firmwareVersions: metadata updated -2024-09-06T11:06:10.515Z CNTRLR [Node 001] [+] [Version] firmwareVersions: 1.30 -2024-09-06T11:06:10.515Z CNTRLR [Node 001] [Version] zWaveProtocolVersion: metadata updated -2024-09-06T11:06:10.515Z CNTRLR [Node 001] [+] [Version] zWaveProtocolVersion: "7.21.3" -2024-09-06T11:06:10.516Z CNTRLR [Node 001] [Version] sdkVersion: metadata updated -2024-09-06T11:06:10.516Z CNTRLR [Node 001] [+] [Version] sdkVersion: "7.21.3" -2024-09-06T11:06:10.516Z CNTRLR Interview completed -2024-09-06T11:06:10.517Z DRIVER Network key for S0 configured, enabling S0 security manager... -2024-09-06T11:06:10.517Z DRIVER At least one network key for S2 configured, enabling S2 security manager... -2024-09-06T11:06:10.517Z DRIVER At least one network key for Z-Wave Long Range configured, enabling security m - anager... -2024-09-06T11:06:10.518Z DRIVER driver ready -2024-09-06T11:06:15.148Z CNTRLR Starting inclusion process with strategy Default... -2024-09-06T11:06:15.149Z DRIVER all queues busy -2024-09-06T11:06:15.151Z SERIAL » 0x0105004ac10372 (7 bytes) -2024-09-06T11:06:15.152Z DRIVER » [REQ] [AddNodeToNetwork] - node type: Any - high power: true - network wide: true - callback id: 3 -2024-09-06T11:06:15.158Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:15.161Z SERIAL « 0x0107004a03010000b0 (9 bytes) -2024-09-06T11:06:15.162Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:15.163Z DRIVER « [REQ] [AddNodeToNetwork] - status: Ready - callback id: 3 -2024-09-06T11:06:15.164Z CNTRLR The controller is now ready to add nodes -2024-09-06T11:06:15.165Z DRIVER all queues idle -2024-09-06T11:06:19.201Z SERIAL « 0x0107004a03020000b3 (9 bytes) -2024-09-06T11:06:19.202Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:19.204Z DRIVER « [REQ] [AddNodeToNetwork] - status: NodeFound - callback id: 3 -2024-09-06T11:06:19.205Z DRIVER handling request AddNodeToNetwork (74) -2024-09-06T11:06:19.205Z DRIVER 1 handler registered! -2024-09-06T11:06:19.206Z DRIVER invoking handler #0 -2024-09-06T11:06:19.207Z CNTRLR handling add node request (status = NodeFound) -2024-09-06T11:06:19.307Z SERIAL « 0x0112004a0304020b0201005e989f556c568f7467 (20 bytes) -2024-09-06T11:06:19.308Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:19.310Z DRIVER « [REQ] [AddNodeToNetwork] - status: AddingController - callback id: 3 -2024-09-06T11:06:19.311Z DRIVER handling request AddNodeToNetwork (74) -2024-09-06T11:06:19.311Z DRIVER 1 handler registered! -2024-09-06T11:06:19.312Z DRIVER invoking handler #0 -2024-09-06T11:06:19.312Z CNTRLR handling add node request (status = AddingController) -2024-09-06T11:06:19.315Z DRIVER the message was handled -2024-09-06T11:06:19.727Z SERIAL « 0x0107004a03050200b6 (9 bytes) -2024-09-06T11:06:19.728Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:19.730Z DRIVER « [REQ] [AddNodeToNetwork] - status: ProtocolDone - callback id: 3 -2024-09-06T11:06:19.730Z DRIVER handling request AddNodeToNetwork (74) -2024-09-06T11:06:19.731Z DRIVER 1 handler registered! -2024-09-06T11:06:19.731Z DRIVER invoking handler #0 -2024-09-06T11:06:19.731Z CNTRLR handling add node request (status = ProtocolDone) -2024-09-06T11:06:19.732Z CNTRLR finishing inclusion process... -2024-09-06T11:06:19.733Z DRIVER all queues busy -2024-09-06T11:06:19.733Z SERIAL » 0x0105004ac50471 (7 bytes) -2024-09-06T11:06:19.734Z DRIVER » [REQ] [AddNodeToNetwork] - action: Stop - high power: true - network wide: true - callback id: 4 -2024-09-06T11:06:19.736Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:19.775Z SERIAL « 0x0107004a04060200b2 (9 bytes) -2024-09-06T11:06:19.776Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:19.776Z DRIVER « [REQ] [AddNodeToNetwork] - status: Done - callback id: 4 -2024-09-06T11:06:19.778Z SERIAL » 0x0105004ac50075 (7 bytes) -2024-09-06T11:06:19.778Z DRIVER » [REQ] [AddNodeToNetwork] - action: Stop - high power: true - network wide: true - callback id: 0 -2024-09-06T11:06:19.782Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:19.784Z CNTRLR The inclusion process was stopped -2024-09-06T11:06:19.784Z CNTRLR finished adding node 2: - basic device class: Static Controller - generic device class: Remote Controller - specific device class: Unused - supported CCs: - · Z-Wave Plus Info (0x5e) - · Security (0x98) - · Security 2 (0x9f) - · Transport Service (0x55) - · Supervision (0x6c) - · CRC-16 Encapsulation (0x56) - · Multi Command (0x8f) - · Inclusion Controller (0x74) - controlled CCs: -2024-09-06T11:06:19.785Z CNTRLR » [Node 002] Assigning SUC return route... -2024-09-06T11:06:19.785Z CNTRLR » [Node 002] Deleting SUC return route... -2024-09-06T11:06:19.786Z SERIAL » 0x010500550205a8 (7 bytes) -2024-09-06T11:06:19.786Z DRIVER » [Node 002] [REQ] [DeleteSUCReturnRoute] - payload: 0x0205 -2024-09-06T11:06:19.791Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:19.794Z SERIAL « 0x0104015501ae (6 bytes) -2024-09-06T11:06:19.795Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:19.796Z DRIVER « [RES] [DeleteSUCReturnRoute] - was executed: true -2024-09-06T11:06:19.860Z SERIAL « 0x01210055050000000000000000000000000000000000000000000000000000000 (35 bytes) - 0008e -2024-09-06T11:06:19.862Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:19.863Z DRIVER « [REQ] [DeleteSUCReturnRoute] - callback id: 5 - transmit status: OK -2024-09-06T11:06:19.867Z SERIAL » 0x010500510206af (7 bytes) -2024-09-06T11:06:19.868Z DRIVER » [Node 002] [REQ] [AssignSUCReturnRoute] - payload: 0x0206 -2024-09-06T11:06:19.871Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:19.878Z SERIAL « 0x0104015101aa (6 bytes) -2024-09-06T11:06:19.879Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:19.880Z DRIVER « [RES] [AssignSUCReturnRoute] - was executed: true -2024-09-06T11:06:19.951Z SERIAL « 0x01210051060000000000000000000000000000000000000000000000000000000 (35 bytes) - 00089 -2024-09-06T11:06:19.953Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:19.955Z DRIVER « [REQ] [AssignSUCReturnRoute] - callback id: 6 - transmit status: OK -2024-09-06T11:06:19.961Z SERIAL » 0x010e00a90102029f04250000000007e0 (16 bytes) -2024-09-06T11:06:19.962Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x25 - │ callback id: 7 - └─[Security2CCKEXGet] -2024-09-06T11:06:19.966Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:19.972Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:19.973Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:19.973Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:19.986Z SERIAL « 0x011d00a90700000100df7f7f7f7f00000300000000030100007f7f7f7f7fec (31 bytes) -2024-09-06T11:06:19.987Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:19.988Z DRIVER « [REQ] [SendDataBridge] - callback id: 7 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -33 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:20.004Z SERIAL « 0x010f00a8000102069f050002018700df9c (17 bytes) -2024-09-06T11:06:20.004Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.005Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -33 dBm - └─[Security2CCKEXReport] - echo: false - supported schemes: - · KEXScheme1 - supported ECDH profiles: - · Curve25519 - CSA requested: false - requested security classes: - · S2_Unauthenticated - · S2_Authenticated - · S2_AccessControl - · S0_Legacy -2024-09-06T11:06:20.007Z SERIAL » 0x011200a90102069f060002018725000000000871 (20 bytes) -2024-09-06T11:06:20.008Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x25 - │ callback id: 8 - └─[Security2CCKEXSet] - echo: false - selected scheme: KEXScheme1 - selected ECDH profile: Curve25519 - CSA permitted: false - granted security classes: - · S2_Unauthenticated - · S2_Authenticated - · S2_AccessControl - · S0_Legacy -2024-09-06T11:06:20.014Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:20.018Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:20.018Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.019Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:20.036Z SERIAL « 0x011d00a90800000100df7f7f7f7f00000300000000030100007f7f7f7f7fe3 (31 bytes) -2024-09-06T11:06:20.037Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.037Z DRIVER « [REQ] [SendDataBridge] - callback id: 8 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -33 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:20.038Z DRIVER all queues idle -2024-09-06T11:06:20.062Z SERIAL « 0x012c00a8000102239f08000000bf5edfebd6784f403f15f121756d2df395bdbcf (46 bytes) - 111e387a444fb6afab70100e049 -2024-09-06T11:06:20.063Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.064Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -32 dBm - └─[Security2CCPublicKeyReport] - is including node: false - public key: 0x0000bf5edfebd6784f403f15f121756d2df395bdbcf111e387a44 - 4fb6afab701 -2024-09-06T11:06:20.066Z DRIVER all queues busy -2024-09-06T11:06:20.067Z SERIAL » 0x012f00a90102239f0801de9b0ee1328c7c3b73cfdf9f874a4121e9c401af73908 (49 bytes) - e305bb4031efbc3770525000000000987 -2024-09-06T11:06:20.067Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x25 - │ callback id: 9 - └─[Security2CCPublicKeyReport] - is including node: true - public key: 0xde9b0ee1328c7c3b73cfdf9f874a4121e9c401af73908e305bb40 - 31efbc37705 -2024-09-06T11:06:20.076Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:20.082Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:20.083Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.084Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:20.105Z SERIAL « 0x011d00a90900000200e07f7f7f7f00000300000000030100007f7f7f7f7fde (31 bytes) -2024-09-06T11:06:20.105Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.106Z DRIVER « [REQ] [SendDataBridge] - callback id: 9 - transmit status: OK, took 20 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -32 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:20.107Z DRIVER all queues idle -2024-09-06T11:06:20.122Z SERIAL « 0x010c00a8000102039f01f400dfee (14 bytes) -2024-09-06T11:06:20.123Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.124Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -33 dBm - └─[Security2CCNonceGet] - sequence number: 244 -2024-09-06T11:06:20.125Z DRIVER all queues busy -2024-09-06T11:06:20.126Z SERIAL » 0x012000a90102149f02060148446689447e919ae8a61f0582c1056f05000000000 (34 bytes) - a5b -2024-09-06T11:06:20.127Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x05 - │ callback id: 10 - └─[Security2CCNonceReport] - sequence number: 6 - SOS: true - MOS: false - receiver entropy: 0x48446689447e919ae8a61f0582c1056f -2024-09-06T11:06:20.133Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:20.139Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:20.140Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.141Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:20.155Z SERIAL « 0x011d00a90a00000100df7f7f7f7f00000300000000030100007f7f7f7f7fe1 (31 bytes) -2024-09-06T11:06:20.156Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.156Z DRIVER « [REQ] [SendDataBridge] - callback id: 10 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -33 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:20.157Z DRIVER all queues idle -2024-09-06T11:06:20.183Z SERIAL « 0x012d00a8000102249f03f501124172eef773dea56da96df42bc68018fa16dcf43 (47 bytes) - 1be55eb0bf37c2963cd052b00df2a -2024-09-06T11:06:20.185Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.186Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -33 dBm - └─[Security2CCMessageEncapsulation] - │ sequence number: 245 - │ extensions: - │ · type: SPAN - │ sender EI: 0x72eef773dea56da96df42bc68018fa16 - │ key: 0xb7b96a994522ea514b5221b875a186fe - │ IV: 0xa7995dee387747f2be0cfc52ec - │ plaintext: 0x9f0601020187 - │ auth tag: 0x0bf37c2963cd052b - │ security class: Temporary - └─[Security2CCKEXSet] - echo: true - selected scheme: KEXScheme1 - selected ECDH profile: Curve25519 - CSA permitted: false - granted security classes: - · S2_Unauthenticated - · S2_Authenticated - · S2_AccessControl - · S0_Legacy -2024-09-06T11:06:20.187Z DRIVER all queues busy -2024-09-06T11:06:20.188Z SERIAL » 0x011e00a90102129f030700f4ef49df31c71e5925aa2202363725000000000b7e (32 bytes) -2024-09-06T11:06:20.188Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x25 - │ callback id: 11 - └─[Security2CCMessageEncapsulation] - │ sequence number: 7 - │ key: 0xb7b96a994522ea514b5221b875a186fe - │ IV: 0xae5b349b0cde71dc89318305ad - │ ciphertext: 0xf4ef49df31c7 - │ auth data: 0x0102e370185500120700 - │ auth tag: 0x1e5925aa22023637 - │ security class: Temporary - └─[Security2CCKEXReport] - echo: true - supported schemes: - · KEXScheme1 - supported ECDH profiles: - · Curve25519 - CSA requested: false - requested security classes: - · S2_Unauthenticated - · S2_Authenticated - · S2_AccessControl - · S0_Legacy -2024-09-06T11:06:20.194Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:20.201Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:20.201Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.202Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:20.217Z SERIAL « 0x011d00a90b00000100df7f7f7f7f00000300000000030100007f7f7f7f7fe0 (31 bytes) -2024-09-06T11:06:20.217Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.218Z DRIVER « [REQ] [SendDataBridge] - callback id: 11 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -33 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:20.219Z DRIVER all queues idle -2024-09-06T11:06:20.236Z SERIAL « 0x011800a80001020f9f03f600269cfeee210e1a7a38912800df92 (26 bytes) -2024-09-06T11:06:20.237Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.238Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -33 dBm - └─[Security2CCMessageEncapsulation] - │ sequence number: 246 - │ key: 0xb7b96a994522ea514b5221b875a186fe - │ IV: 0x16a1f588a794e7367490cc15a2 - │ plaintext: 0x9f0901 - │ auth tag: 0xee210e1a7a389128 - │ security class: Temporary - └─[Security2CCNetworkKeyGet] - security class: S2_Unauthenticated -2024-09-06T11:06:20.239Z DRIVER all queues busy -2024-09-06T11:06:20.240Z SERIAL » 0x012b00a901021f9f0308001c35db416f1f673ca2e464a9deccad4f8d478400d06 (45 bytes) - f3aa79d6b3a25000000000c9f -2024-09-06T11:06:20.240Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x25 - │ callback id: 12 - └─[Security2CCMessageEncapsulation] - │ sequence number: 8 - │ key: 0xb7b96a994522ea514b5221b875a186fe - │ IV: 0x5db4d179cdff1ceef4f70e6aa7 - │ ciphertext: 0x1c35db416f1f673ca2e464a9deccad4f8d4784 - │ auth data: 0x0102e3701855001f0800 - │ auth tag: 0x00d06f3aa79d6b3a - │ security class: Temporary - └─[Security2CCNetworkKeyReport] - security class: S2_Unauthenticated -2024-09-06T11:06:20.249Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:20.255Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:20.255Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.256Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:20.272Z SERIAL « 0x011d00a90c00000100df7f7f7f7f00000300000000030100007f7f7f7f7fe7 (31 bytes) -2024-09-06T11:06:20.273Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.273Z DRIVER « [REQ] [SendDataBridge] - callback id: 12 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -33 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:20.274Z DRIVER all queues idle -2024-09-06T11:06:20.288Z SERIAL « 0x010c00a8000102039f01f700dfed (14 bytes) -2024-09-06T11:06:20.289Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.290Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -33 dBm - └─[Security2CCNonceGet] - sequence number: 247 -2024-09-06T11:06:20.291Z DRIVER all queues busy -2024-09-06T11:06:20.291Z SERIAL » 0x012000a90102149f020901c8a30dd009a4738f8d73cf7a3e190c9d05000000000 (34 bytes) - de6 -2024-09-06T11:06:20.292Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x05 - │ callback id: 13 - └─[Security2CCNonceReport] - sequence number: 9 - SOS: true - MOS: false - receiver entropy: 0xc8a30dd009a4738f8d73cf7a3e190c9d -2024-09-06T11:06:20.298Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:20.304Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:20.305Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.305Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:20.319Z SERIAL « 0x011d00a90d00000100df7f7f7f7f00000300000000030100007f7f7f7f7fe6 (31 bytes) -2024-09-06T11:06:20.320Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.320Z DRIVER « [REQ] [SendDataBridge] - callback id: 13 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -33 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:20.321Z DRIVER all queues idle -2024-09-06T11:06:20.345Z SERIAL « 0x012900a8000102209f03f80112412d01da296b5222be69d215bc1ab47785c5f8f (43 bytes) - 96285809240f1c700dfc7 -2024-09-06T11:06:20.347Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.352Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -33 dBm - └─[Security2CCMessageEncapsulation] - │ sequence number: 248 - │ extensions: - │ · type: SPAN - │ sender EI: 0x2d01da296b5222be69d215bc1ab47785 - │ key: 0x44b45806725f2a6ebc3e2641f36f6caa - │ IV: 0x87b535c2bd6fd1e06a0043af14 - │ plaintext: 0x9f0b - │ auth tag: 0xf96285809240f1c7 - │ security class: S2_Unauthenticated - └─[Security2CCNetworkKeyVerify] -2024-09-06T11:06:20.353Z DRIVER all queues busy -2024-09-06T11:06:20.356Z SERIAL » 0x010f00a90102039f010a25000000000ee6 (17 bytes) -2024-09-06T11:06:20.357Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x25 - │ callback id: 14 - └─[Security2CCNonceGet] - sequence number: 10 -2024-09-06T11:06:20.381Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:20.382Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:20.387Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.389Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:20.414Z SERIAL « 0x011d00a90e00000100df7f7f7f7f00000300000000030100007f7f7f7f7fe5 (31 bytes) -2024-09-06T11:06:20.415Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.420Z DRIVER « [REQ] [SendDataBridge] - callback id: 14 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -33 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:20.425Z SERIAL « 0x011d00a8000102149f02f901aa3b193ccb0ca89d166ec6f38574b04800dfe5 (31 bytes) -2024-09-06T11:06:20.426Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.428Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -33 dBm - └─[Security2CCNonceReport] - sequence number: 249 - SOS: true - MOS: false - receiver entropy: 0xaa3b193ccb0ca89d166ec6f38574b048 -2024-09-06T11:06:20.430Z SERIAL » 0x012d00a90102219f030b011241225e11dd3aed1a52dbd71535ed73d8c21cda4a7 (47 bytes) - 1a99d9c3a395f9b240000000000ad -2024-09-06T11:06:20.431Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x24 - │ callback id: 0 - └─[Security2CCMessageEncapsulation] - │ sequence number: 11 - │ extensions: - │ · type: SPAN - │ sender EI: 0x225e11dd3aed1a52dbd71535ed73d8c2 - │ key: 0xb7b96a994522ea514b5221b875a186fe - │ IV: 0xa39fcca46e8b106c62ebae3681 - │ ciphertext: 0x1cda4a - │ auth data: 0x0102e370185500210b011241225e11dd3aed1a52dbd71535ed73d8c - 2 - │ auth tag: 0x71a99d9c3a395f9b - │ security class: Temporary - └─[Security2CCTransferEnd] - key verified: true - request complete: false -2024-09-06T11:06:20.441Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:20.445Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:20.446Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.446Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:20.447Z DRIVER all queues idle -2024-09-06T11:06:20.487Z SERIAL « 0x011800a80001020f9f03fa00cf52afa2509d6c2ea7994900df92 (26 bytes) -2024-09-06T11:06:20.488Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.489Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -33 dBm - └─[Security2CCMessageEncapsulation] - │ sequence number: 250 - │ key: 0xb7b96a994522ea514b5221b875a186fe - │ IV: 0xe156e343223bf29819bbb2d422 - │ plaintext: 0x9f0902 - │ auth tag: 0xa2509d6c2ea79949 - │ security class: Temporary - └─[Security2CCNetworkKeyGet] - security class: S2_Authenticated -2024-09-06T11:06:20.490Z DRIVER all queues busy -2024-09-06T11:06:20.491Z SERIAL » 0x012b00a901021f9f030c009c7e53ff58733226cf3cd584d3413893a4bdc6c75e6 (45 bytes) - f6ff8de26e225000000000f95 -2024-09-06T11:06:20.491Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x25 - │ callback id: 15 - └─[Security2CCMessageEncapsulation] - │ sequence number: 12 - │ key: 0xb7b96a994522ea514b5221b875a186fe - │ IV: 0x37d690bb6872a4ce0b2dd0ce90 - │ ciphertext: 0x9c7e53ff58733226cf3cd584d3413893a4bdc6 - │ auth data: 0x0102e3701855001f0c00 - │ auth tag: 0xc75e6f6ff8de26e2 - │ security class: Temporary - └─[Security2CCNetworkKeyReport] - security class: S2_Authenticated -2024-09-06T11:06:20.499Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:20.506Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:20.506Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.507Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:20.523Z SERIAL « 0x011d00a90f00000100df7f7f7f7f00000300000000030100007f7f7f7f7fe4 (31 bytes) -2024-09-06T11:06:20.524Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.524Z DRIVER « [REQ] [SendDataBridge] - callback id: 15 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -33 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:20.525Z DRIVER all queues idle -2024-09-06T11:06:20.538Z SERIAL « 0x010c00a8000102039f01fb00dfe1 (14 bytes) -2024-09-06T11:06:20.539Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.540Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -33 dBm - └─[Security2CCNonceGet] - sequence number: 251 -2024-09-06T11:06:20.541Z DRIVER all queues busy -2024-09-06T11:06:20.541Z SERIAL » 0x012000a90102149f020d0157511bf33a3480769c3e7d9afe122f3a05000000001 (34 bytes) - 04f -2024-09-06T11:06:20.542Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x05 - │ callback id: 16 - └─[Security2CCNonceReport] - sequence number: 13 - SOS: true - MOS: false - receiver entropy: 0x57511bf33a3480769c3e7d9afe122f3a -2024-09-06T11:06:20.549Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:20.554Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:20.555Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.556Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:20.573Z SERIAL « 0x011d00a91000000100df7f7f7f7f00000300000000030100007f7f7f7f7ffb (31 bytes) -2024-09-06T11:06:20.573Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.574Z DRIVER « [REQ] [SendDataBridge] - callback id: 16 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -33 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:20.575Z DRIVER all queues idle -2024-09-06T11:06:20.598Z SERIAL « 0x012900a8000102209f03fc0112418506fbb6b7acaa5d2cab7bb2e3b27383bac85 (43 bytes) - 05dce3f14b5bcf600df18 -2024-09-06T11:06:20.599Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.600Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -33 dBm - └─[Security2CCMessageEncapsulation] - │ sequence number: 252 - │ extensions: - │ · type: SPAN - │ sender EI: 0x8506fbb6b7acaa5d2cab7bb2e3b27383 - │ key: 0xdda415256006027530b2d9548c898f93 - │ IV: 0x8aee8f37a57f2cc07fc0165301 - │ plaintext: 0x9f0b - │ auth tag: 0x505dce3f14b5bcf6 - │ security class: S2_Authenticated - └─[Security2CCNetworkKeyVerify] -2024-09-06T11:06:20.601Z DRIVER all queues busy -2024-09-06T11:06:20.602Z SERIAL » 0x010f00a90102039f010e250000000011fd (17 bytes) -2024-09-06T11:06:20.602Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x25 - │ callback id: 17 - └─[Security2CCNonceGet] - sequence number: 14 -2024-09-06T11:06:20.606Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:20.612Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:20.613Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.613Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:20.626Z SERIAL « 0x011d00a91100000100df7f7f7f7f00000300000000030100007f7f7f7f7ffa (31 bytes) -2024-09-06T11:06:20.627Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.627Z DRIVER « [REQ] [SendDataBridge] - callback id: 17 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -33 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:20.646Z SERIAL « 0x011d00a8000102149f02fd01ad34627ca5036d711ed9bda0f974a0a800df81 (31 bytes) -2024-09-06T11:06:20.646Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.647Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -33 dBm - └─[Security2CCNonceReport] - sequence number: 253 - SOS: true - MOS: false - receiver entropy: 0xad34627ca5036d711ed9bda0f974a0a8 -2024-09-06T11:06:20.648Z SERIAL » 0x012d00a90102219f030f0112415d61103d55ec8c59e4596409a49b356aeffb88c (47 bytes) - efa034d69ed486824000000000033 -2024-09-06T11:06:20.649Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x24 - │ callback id: 0 - └─[Security2CCMessageEncapsulation] - │ sequence number: 15 - │ extensions: - │ · type: SPAN - │ sender EI: 0x5d61103d55ec8c59e4596409a49b356a - │ key: 0xb7b96a994522ea514b5221b875a186fe - │ IV: 0xd22b7682253ba15c3758dbafba - │ ciphertext: 0xeffb88 - │ auth data: 0x0102e370185500210f0112415d61103d55ec8c59e4596409a49b356 - a - │ auth tag: 0xcefa034d69ed4868 - │ security class: Temporary - └─[Security2CCTransferEnd] - key verified: true - request complete: false -2024-09-06T11:06:20.657Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:20.663Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:20.663Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.664Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:20.665Z DRIVER all queues idle -2024-09-06T11:06:20.703Z SERIAL « 0x011800a80001020f9f03fe00dc94a1dd4047c4bdd5636300df61 (26 bytes) -2024-09-06T11:06:20.704Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.705Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -33 dBm - └─[Security2CCMessageEncapsulation] - │ sequence number: 254 - │ key: 0xb7b96a994522ea514b5221b875a186fe - │ IV: 0x450ef19eac1f4fcc3cd60e4a22 - │ plaintext: 0x9f0904 - │ auth tag: 0xdd4047c4bdd56363 - │ security class: Temporary - └─[Security2CCNetworkKeyGet] - security class: S2_AccessControl -2024-09-06T11:06:20.705Z DRIVER all queues busy -2024-09-06T11:06:20.706Z SERIAL » 0x012b00a901021f9f0310007b887158e82fd8f28813ca7ad7252bbc57be23329ad (45 bytes) - dab8955f5942500000000120a -2024-09-06T11:06:20.707Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x25 - │ callback id: 18 - └─[Security2CCMessageEncapsulation] - │ sequence number: 16 - │ key: 0xb7b96a994522ea514b5221b875a186fe - │ IV: 0x24bf53df1009ed271dc0c70083 - │ ciphertext: 0x7b887158e82fd8f28813ca7ad7252bbc57be23 - │ auth data: 0x0102e3701855001f1000 - │ auth tag: 0x329addab8955f594 - │ security class: Temporary - └─[Security2CCNetworkKeyReport] - security class: S2_AccessControl -2024-09-06T11:06:20.714Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:20.721Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:20.721Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.722Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:20.739Z SERIAL « 0x011d00a91200000100df7f7f7f7f00000300000000030100007f7f7f7f7ff9 (31 bytes) -2024-09-06T11:06:20.740Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.740Z DRIVER « [REQ] [SendDataBridge] - callback id: 18 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -33 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:20.741Z DRIVER all queues idle -2024-09-06T11:06:20.757Z SERIAL « 0x010c00a8000102039f01ff00dfe5 (14 bytes) -2024-09-06T11:06:20.758Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.759Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -33 dBm - └─[Security2CCNonceGet] - sequence number: 255 -2024-09-06T11:06:20.760Z DRIVER all queues busy -2024-09-06T11:06:20.761Z SERIAL » 0x012000a90102149f0211017043a279fa75f948f7efb04f19ba2b6405000000001 (34 bytes) - 327 -2024-09-06T11:06:20.761Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x05 - │ callback id: 19 - └─[Security2CCNonceReport] - sequence number: 17 - SOS: true - MOS: false - receiver entropy: 0x7043a279fa75f948f7efb04f19ba2b64 -2024-09-06T11:06:20.768Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:20.774Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:20.774Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.775Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:20.790Z SERIAL « 0x011d00a91300000100df7f7f7f7f00000300000000030100007f7f7f7f7ff8 (31 bytes) -2024-09-06T11:06:20.791Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.792Z DRIVER « [REQ] [SendDataBridge] - callback id: 19 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -33 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:20.794Z DRIVER all queues idle -2024-09-06T11:06:20.817Z SERIAL « 0x012900a8000102209f0300011241c37f885fc30fb241169d5a07cf20e49c30358 (43 bytes) - d9f187271abe72900df30 -2024-09-06T11:06:20.818Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.819Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -33 dBm - └─[Security2CCMessageEncapsulation] - │ sequence number: 0 - │ extensions: - │ · type: SPAN - │ sender EI: 0xc37f885fc30fb241169d5a07cf20e49c - │ key: 0xfca06923982033f3af9dfc7c1e4ad45a - │ IV: 0x9d5c9f2165fee2958c4706dcb2 - │ plaintext: 0x9f0b - │ auth tag: 0x8d9f187271abe729 - │ security class: S2_AccessControl - └─[Security2CCNetworkKeyVerify] -2024-09-06T11:06:20.820Z DRIVER all queues busy -2024-09-06T11:06:20.821Z SERIAL » 0x010f00a90102039f0112250000000014e4 (17 bytes) -2024-09-06T11:06:20.821Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x25 - │ callback id: 20 - └─[Security2CCNonceGet] - sequence number: 18 -2024-09-06T11:06:20.825Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:20.831Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:20.832Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.833Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:20.844Z SERIAL « 0x011d00a91400000100df7f7f7f7f00000300000000030100007f7f7f7f7fff (31 bytes) -2024-09-06T11:06:20.845Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.845Z DRIVER « [REQ] [SendDataBridge] - callback id: 20 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -33 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:20.863Z SERIAL « 0x011d00a8000102149f02010107cacc9410ba384e1bc41726646a0f4300dffa (31 bytes) -2024-09-06T11:06:20.864Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.864Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -33 dBm - └─[Security2CCNonceReport] - sequence number: 1 - SOS: true - MOS: false - receiver entropy: 0x07cacc9410ba384e1bc41726646a0f43 -2024-09-06T11:06:20.866Z SERIAL » 0x012d00a90102219f03130112417fe84947259b5e2e8928b9403ba31f76e8ee7ea (47 bytes) - cf461255bd62b73240000000000ef -2024-09-06T11:06:20.866Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x24 - │ callback id: 0 - └─[Security2CCMessageEncapsulation] - │ sequence number: 19 - │ extensions: - │ · type: SPAN - │ sender EI: 0x7fe84947259b5e2e8928b9403ba31f76 - │ key: 0xb7b96a994522ea514b5221b875a186fe - │ IV: 0xad7af31c44e01f9e33c9a7618d - │ ciphertext: 0xe8ee7e - │ auth data: 0x0102e37018550021130112417fe84947259b5e2e8928b9403ba31f7 - 6 - │ auth tag: 0xacf461255bd62b73 - │ security class: Temporary - └─[Security2CCTransferEnd] - key verified: true - request complete: false -2024-09-06T11:06:20.874Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:20.881Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:20.881Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.882Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:20.883Z DRIVER all queues idle -2024-09-06T11:06:20.918Z SERIAL « 0x011800a80001020f9f0302007ba09d1d3df417a05bc5c100df78 (26 bytes) -2024-09-06T11:06:20.919Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.920Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -33 dBm - └─[Security2CCMessageEncapsulation] - │ sequence number: 2 - │ key: 0xb7b96a994522ea514b5221b875a186fe - │ IV: 0xafeda3f17e2a549bcf64140ddf - │ plaintext: 0x9f0980 - │ auth tag: 0x1d3df417a05bc5c1 - │ security class: Temporary - └─[Security2CCNetworkKeyGet] - security class: S0_Legacy -2024-09-06T11:06:20.921Z DRIVER all queues busy -2024-09-06T11:06:20.921Z SERIAL » 0x012b00a901021f9f031400416f80eb7bb315bd0231aa5f1607dfbff3f62ea9d4b (45 bytes) - f77d292be262500000000150d -2024-09-06T11:06:20.922Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x25 - │ callback id: 21 - └─[Security2CCMessageEncapsulation] - │ sequence number: 20 - │ key: 0xb7b96a994522ea514b5221b875a186fe - │ IV: 0x0135b5b4649df09d0248f90521 - │ ciphertext: 0x416f80eb7bb315bd0231aa5f1607dfbff3f62e - │ auth data: 0x0102e3701855001f1400 - │ auth tag: 0xa9d4bf77d292be26 - │ security class: Temporary - └─[Security2CCNetworkKeyReport] - security class: S0_Legacy -2024-09-06T11:06:20.930Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:20.936Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:20.937Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.937Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:20.953Z SERIAL « 0x011d00a91500000100df7f7f7f7f00000300000000030100007f7f7f7f7ffe (31 bytes) -2024-09-06T11:06:20.953Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.954Z DRIVER « [REQ] [SendDataBridge] - callback id: 21 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -33 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:20.954Z DRIVER all queues idle -2024-09-06T11:06:20.969Z SERIAL « 0x010c00a8000102039f010300df19 (14 bytes) -2024-09-06T11:06:20.970Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.971Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -33 dBm - └─[Security2CCNonceGet] - sequence number: 3 -2024-09-06T11:06:20.972Z DRIVER all queues busy -2024-09-06T11:06:20.972Z SERIAL » 0x012000a90102149f021501091c800986edf36a0ce9bf0661115d0205000000001 (34 bytes) - 6e6 -2024-09-06T11:06:20.973Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x05 - │ callback id: 22 - └─[Security2CCNonceReport] - sequence number: 21 - SOS: true - MOS: false - receiver entropy: 0x091c800986edf36a0ce9bf0661115d02 -2024-09-06T11:06:20.980Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:20.986Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:20.986Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.987Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:21.002Z SERIAL « 0x011d00a91600000100df7f7f7f7f00000300000000030100007f7f7f7f7ffd (31 bytes) -2024-09-06T11:06:21.002Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:21.003Z DRIVER « [REQ] [SendDataBridge] - callback id: 22 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -33 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:21.003Z DRIVER all queues idle -2024-09-06T11:06:21.029Z SERIAL « 0x012900a8000102209f03040112416290fb8a42a89951ce81afe6cdd48ca4a917e (43 bytes) - 61456b1fa93b4c300df6b -2024-09-06T11:06:21.031Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:21.031Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -33 dBm - └─[Security2CCMessageEncapsulation] - │ sequence number: 4 - │ extensions: - │ · type: SPAN - │ sender EI: 0x6290fb8a42a89951ce81afe6cdd48ca4 - │ key: 0xece479ca82cc867c1db471e86eab2248 - │ IV: 0x1e8989f03565943a6ea872458f - │ plaintext: 0x9f0b - │ auth tag: 0xe61456b1fa93b4c3 - │ security class: S0_Legacy - └─[Security2CCNetworkKeyVerify] -2024-09-06T11:06:21.032Z DRIVER all queues busy -2024-09-06T11:06:21.033Z SERIAL » 0x010f00a90102039f0116250000000017e3 (17 bytes) -2024-09-06T11:06:21.033Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x25 - │ callback id: 23 - └─[Security2CCNonceGet] - sequence number: 22 -2024-09-06T11:06:21.037Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:21.044Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:21.044Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:21.045Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:21.058Z SERIAL « 0x011d00a91700000100df7f7f7f7f00000300000000030100007f7f7f7f7ffc (31 bytes) -2024-09-06T11:06:21.058Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:21.059Z DRIVER « [REQ] [SendDataBridge] - callback id: 23 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -33 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:21.079Z SERIAL « 0x011d00a8000102149f020501571ca2fca15ce3f4bcaf85fba9bb5baf00df6f (31 bytes) -2024-09-06T11:06:21.080Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:21.081Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -33 dBm - └─[Security2CCNonceReport] - sequence number: 5 - SOS: true - MOS: false - receiver entropy: 0x571ca2fca15ce3f4bcaf85fba9bb5baf -2024-09-06T11:06:21.082Z SERIAL » 0x012d00a90102219f03170112412df2186d0c12da2220d6068b9e71eaf22ac48d2 (47 bytes) - 68675166ac0ffca2400000000005b -2024-09-06T11:06:21.083Z DRIVER » [Node 002] [REQ] [SendDataBridge] - │ source node id: 1 - │ transmit options: 0x24 - │ callback id: 0 - └─[Security2CCMessageEncapsulation] - │ sequence number: 23 - │ extensions: - │ · type: SPAN - │ sender EI: 0x2df2186d0c12da2220d6068b9e71eaf2 - │ key: 0xb7b96a994522ea514b5221b875a186fe - │ IV: 0xae171ae0b28a0017cb37cd11ac - │ ciphertext: 0x2ac48d - │ auth data: 0x0102e37018550021170112412df2186d0c12da2220d6068b9e71eaf - 2 - │ auth tag: 0x268675166ac0ffca - │ security class: Temporary - └─[Security2CCTransferEnd] - key verified: true - request complete: false -2024-09-06T11:06:21.092Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:21.098Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:21.099Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:21.099Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:21.100Z DRIVER all queues idle -2024-09-06T11:06:21.136Z SERIAL « 0x011800a80001020f9f03060091f4995c5a4d73611d4bf800df0d (26 bytes) -2024-09-06T11:06:21.137Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:21.138Z DRIVER « [Node 002] [REQ] [BridgeApplicationCommand] - │ RSSI: -33 dBm - └─[Security2CCMessageEncapsulation] - │ sequence number: 6 - │ key: 0xb7b96a994522ea514b5221b875a186fe - │ IV: 0xe799eb8dcddb0a4233c9cf3a80 - │ plaintext: 0x9f0c01 - │ auth tag: 0x5c5a4d73611d4bf8 - │ security class: Temporary - └─[Security2CCTransferEnd] - key verified: false - request complete: true -2024-09-06T11:06:21.138Z CNTRLR [Node 002] Security S2 bootstrapping successful with these security classes: - · S2_AccessControl - · S2_Authenticated - · S2_Unauthenticated - · S0_Legacy -2024-09-06T11:06:21.139Z DRIVER the message was handled diff --git a/test/primary_current.log b/test/primary_current.log deleted file mode 120000 index a96af5ff9673..000000000000 --- a/test/primary_current.log +++ /dev/null @@ -1 +0,0 @@ -primary_2024-09-06.log \ No newline at end of file diff --git a/test/secondary_2024-09-06.log b/test/secondary_2024-09-06.log deleted file mode 100644 index 8105c6f6f5b0..000000000000 --- a/test/secondary_2024-09-06.log +++ /dev/null @@ -1,15772 +0,0 @@ -2024-09-06T10:02:42.069Z DRIVER ███████╗ ██╗ ██╗ █████╗ ██╗ ██╗ ███████╗ ██╗ ███████╗ - ╚══███╔╝ ██║ ██║ ██╔══██╗ ██║ ██║ ██╔════╝ ██║ ██╔════╝ - ███╔╝ █████╗ ██║ █╗ ██║ ███████║ ██║ ██║ █████╗ ██║ ███████╗ - ███╔╝ ╚════╝ ██║███╗██║ ██╔══██║ ╚██╗ ██╔╝ ██╔══╝ ██ ██║ ╚════██║ - ███████╗ ╚███╔███╔╝ ██║ ██║ ╚████╔╝ ███████╗ ╚█████╔╝ ███████║ - ╚══════╝ ╚══╝╚══╝ ╚═╝ ╚═╝ ╚═══╝ ╚══════╝ ╚════╝ ╚══════╝ -2024-09-06T10:02:42.069Z DRIVER version 13.2.0 -2024-09-06T10:02:42.069Z DRIVER -2024-09-06T10:02:42.070Z DRIVER starting driver... -2024-09-06T10:02:42.070Z DRIVER opening serial port /dev/serial/by-id/usb-Silicon_Labs_CP2102N_USB_to_UART_Bri - dge_Controller_ca4d95064355ee118d4d1294de9da576-if00-port0 -2024-09-06T10:02:42.078Z DRIVER serial port opened -2024-09-06T10:02:42.078Z SERIAL » 0x15 (1 bytes) -2024-09-06T10:02:43.084Z DRIVER loading configuration... -2024-09-06T10:02:43.088Z CONFIG version 13.2.0 -2024-09-06T10:02:43.299Z CONFIG Device configuration files on disk changed - regenerating index... -2024-09-06T10:02:47.283Z CONFIG Device index regenerated -2024-09-06T10:02:47.283Z DRIVER beginning interview... -2024-09-06T10:02:47.284Z DRIVER added request handler for AddNodeToNetwork (0x4a)... - 1 registered -2024-09-06T10:02:47.284Z DRIVER added request handler for RemoveNodeFromNetwork (0x4b)... - 1 registered -2024-09-06T10:02:47.284Z DRIVER added request handler for ReplaceFailedNode (0x63)... - 1 registered -2024-09-06T10:02:47.284Z DRIVER added request handler for SetLearnMode (0x50)... - 1 registered -2024-09-06T10:02:47.285Z CNTRLR querying Serial API capabilities... -2024-09-06T10:02:47.292Z SERIAL » 0x01030007fb (5 bytes) -2024-09-06T10:02:47.293Z DRIVER » [REQ] [GetSerialApiCapabilities] -2024-09-06T10:02:47.303Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:47.303Z SERIAL « 0x012b01070716000000040004f6873e88cf2bc05ffbd7fde09700008000808680b (45 bytes) - a0500700000ee7fc000000041 -2024-09-06T10:02:47.304Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:47.305Z DRIVER « [RES] [GetSerialApiCapabilities] - payload: 0x0716000000040004f6873e88cf2bc05ffbd7fde09700008000808680ba0500700 - 000ee7fc0000000 -2024-09-06T10:02:47.306Z CNTRLR received API capabilities: - firmware version: 7.22 - manufacturer ID: 0x00 - product type: 0x04 - product ID: 0x04 - supported functions: - · GetSerialApiInitData (0x02) - · SetApplicationNodeInformation (0x03) - · GetControllerCapabilities (0x05) - · SetSerialApiTimeouts (0x06) - · GetSerialApiCapabilities (0x07) - · SoftReset (0x08) - · GetProtocolVersion (0x09) - · SerialAPIStarted (0x0a) - · SerialAPISetup (0x0b) - · SetRFReceiveMode (0x10) - · SendNodeInformation (0x12) - · SendData (0x13) - · SendDataMulticast (0x14) - · GetControllerVersion (0x15) - · SendDataAbort (0x16) - · FUNC_ID_ZW_GET_RANDOM (0x1c) - · GetControllerId (0x20) - · UNKNOWN_FUNC_MEMORY_GET_BYTE (0x21) - · UNKNOWN_FUNC_MEMORY_PUT_BYTE (0x22) - · UNKNOWN_FUNC_MEMORY_GET_BUFFER (0x23) - · UNKNOWN_FUNC_MEMORY_PUT_BUFFER (0x24) - · EnterBootloader (0x27) - · UNKNOWN_FUNC_UNKNOWN_0x28 (0x28) - · GetNVMId (0x29) - · ExtNVMReadLongBuffer (0x2a) - · ExtNVMReadLongByte (0x2c) - · NVMOperations (0x2e) - · ClearTxTimers (0x37) - · GetTxTimers (0x38) - · ClearNetworkStats (0x39) - · GetNetworkStats (0x3a) - · GetBackgroundRSSI (0x3b) - · SetListenBeforeTalkThreshold (0x3c) - · ExtendedNVMOperations (0x3d) - · RemoveSpecificNodeIdFromNetwork (0x3f) - · GetNodeProtocolInfo (0x41) - · HardReset (0x42) - · FUNC_ID_ZW_REPLICATION_COMMAND_COMPLETE (0x44) - · FUNC_ID_ZW_REPLICATION_SEND_DATA (0x45) - · AssignReturnRoute (0x46) - · DeleteReturnRoute (0x47) - · RequestNodeNeighborUpdate (0x48) - · ApplicationUpdateRequest (0x49) - · AddNodeToNetwork (0x4a) - · RemoveNodeFromNetwork (0x4b) - · AddPrimaryController (0x4d) - · AssignPriorityReturnRoute (0x4f) - · SetLearnMode (0x50) - · AssignSUCReturnRoute (0x51) - · RequestNetworkUpdate (0x53) - · SetSUCNodeId (0x54) - · DeleteSUCReturnRoute (0x55) - · GetSUCNodeId (0x56) - · SendSUCNodeId (0x57) - · AssignPrioritySUCReturnRoute (0x58) - · ExploreRequestInclusion (0x5e) - · ExploreRequestExclusion (0x5f) - · RequestNodeInfo (0x60) - · RemoveFailedNode (0x61) - · IsFailedNode (0x62) - · ReplaceFailedNode (0x63) - · undefined (0x65) - · RequestProtocolCCEncryption (0x68) - · GetRoutingInfo (0x80) - · LockUnlockLastRoute (0x90) - · GetPriorityRoute (0x92) - · SetPriorityRoute (0x93) - · UNKNOWN_FUNC_UNKNOWN_0x98 (0x98) - · VirtualNodeSetNodeInfo (0xa0) - · VirtualNodeSendNodeInfo (0xa2) - · VirtualNodeSetLearnMode (0xa4) - · GetVirtualNodes (0xa5) - · IsVirtualNode (0xa6) - · BridgeApplicationCommand (0xa8) - · SendDataBridge (0xa9) - · SendDataMulticastBridge (0xab) - · GetLibrary (0xbd) - · SendTestFrame (0xbe) - · GetProtocolStatus (0xbf) - · StartWatchdog (0xd2) - · StopWatchdog (0xd3) - · SetMaximumRoutingAttempts (0xd4) - · SetMaxSmartStartInclusionRequestInterval (0xd6) - · undefined (0xd7) - · undefined (0xd8) - · Shutdown (0xd9) - · GetLongRangeNodes (0xda) - · GetLongRangeChannel (0xdb) - · SetLongRangeChannel (0xdc) - · SetLongRangeShadowNodeIDs (0xdd) - · Proprietary_DE (0xde) - · Proprietary_DF (0xdf) - · Proprietary_E7 (0xe7) - · Proprietary_E8 (0xe8) -2024-09-06T10:02:47.306Z CNTRLR querying additional controller information... -2024-09-06T10:02:47.308Z SERIAL » 0x01030002fe (5 bytes) -2024-09-06T10:02:47.308Z DRIVER » [REQ] [GetSerialApiInitData] -2024-09-06T10:02:47.317Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:47.318Z SERIAL « 0x012501020a001d030000000000000000000000000000000000000000000000000 (39 bytes) - 00000000800c5 -2024-09-06T10:02:47.318Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:47.319Z DRIVER « [RES] [GetSerialApiInitData] - payload: 0x0a001d03000000000000000000000000000000000000000000000000000000000 - 800 -2024-09-06T10:02:47.320Z CNTRLR received additional controller information: - Z-Wave API version: 1 (official) - Z-Wave chip type: EFR32ZG23 / ZGM230S - node type Controller - controller role: primary - controller is the SIS: false - controller supports timers: false - Z-Wave Classic nodes: 1, 2 -2024-09-06T10:02:47.320Z CNTRLR querying version info... -2024-09-06T10:02:47.322Z SERIAL » 0x01030015e9 (5 bytes) -2024-09-06T10:02:47.322Z DRIVER » [REQ] [GetControllerVersion] -2024-09-06T10:02:47.329Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:47.329Z SERIAL « 0x011001155a2d5761766520372e3232000797 (18 bytes) -2024-09-06T10:02:47.330Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:47.330Z DRIVER « [RES] [GetControllerVersion] - payload: 0x5a2d5761766520372e32320007 -2024-09-06T10:02:47.331Z CNTRLR received version info: - controller type: Bridge Controller - library version: Z-Wave 7.22 -2024-09-06T10:02:47.331Z CNTRLR querying protocol version info... -2024-09-06T10:02:47.332Z SERIAL » 0x01030009f5 (5 bytes) -2024-09-06T10:02:47.332Z DRIVER » [REQ] [GetProtocolVersion] -2024-09-06T10:02:47.339Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:47.339Z SERIAL « 0x0119010900071601abcd63636639623665613165616566313162c3 (27 bytes) -2024-09-06T10:02:47.340Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:47.340Z DRIVER « [RES] [GetProtocolVersion] - payload: 0x00071601abcd63636639623665613165616566313162 -2024-09-06T10:02:47.341Z CNTRLR received protocol version info: - protocol type: Z-Wave - protocol version: 7.22.1 - appl. framework build no.: 43981 - git commit hash: 63636639623665613165616566313162 -2024-09-06T10:02:47.341Z CNTRLR querying controller capabilities... -2024-09-06T10:02:47.342Z SERIAL » 0x01030005f9 (5 bytes) -2024-09-06T10:02:47.342Z DRIVER » [REQ] [GetControllerCapabilities] -2024-09-06T10:02:47.349Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:47.350Z SERIAL « 0x0104010506f9 (6 bytes) -2024-09-06T10:02:47.350Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:47.351Z DRIVER « [RES] [GetControllerCapabilities] - payload: 0x06 -2024-09-06T10:02:47.352Z CNTRLR received controller capabilities: - controller role: Inclusion - is the SUC: false - started this network: false - SIS is present: true - was real primary: false -2024-09-06T10:02:47.352Z CNTRLR querying serial API setup capabilities... -2024-09-06T10:02:47.353Z SERIAL » 0x0104000b01f1 (6 bytes) -2024-09-06T10:02:47.353Z DRIVER » [REQ] [SerialAPISetup] - command: GetSupportedCommands - payload: 0x01 -2024-09-06T10:02:47.359Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:47.360Z SERIAL « 0x0116010b01ff9f8007800000008000000000000000800085 (24 bytes) -2024-09-06T10:02:47.360Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:47.361Z DRIVER « [RES] [SerialAPISetup] - command: GetSupportedCommands - payload: 0xff9f80078000000080000000000000008000 -2024-09-06T10:02:47.361Z CNTRLR supported serial API setup commands: - · GetSupportedCommands - · SetTxStatusReport - · SetLongRangeMaximumTxPower - · SetPowerlevel - · GetLongRangeMaximumTxPower - · GetPowerlevel - · GetMaximumPayloadSize - · GetLongRangeMaximumPayloadSize - · SetPowerlevel16Bit - · GetPowerlevel16Bit - · GetRFRegion - · SetRFRegion - · SetNodeIDType -2024-09-06T10:02:47.361Z CNTRLR querying max. payload size... -2024-09-06T10:02:47.362Z SERIAL » 0x0104000b10e0 (6 bytes) -2024-09-06T10:02:47.362Z DRIVER » [REQ] [SerialAPISetup] - command: GetMaximumPayloadSize - payload: 0x10 -2024-09-06T10:02:47.367Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:47.368Z SERIAL « 0x0105010b102ece (7 bytes) -2024-09-06T10:02:47.368Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:47.368Z DRIVER « [RES] [SerialAPISetup] - command: GetMaximumPayloadSize - maximum payload size: 46 bytes -2024-09-06T10:02:47.369Z CNTRLR maximum payload size: 46 bytes -2024-09-06T10:02:47.369Z CNTRLR supported Z-Wave features: - · SmartStart -2024-09-06T10:02:47.370Z CNTRLR Querying configured RF region... -2024-09-06T10:02:47.371Z SERIAL » 0x0104000b20d0 (6 bytes) -2024-09-06T10:02:47.372Z DRIVER » [REQ] [SerialAPISetup] - command: GetRFRegion - payload: 0x20 -2024-09-06T10:02:47.377Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:47.377Z SERIAL « 0x0105010b2000d0 (7 bytes) -2024-09-06T10:02:47.377Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:47.378Z DRIVER « [RES] [SerialAPISetup] - command: GetRFRegion - region: Europe -2024-09-06T10:02:47.378Z CNTRLR The controller is using RF region Europe -2024-09-06T10:02:47.379Z CNTRLR Querying configured max. Long Range powerlevel... -2024-09-06T10:02:47.380Z SERIAL » 0x0104000b05f5 (6 bytes) -2024-09-06T10:02:47.380Z DRIVER » [REQ] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - payload: 0x05 -2024-09-06T10:02:47.385Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:47.385Z SERIAL « 0x0106010b05008c7a (8 bytes) -2024-09-06T10:02:47.386Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:47.386Z DRIVER « [RES] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - max. TX power (LR): 14.0 dBm -2024-09-06T10:02:47.387Z CNTRLR The max. LR powerlevel is 14.0 dBm -2024-09-06T10:02:47.387Z CNTRLR Querying configured Long Range channel information... -2024-09-06T10:02:47.388Z SERIAL » 0x010300db27 (5 bytes) -2024-09-06T10:02:47.389Z DRIVER » [REQ] [GetLongRangeChannel] -2024-09-06T10:02:47.396Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:47.396Z SERIAL « 0x010501db001030 (7 bytes) -2024-09-06T10:02:47.397Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:47.397Z DRIVER « [RES] [GetLongRangeChannel] - payload: 0x0010 -2024-09-06T10:02:47.398Z CNTRLR received Z-Wave Long Range channel information: - channel: Unsupported - supports auto channel selection: true -2024-09-06T10:02:47.398Z CNTRLR Performing soft reset... -2024-09-06T10:02:47.399Z SERIAL » 0x01030008f4 (5 bytes) -2024-09-06T10:02:47.399Z DRIVER » [REQ] [SoftReset] -2024-09-06T10:02:47.405Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:47.406Z CNTRLR Waiting for the controller to reconnect... -2024-09-06T10:02:47.406Z DRIVER all queues idle -2024-09-06T10:02:47.519Z SERIAL « 0x0115000a0700010100075e9f556c568f7400031d0000ab (23 bytes) -2024-09-06T10:02:47.520Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:47.522Z DRIVER « [REQ] [SerialAPIStarted] - wake up reason: SoftwareReset - watchdog enabled: false - generic device class: 0x01 - specific device class: 0x00 - always listening: false - supports Long Range: false -2024-09-06T10:02:47.523Z CNTRLR reconnected and restarted -2024-09-06T10:02:47.524Z CNTRLR Starting hardware watchdog... -2024-09-06T10:02:47.525Z CNTRLR Switching serial API to 16-bit node IDs... -2024-09-06T10:02:47.526Z CNTRLR Switching serial API to 8-bit node IDs... -2024-09-06T10:02:47.527Z DRIVER all queues busy -2024-09-06T10:02:47.528Z SERIAL » 0x010300d22e (5 bytes) -2024-09-06T10:02:47.529Z DRIVER » [REQ] [StartWatchdog] -2024-09-06T10:02:47.531Z SERIAL » 0x0105000b800273 (7 bytes) -2024-09-06T10:02:47.531Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 16 bit -2024-09-06T10:02:47.533Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:47.537Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:47.537Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T10:02:47.538Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:47.538Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T10:02:47.539Z CNTRLR Switching to 16-bit node IDs successful -2024-09-06T10:02:47.539Z SERIAL » 0x0105000b800170 (7 bytes) -2024-09-06T10:02:47.540Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 8 bit -2024-09-06T10:02:47.545Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:47.546Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T10:02:47.546Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:47.547Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T10:02:47.547Z CNTRLR Switching to 8-bit node IDs successful -2024-09-06T10:02:47.548Z CNTRLR querying controller IDs... -2024-09-06T10:02:47.548Z SERIAL » 0x01030020dc (5 bytes) -2024-09-06T10:02:47.549Z DRIVER » [REQ] [GetControllerId] -2024-09-06T10:02:47.554Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:47.554Z SERIAL « 0x01080120e8ddb79602c0 (10 bytes) -2024-09-06T10:02:47.554Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:47.555Z DRIVER « [RES] [GetControllerId] - home ID: 0xe8ddb796 - own node ID: 2 -2024-09-06T10:02:47.556Z CNTRLR received controller IDs: - home ID: 0xe8ddb796 - own node ID: 2 -2024-09-06T10:02:47.556Z CNTRLR Enabling TX status report... -2024-09-06T10:02:47.557Z SERIAL » 0x0105000b02ff0c (7 bytes) -2024-09-06T10:02:47.557Z DRIVER » [REQ] [SerialAPISetup] - command: SetTxStatusReport - enabled: true -2024-09-06T10:02:47.562Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:47.562Z SERIAL « 0x0105010b0201f3 (7 bytes) -2024-09-06T10:02:47.562Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:47.563Z DRIVER « [RES] [SerialAPISetup] - command: SetTxStatusReport - success: true -2024-09-06T10:02:47.563Z CNTRLR Enabling TX status report successful... -2024-09-06T10:02:47.564Z CNTRLR finding SUC... -2024-09-06T10:02:47.564Z SERIAL » 0x01030056aa (5 bytes) -2024-09-06T10:02:47.564Z DRIVER » [REQ] [GetSUCNodeId] -2024-09-06T10:02:47.569Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:47.569Z SERIAL « 0x0104015601ad (6 bytes) -2024-09-06T10:02:47.570Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:47.570Z DRIVER « [RES] [GetSUCNodeId] - payload: 0x01 -2024-09-06T10:02:47.571Z CNTRLR SUC has node ID 1 -2024-09-06T10:02:47.572Z DRIVER all queues idle -2024-09-06T10:02:47.580Z CNTRLR [Node 002] [Manufacturer Specific] manufacturerId: metadata updated -2024-09-06T10:02:47.580Z CNTRLR [Node 002] [Manufacturer Specific] productType: metadata updated -2024-09-06T10:02:47.580Z CNTRLR [Node 002] [Manufacturer Specific] productId: metadata updated -2024-09-06T10:02:47.581Z CNTRLR [Node 002] [+] [Manufacturer Specific] manufacturerId: 0 -2024-09-06T10:02:47.581Z CNTRLR [Node 002] [+] [Manufacturer Specific] productType: 4 -2024-09-06T10:02:47.581Z CNTRLR [Node 002] [+] [Manufacturer Specific] productId: 4 -2024-09-06T10:02:47.581Z CNTRLR [Node 002] [Version] firmwareVersions: metadata updated -2024-09-06T10:02:47.581Z CNTRLR [Node 002] [+] [Version] firmwareVersions: 7.22 -2024-09-06T10:02:47.582Z CNTRLR [Node 002] [Version] zWaveProtocolVersion: metadata updated -2024-09-06T10:02:47.582Z CNTRLR [Node 002] [+] [Version] zWaveProtocolVersion: "7.22.1" -2024-09-06T10:02:47.582Z CNTRLR [Node 002] [Version] sdkVersion: metadata updated -2024-09-06T10:02:47.582Z CNTRLR [Node 002] [+] [Version] sdkVersion: "7.22.1" -2024-09-06T10:02:47.582Z CNTRLR Interview completed -2024-09-06T10:02:47.582Z DRIVER No network key for S0 found in cache, communication with secure (S0) devices w - on't work! -2024-09-06T10:02:47.582Z DRIVER No network key for S2 found in cache, communication with secure (S2) devices w - on't work! -2024-09-06T10:02:47.582Z DRIVER driver ready -2024-09-06T10:02:47.583Z CNTRLR [Node 002] Beginning interview - last completed stage: None -2024-09-06T10:02:47.583Z CNTRLR [Node 002] new node, doing a full interview... -2024-09-06T10:02:47.583Z CNTRLR » [Node 002] querying protocol info... -2024-09-06T10:02:47.585Z DRIVER all queues busy -2024-09-06T10:02:47.585Z SERIAL » 0x0104004102b8 (6 bytes) -2024-09-06T10:02:47.586Z DRIVER » [REQ] [GetNodeProtocolInfo] - payload: 0x02 -2024-09-06T10:02:47.591Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:47.592Z SERIAL « 0x010a0141d3960102010000f2 (12 bytes) -2024-09-06T10:02:47.592Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:47.593Z DRIVER « [RES] [GetNodeProtocolInfo] - payload: 0xd3960102010000 -2024-09-06T10:02:47.594Z CNTRLR « [Node 002] received response for protocol info: - basic device class: Static Controller - generic device class: Remote Controller - specific device class: Unused - node type: Controller - is always listening: true - is frequent listening: false - can route messages: true - supports security: false - supports beaming: true - maximum data rate: 100000 kbps - protocol version: 3 -2024-09-06T10:02:47.594Z CNTRLR [Node 002] Interview stage completed: ProtocolInfo -2024-09-06T10:02:47.595Z DRIVER all queues idle -2024-09-06T10:02:47.598Z CNTRLR [Node 002] Embedded device config loaded -2024-09-06T10:02:47.598Z CNTRLR [Node 002] Interview stage completed: OverwriteConfig -2024-09-06T10:02:47.598Z CNTRLR [Node 002] Interview completed -2024-09-06T10:02:47.599Z CNTRLR [Node 002] The node is ready to be used -2024-09-06T10:02:47.599Z CNTRLR [Node 002] The node is alive. -2024-09-06T10:02:47.599Z CNTRLR » [Node 001] querying protocol info... -2024-09-06T10:02:47.600Z DRIVER all queues busy -2024-09-06T10:02:47.600Z SERIAL » 0x0104004101bb (6 bytes) -2024-09-06T10:02:47.600Z DRIVER » [REQ] [GetNodeProtocolInfo] - payload: 0x01 -2024-09-06T10:02:47.606Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:47.607Z SERIAL « 0x010a0141d3960102010000f2 (12 bytes) -2024-09-06T10:02:47.607Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:47.607Z DRIVER « [RES] [GetNodeProtocolInfo] - payload: 0xd3960102010000 -2024-09-06T10:02:47.608Z CNTRLR « [Node 001] received response for protocol info: - basic device class: Static Controller - generic device class: Remote Controller - specific device class: Unused - node type: Controller - is always listening: true - is frequent listening: false - can route messages: true - supports security: false - supports beaming: true - maximum data rate: 100000 kbps - protocol version: 3 -2024-09-06T10:02:47.608Z CNTRLR [Node 001] Interview stage completed: ProtocolInfo -2024-09-06T10:02:47.608Z CNTRLR Determining node status: 1 -2024-09-06T10:02:47.608Z CNTRLR » [Node 001] pinging the node... -2024-09-06T10:02:47.611Z SERIAL » 0x010d00a9020101002500000000017d (15 bytes) -2024-09-06T10:02:47.611Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 1 - └─[NoOperationCC] -2024-09-06T10:02:47.616Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:47.618Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T10:02:47.619Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:47.619Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T10:02:47.678Z SERIAL « 0x011d00a90100000500d97f7f7f7f00000300000000030200007f7f7f7f7feb (31 bytes) -2024-09-06T10:02:47.678Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:47.679Z DRIVER « [REQ] [SendDataBridge] - callback id: 1 - transmit status: OK, took 50 ms - routing attempts: 2 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -39 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T10:02:47.681Z CNTRLR [Node 001] The node is alive. -2024-09-06T10:02:47.681Z CNTRLR « [Node 001] ping successful -2024-09-06T10:02:47.682Z DRIVER all queues idle -2024-09-06T10:02:52.582Z CNTRLR Updating the controller NIF... -2024-09-06T10:02:52.583Z DRIVER all queues busy -2024-09-06T10:02:52.584Z SERIAL » 0x010f0003010100085e989f556c568f7436 (17 bytes) -2024-09-06T10:02:52.591Z DRIVER » [REQ] [SetApplicationNodeInformation] - is listening: true - generic device class: 0x01 - specific device class: 0x00 - supported CCs: - · Z-Wave Plus Info - · Security - · Security 2 - · Transport Service - · Supervision - · CRC-16 Encapsulation - · Multi Command - · Inclusion Controller - controlled CCs: -2024-09-06T10:02:52.595Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:52.598Z CNTRLR performing hard reset... -2024-09-06T10:02:52.603Z SERIAL » 0x0104004202bb (6 bytes) -2024-09-06T10:02:52.604Z DRIVER » [REQ] [HardReset] - callback id: 2 -2024-09-06T10:02:52.614Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:52.635Z SERIAL « 0x0104004202bb (6 bytes) -2024-09-06T10:02:52.635Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:52.636Z DRIVER « [REQ] [HardReset] - callback id: 2 -2024-09-06T10:02:52.637Z CNTRLR hard reset succeeded -2024-09-06T10:02:52.637Z CNTRLR querying Serial API capabilities... -2024-09-06T10:02:52.638Z SERIAL » 0x01030007fb (5 bytes) -2024-09-06T10:02:52.644Z DRIVER » [REQ] [GetSerialApiCapabilities] -2024-09-06T10:02:52.652Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:52.653Z SERIAL « 0x012b01070716000000040004f6873e88cf2bc05ffbd7fde09700008000808680b (45 bytes) - a0500700000ee7fc000000041 -2024-09-06T10:02:52.653Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:52.654Z DRIVER « [RES] [GetSerialApiCapabilities] - payload: 0x0716000000040004f6873e88cf2bc05ffbd7fde09700008000808680ba0500700 - 000ee7fc0000000 -2024-09-06T10:02:52.655Z CNTRLR received API capabilities: - firmware version: 7.22 - manufacturer ID: 0x00 - product type: 0x04 - product ID: 0x04 - supported functions: - · GetSerialApiInitData (0x02) - · SetApplicationNodeInformation (0x03) - · GetControllerCapabilities (0x05) - · SetSerialApiTimeouts (0x06) - · GetSerialApiCapabilities (0x07) - · SoftReset (0x08) - · GetProtocolVersion (0x09) - · SerialAPIStarted (0x0a) - · SerialAPISetup (0x0b) - · SetRFReceiveMode (0x10) - · SendNodeInformation (0x12) - · SendData (0x13) - · SendDataMulticast (0x14) - · GetControllerVersion (0x15) - · SendDataAbort (0x16) - · FUNC_ID_ZW_GET_RANDOM (0x1c) - · GetControllerId (0x20) - · UNKNOWN_FUNC_MEMORY_GET_BYTE (0x21) - · UNKNOWN_FUNC_MEMORY_PUT_BYTE (0x22) - · UNKNOWN_FUNC_MEMORY_GET_BUFFER (0x23) - · UNKNOWN_FUNC_MEMORY_PUT_BUFFER (0x24) - · EnterBootloader (0x27) - · UNKNOWN_FUNC_UNKNOWN_0x28 (0x28) - · GetNVMId (0x29) - · ExtNVMReadLongBuffer (0x2a) - · ExtNVMReadLongByte (0x2c) - · NVMOperations (0x2e) - · ClearTxTimers (0x37) - · GetTxTimers (0x38) - · ClearNetworkStats (0x39) - · GetNetworkStats (0x3a) - · GetBackgroundRSSI (0x3b) - · SetListenBeforeTalkThreshold (0x3c) - · ExtendedNVMOperations (0x3d) - · RemoveSpecificNodeIdFromNetwork (0x3f) - · GetNodeProtocolInfo (0x41) - · HardReset (0x42) - · FUNC_ID_ZW_REPLICATION_COMMAND_COMPLETE (0x44) - · FUNC_ID_ZW_REPLICATION_SEND_DATA (0x45) - · AssignReturnRoute (0x46) - · DeleteReturnRoute (0x47) - · RequestNodeNeighborUpdate (0x48) - · ApplicationUpdateRequest (0x49) - · AddNodeToNetwork (0x4a) - · RemoveNodeFromNetwork (0x4b) - · AddPrimaryController (0x4d) - · AssignPriorityReturnRoute (0x4f) - · SetLearnMode (0x50) - · AssignSUCReturnRoute (0x51) - · RequestNetworkUpdate (0x53) - · SetSUCNodeId (0x54) - · DeleteSUCReturnRoute (0x55) - · GetSUCNodeId (0x56) - · SendSUCNodeId (0x57) - · AssignPrioritySUCReturnRoute (0x58) - · ExploreRequestInclusion (0x5e) - · ExploreRequestExclusion (0x5f) - · RequestNodeInfo (0x60) - · RemoveFailedNode (0x61) - · IsFailedNode (0x62) - · ReplaceFailedNode (0x63) - · undefined (0x65) - · RequestProtocolCCEncryption (0x68) - · GetRoutingInfo (0x80) - · LockUnlockLastRoute (0x90) - · GetPriorityRoute (0x92) - · SetPriorityRoute (0x93) - · UNKNOWN_FUNC_UNKNOWN_0x98 (0x98) - · VirtualNodeSetNodeInfo (0xa0) - · VirtualNodeSendNodeInfo (0xa2) - · VirtualNodeSetLearnMode (0xa4) - · GetVirtualNodes (0xa5) - · IsVirtualNode (0xa6) - · BridgeApplicationCommand (0xa8) - · SendDataBridge (0xa9) - · SendDataMulticastBridge (0xab) - · GetLibrary (0xbd) - · SendTestFrame (0xbe) - · GetProtocolStatus (0xbf) - · StartWatchdog (0xd2) - · StopWatchdog (0xd3) - · SetMaximumRoutingAttempts (0xd4) - · SetMaxSmartStartInclusionRequestInterval (0xd6) - · undefined (0xd7) - · undefined (0xd8) - · Shutdown (0xd9) - · GetLongRangeNodes (0xda) - · GetLongRangeChannel (0xdb) - · SetLongRangeChannel (0xdc) - · SetLongRangeShadowNodeIDs (0xdd) - · Proprietary_DE (0xde) - · Proprietary_DF (0xdf) - · Proprietary_E7 (0xe7) - · Proprietary_E8 (0xe8) -2024-09-06T10:02:52.655Z CNTRLR querying additional controller information... -2024-09-06T10:02:52.656Z SERIAL » 0x01030002fe (5 bytes) -2024-09-06T10:02:52.656Z DRIVER » [REQ] [GetSerialApiInitData] -2024-09-06T10:02:52.665Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:52.666Z SERIAL « 0x012501020a001d010000000000000000000000000000000000000000000000000 (39 bytes) - 00000000800c7 -2024-09-06T10:02:52.666Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:52.667Z DRIVER « [RES] [GetSerialApiInitData] - payload: 0x0a001d01000000000000000000000000000000000000000000000000000000000 - 800 -2024-09-06T10:02:52.668Z CNTRLR received additional controller information: - Z-Wave API version: 1 (official) - Z-Wave chip type: EFR32ZG23 / ZGM230S - node type Controller - controller role: primary - controller is the SIS: false - controller supports timers: false - Z-Wave Classic nodes: 1 -2024-09-06T10:02:52.668Z CNTRLR querying version info... -2024-09-06T10:02:52.669Z SERIAL » 0x01030015e9 (5 bytes) -2024-09-06T10:02:52.670Z DRIVER » [REQ] [GetControllerVersion] -2024-09-06T10:02:52.675Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:52.676Z SERIAL « 0x011001155a2d5761766520372e3232000797 (18 bytes) -2024-09-06T10:02:52.676Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:52.678Z DRIVER « [RES] [GetControllerVersion] - payload: 0x5a2d5761766520372e32320007 -2024-09-06T10:02:52.678Z CNTRLR received version info: - controller type: Bridge Controller - library version: Z-Wave 7.22 -2024-09-06T10:02:52.679Z CNTRLR querying protocol version info... -2024-09-06T10:02:52.680Z SERIAL » 0x01030009f5 (5 bytes) -2024-09-06T10:02:52.680Z DRIVER » [REQ] [GetProtocolVersion] -2024-09-06T10:02:52.687Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:52.688Z SERIAL « 0x0119010900071601abcd63636639623665613165616566313162c3 (27 bytes) -2024-09-06T10:02:52.688Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:52.689Z DRIVER « [RES] [GetProtocolVersion] - payload: 0x00071601abcd63636639623665613165616566313162 -2024-09-06T10:02:52.690Z CNTRLR received protocol version info: - protocol type: Z-Wave - protocol version: 7.22.1 - appl. framework build no.: 43981 - git commit hash: 63636639623665613165616566313162 -2024-09-06T10:02:52.690Z CNTRLR querying controller capabilities... -2024-09-06T10:02:52.691Z SERIAL » 0x01030005f9 (5 bytes) -2024-09-06T10:02:52.691Z DRIVER » [REQ] [GetControllerCapabilities] -2024-09-06T10:02:52.696Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:52.697Z SERIAL « 0x0104010528d7 (6 bytes) -2024-09-06T10:02:52.697Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:52.698Z DRIVER « [RES] [GetControllerCapabilities] - payload: 0x28 -2024-09-06T10:02:52.698Z CNTRLR received controller capabilities: - controller role: Primary - is the SUC: false - started this network: true - SIS is present: false - was real primary: true -2024-09-06T10:02:52.698Z CNTRLR querying serial API setup capabilities... -2024-09-06T10:02:52.699Z SERIAL » 0x0104000b01f1 (6 bytes) -2024-09-06T10:02:52.700Z DRIVER » [REQ] [SerialAPISetup] - command: GetSupportedCommands - payload: 0x01 -2024-09-06T10:02:52.706Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:52.707Z SERIAL « 0x0116010b01ff9f8007800000008000000000000000800085 (24 bytes) -2024-09-06T10:02:52.707Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:52.708Z DRIVER « [RES] [SerialAPISetup] - command: GetSupportedCommands - payload: 0xff9f80078000000080000000000000008000 -2024-09-06T10:02:52.709Z CNTRLR supported serial API setup commands: - · GetSupportedCommands - · SetTxStatusReport - · SetLongRangeMaximumTxPower - · SetPowerlevel - · GetLongRangeMaximumTxPower - · GetPowerlevel - · GetMaximumPayloadSize - · GetLongRangeMaximumPayloadSize - · SetPowerlevel16Bit - · GetPowerlevel16Bit - · GetRFRegion - · SetRFRegion - · SetNodeIDType -2024-09-06T10:02:52.709Z CNTRLR querying max. payload size... -2024-09-06T10:02:52.710Z SERIAL » 0x0104000b10e0 (6 bytes) -2024-09-06T10:02:52.710Z DRIVER » [REQ] [SerialAPISetup] - command: GetMaximumPayloadSize - payload: 0x10 -2024-09-06T10:02:52.715Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:52.716Z SERIAL « 0x0105010b102ece (7 bytes) -2024-09-06T10:02:52.716Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:52.717Z DRIVER « [RES] [SerialAPISetup] - command: GetMaximumPayloadSize - maximum payload size: 46 bytes -2024-09-06T10:02:52.718Z CNTRLR maximum payload size: 46 bytes -2024-09-06T10:02:52.718Z CNTRLR supported Z-Wave features: - · SmartStart -2024-09-06T10:02:52.718Z CNTRLR Querying configured RF region... -2024-09-06T10:02:52.719Z SERIAL » 0x0104000b20d0 (6 bytes) -2024-09-06T10:02:52.719Z DRIVER » [REQ] [SerialAPISetup] - command: GetRFRegion - payload: 0x20 -2024-09-06T10:02:52.724Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:52.725Z SERIAL « 0x0105010b2000d0 (7 bytes) -2024-09-06T10:02:52.725Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:52.726Z DRIVER « [RES] [SerialAPISetup] - command: GetRFRegion - region: Europe -2024-09-06T10:02:52.726Z CNTRLR The controller is using RF region Europe -2024-09-06T10:02:52.727Z CNTRLR Querying configured max. Long Range powerlevel... -2024-09-06T10:02:52.727Z SERIAL » 0x0104000b05f5 (6 bytes) -2024-09-06T10:02:52.727Z DRIVER » [REQ] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - payload: 0x05 -2024-09-06T10:02:52.732Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:52.733Z SERIAL « 0x0106010b05008c7a (8 bytes) -2024-09-06T10:02:52.733Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:52.733Z DRIVER « [RES] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - max. TX power (LR): 14.0 dBm -2024-09-06T10:02:52.734Z CNTRLR The max. LR powerlevel is 14.0 dBm -2024-09-06T10:02:52.734Z CNTRLR Querying configured Long Range channel information... -2024-09-06T10:02:52.734Z SERIAL » 0x010300db27 (5 bytes) -2024-09-06T10:02:52.735Z DRIVER » [REQ] [GetLongRangeChannel] -2024-09-06T10:02:52.740Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:52.740Z SERIAL « 0x010501db001030 (7 bytes) -2024-09-06T10:02:52.740Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:52.741Z DRIVER « [RES] [GetLongRangeChannel] - payload: 0x0010 -2024-09-06T10:02:52.741Z CNTRLR received Z-Wave Long Range channel information: - channel: Unsupported - supports auto channel selection: true -2024-09-06T10:02:52.741Z CNTRLR Performing soft reset... -2024-09-06T10:02:52.742Z SERIAL » 0x01030008f4 (5 bytes) -2024-09-06T10:02:52.742Z DRIVER » [REQ] [SoftReset] -2024-09-06T10:02:52.746Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:52.747Z CNTRLR Waiting for the controller to reconnect... -2024-09-06T10:02:52.747Z DRIVER all queues idle -2024-09-06T10:02:52.852Z SERIAL « 0x0116000a0700010100085e989f556c568f7400031d00003f (24 bytes) -2024-09-06T10:02:52.853Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:52.855Z DRIVER « [REQ] [SerialAPIStarted] - wake up reason: SoftwareReset - watchdog enabled: false - generic device class: 0x01 - specific device class: 0x00 - always listening: false - supports Long Range: false -2024-09-06T10:02:52.855Z CNTRLR reconnected and restarted -2024-09-06T10:02:52.856Z CNTRLR Starting hardware watchdog... -2024-09-06T10:02:52.857Z CNTRLR Switching serial API to 16-bit node IDs... -2024-09-06T10:02:52.857Z CNTRLR Switching serial API to 8-bit node IDs... -2024-09-06T10:02:52.858Z DRIVER all queues busy -2024-09-06T10:02:52.859Z SERIAL » 0x010300d22e (5 bytes) -2024-09-06T10:02:52.860Z DRIVER » [REQ] [StartWatchdog] -2024-09-06T10:02:52.862Z SERIAL » 0x0105000b800273 (7 bytes) -2024-09-06T10:02:52.863Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 16 bit -2024-09-06T10:02:52.864Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:52.868Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:52.869Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T10:02:52.869Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:52.870Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T10:02:52.871Z CNTRLR Switching to 16-bit node IDs successful -2024-09-06T10:02:52.871Z SERIAL » 0x0105000b800170 (7 bytes) -2024-09-06T10:02:52.872Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 8 bit -2024-09-06T10:02:52.878Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:52.878Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T10:02:52.879Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:52.879Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T10:02:52.880Z CNTRLR Switching to 8-bit node IDs successful -2024-09-06T10:02:52.880Z CNTRLR querying controller IDs... -2024-09-06T10:02:52.881Z SERIAL » 0x01030020dc (5 bytes) -2024-09-06T10:02:52.881Z DRIVER » [REQ] [GetControllerId] -2024-09-06T10:02:52.886Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:52.887Z SERIAL « 0x01080120edeeff8401af (10 bytes) -2024-09-06T10:02:52.887Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:52.887Z DRIVER « [RES] [GetControllerId] - home ID: 0xedeeff84 - own node ID: 1 -2024-09-06T10:02:52.888Z CNTRLR received controller IDs: - home ID: 0xedeeff84 - own node ID: 1 -2024-09-06T10:02:52.888Z CNTRLR Enabling TX status report... -2024-09-06T10:02:52.889Z SERIAL » 0x0105000b02ff0c (7 bytes) -2024-09-06T10:02:52.890Z DRIVER » [REQ] [SerialAPISetup] - command: SetTxStatusReport - enabled: true -2024-09-06T10:02:52.894Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:52.895Z SERIAL « 0x0105010b0201f3 (7 bytes) -2024-09-06T10:02:52.895Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:52.895Z DRIVER « [RES] [SerialAPISetup] - command: SetTxStatusReport - success: true -2024-09-06T10:02:52.896Z CNTRLR Enabling TX status report successful... -2024-09-06T10:02:52.896Z CNTRLR finding SUC... -2024-09-06T10:02:52.896Z SERIAL » 0x01030056aa (5 bytes) -2024-09-06T10:02:52.896Z DRIVER » [REQ] [GetSUCNodeId] -2024-09-06T10:02:52.901Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:52.901Z SERIAL « 0x0104015600ac (6 bytes) -2024-09-06T10:02:52.901Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:52.902Z DRIVER « [RES] [GetSUCNodeId] - payload: 0x00 -2024-09-06T10:02:52.902Z CNTRLR No SUC present in the network -2024-09-06T10:02:52.902Z CNTRLR There is no SUC/SIS in the network - promoting ourselves... -2024-09-06T10:02:52.903Z SERIAL » 0x01080054010125010384 (10 bytes) -2024-09-06T10:02:52.903Z DRIVER » [REQ] [SetSUCNodeId] - payload: 0x0101250103 -2024-09-06T10:02:52.909Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:52.910Z SERIAL « 0x0104015401af (6 bytes) -2024-09-06T10:02:52.910Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:52.910Z DRIVER « [RES] [SetSUCNodeId] - was executed: true -2024-09-06T10:02:52.911Z CNTRLR Promotion to SUC/SIS succeeded. -2024-09-06T10:02:52.911Z DRIVER all queues idle -2024-09-06T10:02:52.914Z CNTRLR [Node 001] [Manufacturer Specific] manufacturerId: metadata updated -2024-09-06T10:02:52.914Z CNTRLR [Node 001] [Manufacturer Specific] productType: metadata updated -2024-09-06T10:02:52.915Z CNTRLR [Node 001] [Manufacturer Specific] productId: metadata updated -2024-09-06T10:02:52.915Z CNTRLR [Node 001] [+] [Manufacturer Specific] manufacturerId: 0 -2024-09-06T10:02:52.915Z CNTRLR [Node 001] [+] [Manufacturer Specific] productType: 4 -2024-09-06T10:02:52.915Z CNTRLR [Node 001] [+] [Manufacturer Specific] productId: 4 -2024-09-06T10:02:52.915Z CNTRLR [Node 001] [Version] firmwareVersions: metadata updated -2024-09-06T10:02:52.915Z CNTRLR [Node 001] [+] [Version] firmwareVersions: 7.22 -2024-09-06T10:02:52.915Z CNTRLR [Node 001] [Version] zWaveProtocolVersion: metadata updated -2024-09-06T10:02:52.915Z CNTRLR [Node 001] [+] [Version] zWaveProtocolVersion: "7.22.1" -2024-09-06T10:02:52.915Z CNTRLR [Node 001] [Version] sdkVersion: metadata updated -2024-09-06T10:02:52.915Z CNTRLR [Node 001] [+] [Version] sdkVersion: "7.22.1" -2024-09-06T10:02:52.915Z CNTRLR Interview completed -2024-09-06T10:02:52.915Z DRIVER Network key for S0 configured, enabling S0 security manager... -2024-09-06T10:02:52.916Z DRIVER At least one network key for S2 configured, enabling S2 security manager... -2024-09-06T10:02:52.916Z DRIVER At least one network key for Z-Wave Long Range configured, enabling security m - anager... -2024-09-06T10:02:52.916Z DRIVER driver ready -2024-09-06T10:02:52.917Z CNTRLR [Node 001] Beginning interview - last completed stage: None -2024-09-06T10:02:52.917Z CNTRLR [Node 001] new node, doing a full interview... -2024-09-06T10:02:52.917Z CNTRLR » [Node 001] querying protocol info... -2024-09-06T10:02:52.917Z DRIVER all queues busy -2024-09-06T10:02:52.917Z SERIAL » 0x0104004101bb (6 bytes) -2024-09-06T10:02:52.918Z DRIVER » [REQ] [GetNodeProtocolInfo] - payload: 0x01 -2024-09-06T10:02:52.923Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:52.924Z SERIAL « 0x010a0141d3960102010000f2 (12 bytes) -2024-09-06T10:02:52.924Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:52.924Z DRIVER « [RES] [GetNodeProtocolInfo] - payload: 0xd3960102010000 -2024-09-06T10:02:52.925Z CNTRLR « [Node 001] received response for protocol info: - basic device class: Static Controller - generic device class: Remote Controller - specific device class: Unused - node type: Controller - is always listening: true - is frequent listening: false - can route messages: true - supports security: false - supports beaming: true - maximum data rate: 100000 kbps - protocol version: 3 -2024-09-06T10:02:52.925Z CNTRLR [Node 001] Interview stage completed: ProtocolInfo -2024-09-06T10:02:52.926Z DRIVER all queues idle -2024-09-06T10:02:52.927Z CNTRLR [Node 001] Embedded device config loaded -2024-09-06T10:02:52.927Z CNTRLR [Node 001] Interview stage completed: OverwriteConfig -2024-09-06T10:02:52.927Z CNTRLR [Node 001] Interview completed -2024-09-06T10:02:52.927Z CNTRLR [Node 001] The node is ready to be used -2024-09-06T10:02:52.927Z CNTRLR All nodes are ready to be used -2024-09-06T10:02:52.928Z CNTRLR [Node 001] The node is alive. -2024-09-06T10:02:57.639Z DRIVER all queues busy -2024-09-06T10:02:57.641Z SERIAL » 0x0105005081042f (7 bytes) -2024-09-06T10:02:57.642Z DRIVER » [REQ] [SetLearnMode] - callback id: 4 - intent: Inclusion -2024-09-06T10:02:57.647Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:57.649Z SERIAL « 0x0104015001ab (6 bytes) -2024-09-06T10:02:57.649Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:57.650Z DRIVER « [RES] [SetLearnMode] - success: true -2024-09-06T10:02:57.652Z DRIVER all queues idle -2024-09-06T10:02:57.831Z SERIAL « 0x0107005004010200af (9 bytes) -2024-09-06T10:02:57.832Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:57.832Z DRIVER « [REQ] [SetLearnMode] - callback id: 4 - status: Started - assigned node id: 2 -2024-09-06T10:02:57.832Z DRIVER handling request SetLearnMode (80) -2024-09-06T10:02:57.833Z DRIVER 1 handler registered! -2024-09-06T10:02:57.833Z DRIVER invoking handler #0 -2024-09-06T10:02:57.833Z DRIVER the message was handled -2024-09-06T10:02:57.927Z DRIVER all queues busy -2024-09-06T10:02:57.928Z SERIAL » 0x0103003bc7 (5 bytes) -2024-09-06T10:02:57.928Z DRIVER » [REQ] [GetBackgroundRSSI] -2024-09-06T10:02:57.935Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:57.935Z SERIAL « 0x0107013bf098987f4d (9 bytes) -2024-09-06T10:02:57.936Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:57.936Z DRIVER « [RES] [GetBackgroundRSSI] - channel 0: -16 dBm - channel 1: -104 dBm - channel 2: -104 dBm - channel 3: N/A -2024-09-06T10:02:57.937Z DRIVER all queues idle -2024-09-06T10:02:58.350Z SERIAL « 0x01060049100100a1 (8 bytes) -2024-09-06T10:02:58.351Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:58.351Z DRIVER « [REQ] [ApplicationUpdateRequest] - type: SUC_IdChanged - SUC node ID: 1 -2024-09-06T10:02:58.367Z SERIAL « 0x0107005004050200ab (9 bytes) -2024-09-06T10:02:58.368Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:58.368Z DRIVER « [REQ] [SetLearnMode] - callback id: 4 - status: ProtocolDone - assigned node id: 2 -2024-09-06T10:02:58.368Z DRIVER handling request SetLearnMode (80) -2024-09-06T10:02:58.368Z DRIVER 1 handler registered! -2024-09-06T10:02:58.368Z DRIVER invoking handler #0 -2024-09-06T10:02:58.369Z DRIVER the message was handled -2024-09-06T10:02:58.369Z DRIVER waiting for security bootstrapping... -2024-09-06T10:02:58.369Z CNTRLR querying controller IDs... -2024-09-06T10:02:58.370Z DRIVER all queues busy -2024-09-06T10:02:58.371Z SERIAL » 0x01030020dc (5 bytes) -2024-09-06T10:02:58.371Z DRIVER » [REQ] [GetControllerId] -2024-09-06T10:02:58.376Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:58.377Z SERIAL « 0x01080120f346aed70218 (10 bytes) -2024-09-06T10:02:58.377Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:58.377Z DRIVER « [RES] [GetControllerId] - home ID: 0xf346aed7 - own node ID: 2 -2024-09-06T10:02:58.378Z CNTRLR received controller IDs: - home ID: 0xf346aed7 - own node ID: 2 -2024-09-06T10:02:58.378Z DRIVER Joined network with home ID 0xf346aed7, switching to new network cache... -2024-09-06T10:02:58.378Z CNTRLR querying controller capabilities... -2024-09-06T10:02:58.379Z SERIAL » 0x01030005f9 (5 bytes) -2024-09-06T10:02:58.379Z DRIVER » [REQ] [GetControllerCapabilities] -2024-09-06T10:02:58.385Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:58.386Z SERIAL « 0x0104010506f9 (6 bytes) -2024-09-06T10:02:58.386Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:58.386Z DRIVER « [RES] [GetControllerCapabilities] - payload: 0x06 -2024-09-06T10:02:58.387Z CNTRLR received controller capabilities: - controller role: Inclusion - is the SUC: false - started this network: false - SIS is present: true - was real primary: false -2024-09-06T10:02:58.387Z CNTRLR querying additional controller information... -2024-09-06T10:02:58.388Z SERIAL » 0x01030002fe (5 bytes) -2024-09-06T10:02:58.388Z DRIVER » [REQ] [GetSerialApiInitData] -2024-09-06T10:02:58.396Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:58.396Z SERIAL « 0x012501020a001d030000000000000000000000000000000000000000000000000 (39 bytes) - 00000000800c5 -2024-09-06T10:02:58.396Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:58.397Z DRIVER « [RES] [GetSerialApiInitData] - payload: 0x0a001d03000000000000000000000000000000000000000000000000000000000 - 800 -2024-09-06T10:02:58.397Z CNTRLR received additional controller information: - Z-Wave API version: 1 (official) - Z-Wave chip type: EFR32ZG23 / ZGM230S - node type Controller - controller role: primary - controller is the SIS: false - controller supports timers: false - Z-Wave Classic nodes: 1, 2 -2024-09-06T10:02:58.399Z CNTRLR [Node 002] [Manufacturer Specific] manufacturerId: metadata updated -2024-09-06T10:02:58.399Z CNTRLR [Node 002] [Manufacturer Specific] productType: metadata updated -2024-09-06T10:02:58.400Z CNTRLR [Node 002] [Manufacturer Specific] productId: metadata updated -2024-09-06T10:02:58.400Z CNTRLR [Node 002] [+] [Manufacturer Specific] manufacturerId: 0 -2024-09-06T10:02:58.400Z CNTRLR [Node 002] [+] [Manufacturer Specific] productType: 4 -2024-09-06T10:02:58.400Z CNTRLR [Node 002] [+] [Manufacturer Specific] productId: 4 -2024-09-06T10:02:58.400Z CNTRLR [Node 002] [Version] firmwareVersions: metadata updated -2024-09-06T10:02:58.400Z CNTRLR [Node 002] [+] [Version] firmwareVersions: 7.22 -2024-09-06T10:02:58.400Z CNTRLR [Node 002] [Version] zWaveProtocolVersion: metadata updated -2024-09-06T10:02:58.401Z CNTRLR [Node 002] [+] [Version] zWaveProtocolVersion: "7.22.1" -2024-09-06T10:02:58.401Z CNTRLR [Node 002] [Version] sdkVersion: metadata updated -2024-09-06T10:02:58.401Z CNTRLR [Node 002] [+] [Version] sdkVersion: "7.22.1" -2024-09-06T10:02:58.401Z CNTRLR Interview completed -2024-09-06T10:02:58.401Z DRIVER all queues idle -2024-09-06T10:02:58.580Z SERIAL « 0x010b00a8000201029f0400d91f (13 bytes) -2024-09-06T10:02:58.581Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:58.582Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -39 dBm - └─[Security2CCKEXGet] -2024-09-06T10:02:58.583Z CNTRLR » [Node 001] querying protocol info... -2024-09-06T10:02:58.583Z DRIVER all queues busy -2024-09-06T10:02:58.583Z SERIAL » 0x0104004101bb (6 bytes) -2024-09-06T10:02:58.584Z DRIVER » [REQ] [GetNodeProtocolInfo] - payload: 0x01 -2024-09-06T10:02:58.589Z SERIAL « [ACK] (0x06) -2024-09-06T10:02:58.589Z SERIAL « 0x010a0141d3960102010000f2 (12 bytes) -2024-09-06T10:02:58.590Z SERIAL » [ACK] (0x06) -2024-09-06T10:02:58.590Z DRIVER « [RES] [GetNodeProtocolInfo] - payload: 0xd3960102010000 -2024-09-06T10:02:58.591Z CNTRLR « [Node 001] received response for protocol info: - basic device class: Static Controller - generic device class: Remote Controller - specific device class: Unused - node type: Controller - is always listening: true - is frequent listening: false - can route messages: true - supports security: false - supports beaming: true - maximum data rate: 100000 kbps - protocol version: 3 -2024-09-06T10:02:58.591Z CNTRLR [Node 001] Interview stage completed: ProtocolInfo -2024-09-06T10:02:58.591Z DRIVER Finished joining network -2024-09-06T10:02:58.591Z DRIVER all queues idle -2024-09-06T10:03:18.243Z DRIVER ███████╗ ██╗ ██╗ █████╗ ██╗ ██╗ ███████╗ ██╗ ███████╗ - ╚══███╔╝ ██║ ██║ ██╔══██╗ ██║ ██║ ██╔════╝ ██║ ██╔════╝ - ███╔╝ █████╗ ██║ █╗ ██║ ███████║ ██║ ██║ █████╗ ██║ ███████╗ - ███╔╝ ╚════╝ ██║███╗██║ ██╔══██║ ╚██╗ ██╔╝ ██╔══╝ ██ ██║ ╚════██║ - ███████╗ ╚███╔███╔╝ ██║ ██║ ╚████╔╝ ███████╗ ╚█████╔╝ ███████║ - ╚══════╝ ╚══╝╚══╝ ╚═╝ ╚═╝ ╚═══╝ ╚══════╝ ╚════╝ ╚══════╝ -2024-09-06T10:03:18.243Z DRIVER version 13.2.0 -2024-09-06T10:03:18.243Z DRIVER -2024-09-06T10:03:18.243Z DRIVER starting driver... -2024-09-06T10:03:18.244Z DRIVER opening serial port /dev/serial/by-id/usb-Silicon_Labs_CP2102N_USB_to_UART_Bri - dge_Controller_ca4d95064355ee118d4d1294de9da576-if00-port0 -2024-09-06T10:03:18.252Z DRIVER serial port opened -2024-09-06T10:03:18.252Z SERIAL » 0x15 (1 bytes) -2024-09-06T10:03:19.257Z DRIVER loading configuration... -2024-09-06T10:03:19.260Z CONFIG version 13.2.0 -2024-09-06T10:03:19.595Z DRIVER beginning interview... -2024-09-06T10:03:19.595Z DRIVER added request handler for AddNodeToNetwork (0x4a)... - 1 registered -2024-09-06T10:03:19.595Z DRIVER added request handler for RemoveNodeFromNetwork (0x4b)... - 1 registered -2024-09-06T10:03:19.595Z DRIVER added request handler for ReplaceFailedNode (0x63)... - 1 registered -2024-09-06T10:03:19.595Z DRIVER added request handler for SetLearnMode (0x50)... - 1 registered -2024-09-06T10:03:19.595Z CNTRLR querying Serial API capabilities... -2024-09-06T10:03:19.596Z SERIAL » 0x01030007fb (5 bytes) -2024-09-06T10:03:19.597Z DRIVER » [REQ] [GetSerialApiCapabilities] -2024-09-06T10:03:19.608Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:19.609Z SERIAL « 0x012b01070716000000040004f6873e88cf2bc05ffbd7fde09700008000808680b (45 bytes) - a0500700000ee7fc000000041 -2024-09-06T10:03:19.609Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:19.609Z DRIVER « [RES] [GetSerialApiCapabilities] - payload: 0x0716000000040004f6873e88cf2bc05ffbd7fde09700008000808680ba0500700 - 000ee7fc0000000 -2024-09-06T10:03:19.610Z CNTRLR received API capabilities: - firmware version: 7.22 - manufacturer ID: 0x00 - product type: 0x04 - product ID: 0x04 - supported functions: - · GetSerialApiInitData (0x02) - · SetApplicationNodeInformation (0x03) - · GetControllerCapabilities (0x05) - · SetSerialApiTimeouts (0x06) - · GetSerialApiCapabilities (0x07) - · SoftReset (0x08) - · GetProtocolVersion (0x09) - · SerialAPIStarted (0x0a) - · SerialAPISetup (0x0b) - · SetRFReceiveMode (0x10) - · SendNodeInformation (0x12) - · SendData (0x13) - · SendDataMulticast (0x14) - · GetControllerVersion (0x15) - · SendDataAbort (0x16) - · FUNC_ID_ZW_GET_RANDOM (0x1c) - · GetControllerId (0x20) - · UNKNOWN_FUNC_MEMORY_GET_BYTE (0x21) - · UNKNOWN_FUNC_MEMORY_PUT_BYTE (0x22) - · UNKNOWN_FUNC_MEMORY_GET_BUFFER (0x23) - · UNKNOWN_FUNC_MEMORY_PUT_BUFFER (0x24) - · EnterBootloader (0x27) - · UNKNOWN_FUNC_UNKNOWN_0x28 (0x28) - · GetNVMId (0x29) - · ExtNVMReadLongBuffer (0x2a) - · ExtNVMReadLongByte (0x2c) - · NVMOperations (0x2e) - · ClearTxTimers (0x37) - · GetTxTimers (0x38) - · ClearNetworkStats (0x39) - · GetNetworkStats (0x3a) - · GetBackgroundRSSI (0x3b) - · SetListenBeforeTalkThreshold (0x3c) - · ExtendedNVMOperations (0x3d) - · RemoveSpecificNodeIdFromNetwork (0x3f) - · GetNodeProtocolInfo (0x41) - · HardReset (0x42) - · FUNC_ID_ZW_REPLICATION_COMMAND_COMPLETE (0x44) - · FUNC_ID_ZW_REPLICATION_SEND_DATA (0x45) - · AssignReturnRoute (0x46) - · DeleteReturnRoute (0x47) - · RequestNodeNeighborUpdate (0x48) - · ApplicationUpdateRequest (0x49) - · AddNodeToNetwork (0x4a) - · RemoveNodeFromNetwork (0x4b) - · AddPrimaryController (0x4d) - · AssignPriorityReturnRoute (0x4f) - · SetLearnMode (0x50) - · AssignSUCReturnRoute (0x51) - · RequestNetworkUpdate (0x53) - · SetSUCNodeId (0x54) - · DeleteSUCReturnRoute (0x55) - · GetSUCNodeId (0x56) - · SendSUCNodeId (0x57) - · AssignPrioritySUCReturnRoute (0x58) - · ExploreRequestInclusion (0x5e) - · ExploreRequestExclusion (0x5f) - · RequestNodeInfo (0x60) - · RemoveFailedNode (0x61) - · IsFailedNode (0x62) - · ReplaceFailedNode (0x63) - · undefined (0x65) - · RequestProtocolCCEncryption (0x68) - · GetRoutingInfo (0x80) - · LockUnlockLastRoute (0x90) - · GetPriorityRoute (0x92) - · SetPriorityRoute (0x93) - · UNKNOWN_FUNC_UNKNOWN_0x98 (0x98) - · VirtualNodeSetNodeInfo (0xa0) - · VirtualNodeSendNodeInfo (0xa2) - · VirtualNodeSetLearnMode (0xa4) - · GetVirtualNodes (0xa5) - · IsVirtualNode (0xa6) - · BridgeApplicationCommand (0xa8) - · SendDataBridge (0xa9) - · SendDataMulticastBridge (0xab) - · GetLibrary (0xbd) - · SendTestFrame (0xbe) - · GetProtocolStatus (0xbf) - · StartWatchdog (0xd2) - · StopWatchdog (0xd3) - · SetMaximumRoutingAttempts (0xd4) - · SetMaxSmartStartInclusionRequestInterval (0xd6) - · undefined (0xd7) - · undefined (0xd8) - · Shutdown (0xd9) - · GetLongRangeNodes (0xda) - · GetLongRangeChannel (0xdb) - · SetLongRangeChannel (0xdc) - · SetLongRangeShadowNodeIDs (0xdd) - · Proprietary_DE (0xde) - · Proprietary_DF (0xdf) - · Proprietary_E7 (0xe7) - · Proprietary_E8 (0xe8) -2024-09-06T10:03:19.610Z CNTRLR querying additional controller information... -2024-09-06T10:03:19.611Z SERIAL » 0x01030002fe (5 bytes) -2024-09-06T10:03:19.611Z DRIVER » [REQ] [GetSerialApiInitData] -2024-09-06T10:03:19.625Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:19.625Z SERIAL « 0x012501020a001d030000000000000000000000000000000000000000000000000 (39 bytes) - 00000000800c5 -2024-09-06T10:03:19.626Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:19.628Z DRIVER « [RES] [GetSerialApiInitData] - payload: 0x0a001d03000000000000000000000000000000000000000000000000000000000 - 800 -2024-09-06T10:03:19.629Z CNTRLR received additional controller information: - Z-Wave API version: 1 (official) - Z-Wave chip type: EFR32ZG23 / ZGM230S - node type Controller - controller role: primary - controller is the SIS: false - controller supports timers: false - Z-Wave Classic nodes: 1, 2 -2024-09-06T10:03:19.630Z CNTRLR querying version info... -2024-09-06T10:03:19.631Z SERIAL » 0x01030015e9 (5 bytes) -2024-09-06T10:03:19.631Z DRIVER » [REQ] [GetControllerVersion] -2024-09-06T10:03:19.638Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:19.638Z SERIAL « 0x011001155a2d5761766520372e3232000797 (18 bytes) -2024-09-06T10:03:19.638Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:19.639Z DRIVER « [RES] [GetControllerVersion] - payload: 0x5a2d5761766520372e32320007 -2024-09-06T10:03:19.640Z CNTRLR received version info: - controller type: Bridge Controller - library version: Z-Wave 7.22 -2024-09-06T10:03:19.640Z CNTRLR querying protocol version info... -2024-09-06T10:03:19.641Z SERIAL » 0x01030009f5 (5 bytes) -2024-09-06T10:03:19.641Z DRIVER » [REQ] [GetProtocolVersion] -2024-09-06T10:03:19.648Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:19.648Z SERIAL « 0x0119010900071601abcd63636639623665613165616566313162c3 (27 bytes) -2024-09-06T10:03:19.649Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:19.649Z DRIVER « [RES] [GetProtocolVersion] - payload: 0x00071601abcd63636639623665613165616566313162 -2024-09-06T10:03:19.650Z CNTRLR received protocol version info: - protocol type: Z-Wave - protocol version: 7.22.1 - appl. framework build no.: 43981 - git commit hash: 63636639623665613165616566313162 -2024-09-06T10:03:19.650Z CNTRLR querying controller capabilities... -2024-09-06T10:03:19.651Z SERIAL » 0x01030005f9 (5 bytes) -2024-09-06T10:03:19.652Z DRIVER » [REQ] [GetControllerCapabilities] -2024-09-06T10:03:19.657Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:19.658Z SERIAL « 0x0104010506f9 (6 bytes) -2024-09-06T10:03:19.658Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:19.658Z DRIVER « [RES] [GetControllerCapabilities] - payload: 0x06 -2024-09-06T10:03:19.659Z CNTRLR received controller capabilities: - controller role: Inclusion - is the SUC: false - started this network: false - SIS is present: true - was real primary: false -2024-09-06T10:03:19.659Z CNTRLR querying serial API setup capabilities... -2024-09-06T10:03:19.660Z SERIAL » 0x0104000b01f1 (6 bytes) -2024-09-06T10:03:19.660Z DRIVER » [REQ] [SerialAPISetup] - command: GetSupportedCommands - payload: 0x01 -2024-09-06T10:03:19.667Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:19.667Z SERIAL « 0x0116010b01ff9f8007800000008000000000000000800085 (24 bytes) -2024-09-06T10:03:19.667Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:19.668Z DRIVER « [RES] [SerialAPISetup] - command: GetSupportedCommands - payload: 0xff9f80078000000080000000000000008000 -2024-09-06T10:03:19.668Z CNTRLR supported serial API setup commands: - · GetSupportedCommands - · SetTxStatusReport - · SetLongRangeMaximumTxPower - · SetPowerlevel - · GetLongRangeMaximumTxPower - · GetPowerlevel - · GetMaximumPayloadSize - · GetLongRangeMaximumPayloadSize - · SetPowerlevel16Bit - · GetPowerlevel16Bit - · GetRFRegion - · SetRFRegion - · SetNodeIDType -2024-09-06T10:03:19.668Z CNTRLR querying max. payload size... -2024-09-06T10:03:19.669Z SERIAL » 0x0104000b10e0 (6 bytes) -2024-09-06T10:03:19.669Z DRIVER » [REQ] [SerialAPISetup] - command: GetMaximumPayloadSize - payload: 0x10 -2024-09-06T10:03:19.676Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:19.676Z SERIAL « 0x0105010b102ece (7 bytes) -2024-09-06T10:03:19.676Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:19.677Z DRIVER « [RES] [SerialAPISetup] - command: GetMaximumPayloadSize - maximum payload size: 46 bytes -2024-09-06T10:03:19.678Z CNTRLR maximum payload size: 46 bytes -2024-09-06T10:03:19.678Z CNTRLR supported Z-Wave features: - · SmartStart -2024-09-06T10:03:19.678Z CNTRLR Querying configured RF region... -2024-09-06T10:03:19.679Z SERIAL » 0x0104000b20d0 (6 bytes) -2024-09-06T10:03:19.679Z DRIVER » [REQ] [SerialAPISetup] - command: GetRFRegion - payload: 0x20 -2024-09-06T10:03:19.684Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:19.685Z SERIAL « 0x0105010b2000d0 (7 bytes) -2024-09-06T10:03:19.685Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:19.685Z DRIVER « [RES] [SerialAPISetup] - command: GetRFRegion - region: Europe -2024-09-06T10:03:19.686Z CNTRLR The controller is using RF region Europe -2024-09-06T10:03:19.686Z CNTRLR Querying configured max. Long Range powerlevel... -2024-09-06T10:03:19.687Z SERIAL » 0x0104000b05f5 (6 bytes) -2024-09-06T10:03:19.687Z DRIVER » [REQ] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - payload: 0x05 -2024-09-06T10:03:19.692Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:19.693Z SERIAL « 0x0106010b05008c7a (8 bytes) -2024-09-06T10:03:19.693Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:19.693Z DRIVER « [RES] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - max. TX power (LR): 14.0 dBm -2024-09-06T10:03:19.694Z CNTRLR The max. LR powerlevel is 14.0 dBm -2024-09-06T10:03:19.694Z CNTRLR Querying configured Long Range channel information... -2024-09-06T10:03:19.695Z SERIAL » 0x010300db27 (5 bytes) -2024-09-06T10:03:19.696Z DRIVER » [REQ] [GetLongRangeChannel] -2024-09-06T10:03:19.703Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:19.703Z SERIAL « 0x010501db001030 (7 bytes) -2024-09-06T10:03:19.704Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:19.704Z DRIVER « [RES] [GetLongRangeChannel] - payload: 0x0010 -2024-09-06T10:03:19.705Z CNTRLR received Z-Wave Long Range channel information: - channel: Unsupported - supports auto channel selection: true -2024-09-06T10:03:19.705Z CNTRLR Performing soft reset... -2024-09-06T10:03:19.706Z SERIAL » 0x01030008f4 (5 bytes) -2024-09-06T10:03:19.707Z DRIVER » [REQ] [SoftReset] -2024-09-06T10:03:19.711Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:19.712Z CNTRLR Waiting for the controller to reconnect... -2024-09-06T10:03:19.712Z DRIVER all queues idle -2024-09-06T10:03:19.818Z SERIAL « 0x0116000a0700010100085e989f556c568f7400031d00003f (24 bytes) -2024-09-06T10:03:19.819Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:19.820Z DRIVER « [REQ] [SerialAPIStarted] - wake up reason: SoftwareReset - watchdog enabled: false - generic device class: 0x01 - specific device class: 0x00 - always listening: false - supports Long Range: false -2024-09-06T10:03:19.821Z CNTRLR reconnected and restarted -2024-09-06T10:03:19.821Z CNTRLR Starting hardware watchdog... -2024-09-06T10:03:19.821Z CNTRLR Switching serial API to 16-bit node IDs... -2024-09-06T10:03:19.822Z CNTRLR Switching serial API to 8-bit node IDs... -2024-09-06T10:03:19.822Z DRIVER all queues busy -2024-09-06T10:03:19.823Z SERIAL » 0x010300d22e (5 bytes) -2024-09-06T10:03:19.823Z DRIVER » [REQ] [StartWatchdog] -2024-09-06T10:03:19.825Z SERIAL » 0x0105000b800273 (7 bytes) -2024-09-06T10:03:19.825Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 16 bit -2024-09-06T10:03:19.827Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:19.830Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:19.831Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T10:03:19.831Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:19.832Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T10:03:19.832Z CNTRLR Switching to 16-bit node IDs successful -2024-09-06T10:03:19.833Z SERIAL » 0x0105000b800170 (7 bytes) -2024-09-06T10:03:19.833Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 8 bit -2024-09-06T10:03:19.839Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:19.839Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T10:03:19.840Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:19.840Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T10:03:19.841Z CNTRLR Switching to 8-bit node IDs successful -2024-09-06T10:03:19.841Z CNTRLR querying controller IDs... -2024-09-06T10:03:19.841Z SERIAL » 0x01030020dc (5 bytes) -2024-09-06T10:03:19.842Z DRIVER » [REQ] [GetControllerId] -2024-09-06T10:03:19.847Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:19.847Z SERIAL « 0x01080120f346aed70218 (10 bytes) -2024-09-06T10:03:19.848Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:19.848Z DRIVER « [RES] [GetControllerId] - home ID: 0xf346aed7 - own node ID: 2 -2024-09-06T10:03:19.849Z CNTRLR received controller IDs: - home ID: 0xf346aed7 - own node ID: 2 -2024-09-06T10:03:19.849Z CNTRLR Enabling TX status report... -2024-09-06T10:03:19.850Z SERIAL » 0x0105000b02ff0c (7 bytes) -2024-09-06T10:03:19.850Z DRIVER » [REQ] [SerialAPISetup] - command: SetTxStatusReport - enabled: true -2024-09-06T10:03:19.855Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:19.855Z SERIAL « 0x0105010b0201f3 (7 bytes) -2024-09-06T10:03:19.855Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:19.856Z DRIVER « [RES] [SerialAPISetup] - command: SetTxStatusReport - success: true -2024-09-06T10:03:19.857Z CNTRLR Enabling TX status report successful... -2024-09-06T10:03:19.857Z CNTRLR finding SUC... -2024-09-06T10:03:19.858Z SERIAL » 0x01030056aa (5 bytes) -2024-09-06T10:03:19.858Z DRIVER » [REQ] [GetSUCNodeId] -2024-09-06T10:03:19.863Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:19.863Z SERIAL « 0x0104015601ad (6 bytes) -2024-09-06T10:03:19.864Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:19.864Z DRIVER « [RES] [GetSUCNodeId] - payload: 0x01 -2024-09-06T10:03:19.865Z CNTRLR SUC has node ID 1 -2024-09-06T10:03:19.866Z DRIVER all queues idle -2024-09-06T10:03:19.877Z DRIVER Cache file for homeId 0xf346aed7 found, attempting to restore the network from - cache... -2024-09-06T10:03:19.885Z CNTRLR [Node 002] Embedded device config loaded -2024-09-06T10:03:19.886Z DRIVER Restoring the network from cache was successful! -2024-09-06T10:03:19.887Z CNTRLR [Node 002] [Manufacturer Specific] manufacturerId: metadata updated -2024-09-06T10:03:19.887Z CNTRLR [Node 002] [Manufacturer Specific] productType: metadata updated -2024-09-06T10:03:19.888Z CNTRLR [Node 002] [Manufacturer Specific] productId: metadata updated -2024-09-06T10:03:19.888Z CNTRLR [Node 002] [~] [Manufacturer Specific] manufacturerId: 0 => 0 -2024-09-06T10:03:19.888Z CNTRLR [Node 002] [~] [Manufacturer Specific] productType: 4 => 4 -2024-09-06T10:03:19.889Z CNTRLR [Node 002] [~] [Manufacturer Specific] productId: 4 => 4 -2024-09-06T10:03:19.889Z CNTRLR [Node 002] [Version] firmwareVersions: metadata updated -2024-09-06T10:03:19.889Z CNTRLR [Node 002] [~] [Version] firmwareVersions: 7.22 => 7.22 -2024-09-06T10:03:19.889Z CNTRLR [Node 002] [Version] zWaveProtocolVersion: metadata updated -2024-09-06T10:03:19.889Z CNTRLR [Node 002] [~] [Version] zWaveProtocolVersion: "7.22.1" => "7.22.1" -2024-09-06T10:03:19.890Z CNTRLR [Node 002] [Version] sdkVersion: metadata updated -2024-09-06T10:03:19.890Z CNTRLR [Node 002] [~] [Version] sdkVersion: "7.22.1" => "7.22.1" -2024-09-06T10:03:19.890Z CNTRLR Interview completed -2024-09-06T10:03:19.890Z DRIVER No network key for S0 found in cache, communication with secure (S0) devices w - on't work! -2024-09-06T10:03:19.890Z DRIVER No network key for S2 found in cache, communication with secure (S2) devices w - on't work! -2024-09-06T10:03:19.890Z DRIVER driver ready -2024-09-06T10:03:19.891Z CNTRLR [Node 002] Beginning interview - last completed stage: None -2024-09-06T10:03:19.891Z CNTRLR [Node 002] new node, doing a full interview... -2024-09-06T10:03:19.892Z CNTRLR » [Node 002] querying protocol info... -2024-09-06T10:03:19.893Z DRIVER all queues busy -2024-09-06T10:03:19.894Z SERIAL » 0x0104004102b8 (6 bytes) -2024-09-06T10:03:19.894Z DRIVER » [REQ] [GetNodeProtocolInfo] - payload: 0x02 -2024-09-06T10:03:19.900Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:19.900Z SERIAL « 0x010a0141d3960102010000f2 (12 bytes) -2024-09-06T10:03:19.901Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:19.901Z DRIVER « [RES] [GetNodeProtocolInfo] - payload: 0xd3960102010000 -2024-09-06T10:03:19.902Z CNTRLR « [Node 002] received response for protocol info: - basic device class: Static Controller - generic device class: Remote Controller - specific device class: Unused - node type: Controller - is always listening: true - is frequent listening: false - can route messages: true - supports security: false - supports beaming: true - maximum data rate: 100000 kbps - protocol version: 3 -2024-09-06T10:03:19.903Z CNTRLR [Node 002] Interview stage completed: ProtocolInfo -2024-09-06T10:03:19.904Z DRIVER all queues idle -2024-09-06T10:03:19.905Z CNTRLR [Node 002] Embedded device config loaded -2024-09-06T10:03:19.906Z CNTRLR [Node 002] Interview stage completed: OverwriteConfig -2024-09-06T10:03:19.906Z CNTRLR [Node 002] Interview completed -2024-09-06T10:03:19.906Z CNTRLR [Node 002] The node is ready to be used -2024-09-06T10:03:19.907Z CNTRLR [Node 002] The node is alive. -2024-09-06T10:03:19.907Z CNTRLR » [Node 001] querying protocol info... -2024-09-06T10:03:19.908Z DRIVER all queues busy -2024-09-06T10:03:19.908Z SERIAL » 0x0104004101bb (6 bytes) -2024-09-06T10:03:19.908Z DRIVER » [REQ] [GetNodeProtocolInfo] - payload: 0x01 -2024-09-06T10:03:19.914Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:19.914Z SERIAL « 0x010a0141d3960102010000f2 (12 bytes) -2024-09-06T10:03:19.915Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:19.915Z DRIVER « [RES] [GetNodeProtocolInfo] - payload: 0xd3960102010000 -2024-09-06T10:03:19.916Z CNTRLR « [Node 001] received response for protocol info: - basic device class: Static Controller - generic device class: Remote Controller - specific device class: Unused - node type: Controller - is always listening: true - is frequent listening: false - can route messages: true - supports security: false - supports beaming: true - maximum data rate: 100000 kbps - protocol version: 3 -2024-09-06T10:03:19.916Z CNTRLR [Node 001] Interview stage completed: ProtocolInfo -2024-09-06T10:03:19.916Z CNTRLR Determining node status: 1 -2024-09-06T10:03:19.916Z CNTRLR » [Node 001] pinging the node... -2024-09-06T10:03:19.919Z SERIAL » 0x010d00a9020101002500000000017d (15 bytes) -2024-09-06T10:03:19.919Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 1 - └─[NoOperationCC] -2024-09-06T10:03:19.929Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:19.929Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T10:03:19.929Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:19.930Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T10:03:19.946Z SERIAL « 0x011d00a90100000100d97f7f7f7f00000300000000030100007f7f7f7f7fec (31 bytes) -2024-09-06T10:03:19.947Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:19.947Z DRIVER « [REQ] [SendDataBridge] - callback id: 1 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -39 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T10:03:19.948Z CNTRLR [Node 001] The node is alive. -2024-09-06T10:03:19.949Z CNTRLR « [Node 001] ping successful -2024-09-06T10:03:19.949Z DRIVER all queues idle -2024-09-06T10:03:24.891Z CNTRLR Updating the controller NIF... -2024-09-06T10:03:24.892Z DRIVER all queues busy -2024-09-06T10:03:24.894Z SERIAL » 0x010f0003010100085e989f556c568f7436 (17 bytes) -2024-09-06T10:03:24.895Z DRIVER » [REQ] [SetApplicationNodeInformation] - is listening: true - generic device class: 0x01 - specific device class: 0x00 - supported CCs: - · Z-Wave Plus Info - · Security - · Security 2 - · Transport Service - · Supervision - · CRC-16 Encapsulation - · Multi Command - · Inclusion Controller - controlled CCs: -2024-09-06T10:03:24.901Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:24.903Z CNTRLR performing hard reset... -2024-09-06T10:03:24.904Z SERIAL » 0x0104004202bb (6 bytes) -2024-09-06T10:03:24.905Z DRIVER » [REQ] [HardReset] - callback id: 2 -2024-09-06T10:03:24.910Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:24.930Z SERIAL « 0x0104004202bb (6 bytes) -2024-09-06T10:03:24.931Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:24.932Z DRIVER « [REQ] [HardReset] - callback id: 2 -2024-09-06T10:03:24.933Z CNTRLR hard reset succeeded -2024-09-06T10:03:24.934Z CNTRLR querying Serial API capabilities... -2024-09-06T10:03:24.936Z SERIAL » 0x01030007fb (5 bytes) -2024-09-06T10:03:24.936Z DRIVER » [REQ] [GetSerialApiCapabilities] -2024-09-06T10:03:24.945Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:24.947Z SERIAL « 0x012b01070716000000040004f6873e88cf2bc05ffbd7fde09700008000808680b (45 bytes) - a0500700000ee7fc000000041 -2024-09-06T10:03:24.947Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:24.948Z DRIVER « [RES] [GetSerialApiCapabilities] - payload: 0x0716000000040004f6873e88cf2bc05ffbd7fde09700008000808680ba0500700 - 000ee7fc0000000 -2024-09-06T10:03:24.950Z CNTRLR received API capabilities: - firmware version: 7.22 - manufacturer ID: 0x00 - product type: 0x04 - product ID: 0x04 - supported functions: - · GetSerialApiInitData (0x02) - · SetApplicationNodeInformation (0x03) - · GetControllerCapabilities (0x05) - · SetSerialApiTimeouts (0x06) - · GetSerialApiCapabilities (0x07) - · SoftReset (0x08) - · GetProtocolVersion (0x09) - · SerialAPIStarted (0x0a) - · SerialAPISetup (0x0b) - · SetRFReceiveMode (0x10) - · SendNodeInformation (0x12) - · SendData (0x13) - · SendDataMulticast (0x14) - · GetControllerVersion (0x15) - · SendDataAbort (0x16) - · FUNC_ID_ZW_GET_RANDOM (0x1c) - · GetControllerId (0x20) - · UNKNOWN_FUNC_MEMORY_GET_BYTE (0x21) - · UNKNOWN_FUNC_MEMORY_PUT_BYTE (0x22) - · UNKNOWN_FUNC_MEMORY_GET_BUFFER (0x23) - · UNKNOWN_FUNC_MEMORY_PUT_BUFFER (0x24) - · EnterBootloader (0x27) - · UNKNOWN_FUNC_UNKNOWN_0x28 (0x28) - · GetNVMId (0x29) - · ExtNVMReadLongBuffer (0x2a) - · ExtNVMReadLongByte (0x2c) - · NVMOperations (0x2e) - · ClearTxTimers (0x37) - · GetTxTimers (0x38) - · ClearNetworkStats (0x39) - · GetNetworkStats (0x3a) - · GetBackgroundRSSI (0x3b) - · SetListenBeforeTalkThreshold (0x3c) - · ExtendedNVMOperations (0x3d) - · RemoveSpecificNodeIdFromNetwork (0x3f) - · GetNodeProtocolInfo (0x41) - · HardReset (0x42) - · FUNC_ID_ZW_REPLICATION_COMMAND_COMPLETE (0x44) - · FUNC_ID_ZW_REPLICATION_SEND_DATA (0x45) - · AssignReturnRoute (0x46) - · DeleteReturnRoute (0x47) - · RequestNodeNeighborUpdate (0x48) - · ApplicationUpdateRequest (0x49) - · AddNodeToNetwork (0x4a) - · RemoveNodeFromNetwork (0x4b) - · AddPrimaryController (0x4d) - · AssignPriorityReturnRoute (0x4f) - · SetLearnMode (0x50) - · AssignSUCReturnRoute (0x51) - · RequestNetworkUpdate (0x53) - · SetSUCNodeId (0x54) - · DeleteSUCReturnRoute (0x55) - · GetSUCNodeId (0x56) - · SendSUCNodeId (0x57) - · AssignPrioritySUCReturnRoute (0x58) - · ExploreRequestInclusion (0x5e) - · ExploreRequestExclusion (0x5f) - · RequestNodeInfo (0x60) - · RemoveFailedNode (0x61) - · IsFailedNode (0x62) - · ReplaceFailedNode (0x63) - · undefined (0x65) - · RequestProtocolCCEncryption (0x68) - · GetRoutingInfo (0x80) - · LockUnlockLastRoute (0x90) - · GetPriorityRoute (0x92) - · SetPriorityRoute (0x93) - · UNKNOWN_FUNC_UNKNOWN_0x98 (0x98) - · VirtualNodeSetNodeInfo (0xa0) - · VirtualNodeSendNodeInfo (0xa2) - · VirtualNodeSetLearnMode (0xa4) - · GetVirtualNodes (0xa5) - · IsVirtualNode (0xa6) - · BridgeApplicationCommand (0xa8) - · SendDataBridge (0xa9) - · SendDataMulticastBridge (0xab) - · GetLibrary (0xbd) - · SendTestFrame (0xbe) - · GetProtocolStatus (0xbf) - · StartWatchdog (0xd2) - · StopWatchdog (0xd3) - · SetMaximumRoutingAttempts (0xd4) - · SetMaxSmartStartInclusionRequestInterval (0xd6) - · undefined (0xd7) - · undefined (0xd8) - · Shutdown (0xd9) - · GetLongRangeNodes (0xda) - · GetLongRangeChannel (0xdb) - · SetLongRangeChannel (0xdc) - · SetLongRangeShadowNodeIDs (0xdd) - · Proprietary_DE (0xde) - · Proprietary_DF (0xdf) - · Proprietary_E7 (0xe7) - · Proprietary_E8 (0xe8) -2024-09-06T10:03:24.950Z CNTRLR querying additional controller information... -2024-09-06T10:03:24.951Z SERIAL » 0x01030002fe (5 bytes) -2024-09-06T10:03:24.952Z DRIVER » [REQ] [GetSerialApiInitData] -2024-09-06T10:03:24.961Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:24.962Z SERIAL « 0x012501020a001d010000000000000000000000000000000000000000000000000 (39 bytes) - 00000000800c7 -2024-09-06T10:03:24.963Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:24.964Z DRIVER « [RES] [GetSerialApiInitData] - payload: 0x0a001d01000000000000000000000000000000000000000000000000000000000 - 800 -2024-09-06T10:03:24.965Z CNTRLR received additional controller information: - Z-Wave API version: 1 (official) - Z-Wave chip type: EFR32ZG23 / ZGM230S - node type Controller - controller role: primary - controller is the SIS: false - controller supports timers: false - Z-Wave Classic nodes: 1 -2024-09-06T10:03:24.965Z CNTRLR querying version info... -2024-09-06T10:03:24.967Z SERIAL » 0x01030015e9 (5 bytes) -2024-09-06T10:03:24.967Z DRIVER » [REQ] [GetControllerVersion] -2024-09-06T10:03:24.973Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:24.974Z SERIAL « 0x011001155a2d5761766520372e3232000797 (18 bytes) -2024-09-06T10:03:24.975Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:24.975Z DRIVER « [RES] [GetControllerVersion] - payload: 0x5a2d5761766520372e32320007 -2024-09-06T10:03:24.976Z CNTRLR received version info: - controller type: Bridge Controller - library version: Z-Wave 7.22 -2024-09-06T10:03:24.977Z CNTRLR querying protocol version info... -2024-09-06T10:03:24.977Z SERIAL » 0x01030009f5 (5 bytes) -2024-09-06T10:03:24.978Z DRIVER » [REQ] [GetProtocolVersion] -2024-09-06T10:03:24.984Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:24.985Z SERIAL « 0x0119010900071601abcd63636639623665613165616566313162c3 (27 bytes) -2024-09-06T10:03:24.985Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:24.986Z DRIVER « [RES] [GetProtocolVersion] - payload: 0x00071601abcd63636639623665613165616566313162 -2024-09-06T10:03:24.987Z CNTRLR received protocol version info: - protocol type: Z-Wave - protocol version: 7.22.1 - appl. framework build no.: 43981 - git commit hash: 63636639623665613165616566313162 -2024-09-06T10:03:24.987Z CNTRLR querying controller capabilities... -2024-09-06T10:03:24.988Z SERIAL » 0x01030005f9 (5 bytes) -2024-09-06T10:03:24.989Z DRIVER » [REQ] [GetControllerCapabilities] -2024-09-06T10:03:24.994Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:24.995Z SERIAL « 0x0104010528d7 (6 bytes) -2024-09-06T10:03:24.995Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:24.996Z DRIVER « [RES] [GetControllerCapabilities] - payload: 0x28 -2024-09-06T10:03:24.997Z CNTRLR received controller capabilities: - controller role: Primary - is the SUC: false - started this network: true - SIS is present: false - was real primary: true -2024-09-06T10:03:24.997Z CNTRLR querying serial API setup capabilities... -2024-09-06T10:03:24.998Z SERIAL » 0x0104000b01f1 (6 bytes) -2024-09-06T10:03:24.998Z DRIVER » [REQ] [SerialAPISetup] - command: GetSupportedCommands - payload: 0x01 -2024-09-06T10:03:25.005Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:25.006Z SERIAL « 0x0116010b01ff9f8007800000008000000000000000800085 (24 bytes) -2024-09-06T10:03:25.006Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:25.007Z DRIVER « [RES] [SerialAPISetup] - command: GetSupportedCommands - payload: 0xff9f80078000000080000000000000008000 -2024-09-06T10:03:25.008Z CNTRLR supported serial API setup commands: - · GetSupportedCommands - · SetTxStatusReport - · SetLongRangeMaximumTxPower - · SetPowerlevel - · GetLongRangeMaximumTxPower - · GetPowerlevel - · GetMaximumPayloadSize - · GetLongRangeMaximumPayloadSize - · SetPowerlevel16Bit - · GetPowerlevel16Bit - · GetRFRegion - · SetRFRegion - · SetNodeIDType -2024-09-06T10:03:25.008Z CNTRLR querying max. payload size... -2024-09-06T10:03:25.009Z SERIAL » 0x0104000b10e0 (6 bytes) -2024-09-06T10:03:25.009Z DRIVER » [REQ] [SerialAPISetup] - command: GetMaximumPayloadSize - payload: 0x10 -2024-09-06T10:03:25.014Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:25.015Z SERIAL « 0x0105010b102ece (7 bytes) -2024-09-06T10:03:25.016Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:25.016Z DRIVER « [RES] [SerialAPISetup] - command: GetMaximumPayloadSize - maximum payload size: 46 bytes -2024-09-06T10:03:25.017Z CNTRLR maximum payload size: 46 bytes -2024-09-06T10:03:25.017Z CNTRLR supported Z-Wave features: - · SmartStart -2024-09-06T10:03:25.017Z CNTRLR Querying configured RF region... -2024-09-06T10:03:25.018Z SERIAL » 0x0104000b20d0 (6 bytes) -2024-09-06T10:03:25.018Z DRIVER » [REQ] [SerialAPISetup] - command: GetRFRegion - payload: 0x20 -2024-09-06T10:03:25.023Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:25.024Z SERIAL « 0x0105010b2000d0 (7 bytes) -2024-09-06T10:03:25.024Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:25.025Z DRIVER « [RES] [SerialAPISetup] - command: GetRFRegion - region: Europe -2024-09-06T10:03:25.025Z CNTRLR The controller is using RF region Europe -2024-09-06T10:03:25.025Z CNTRLR Querying configured max. Long Range powerlevel... -2024-09-06T10:03:25.026Z SERIAL » 0x0104000b05f5 (6 bytes) -2024-09-06T10:03:25.026Z DRIVER » [REQ] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - payload: 0x05 -2024-09-06T10:03:25.032Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:25.033Z SERIAL « 0x0106010b05008c7a (8 bytes) -2024-09-06T10:03:25.033Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:25.034Z DRIVER « [RES] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - max. TX power (LR): 14.0 dBm -2024-09-06T10:03:25.034Z CNTRLR The max. LR powerlevel is 14.0 dBm -2024-09-06T10:03:25.034Z CNTRLR Querying configured Long Range channel information... -2024-09-06T10:03:25.035Z SERIAL » 0x010300db27 (5 bytes) -2024-09-06T10:03:25.035Z DRIVER » [REQ] [GetLongRangeChannel] -2024-09-06T10:03:25.041Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:25.041Z SERIAL « 0x010501db001030 (7 bytes) -2024-09-06T10:03:25.041Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:25.042Z DRIVER « [RES] [GetLongRangeChannel] - payload: 0x0010 -2024-09-06T10:03:25.042Z CNTRLR received Z-Wave Long Range channel information: - channel: Unsupported - supports auto channel selection: true -2024-09-06T10:03:25.043Z CNTRLR Performing soft reset... -2024-09-06T10:03:25.043Z SERIAL » 0x01030008f4 (5 bytes) -2024-09-06T10:03:25.043Z DRIVER » [REQ] [SoftReset] -2024-09-06T10:03:25.047Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:25.048Z CNTRLR Waiting for the controller to reconnect... -2024-09-06T10:03:25.048Z DRIVER all queues idle -2024-09-06T10:03:25.160Z SERIAL « 0x0116000a0700010100085e989f556c568f7400031d00003f (24 bytes) -2024-09-06T10:03:25.161Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:25.162Z DRIVER « [REQ] [SerialAPIStarted] - wake up reason: SoftwareReset - watchdog enabled: false - generic device class: 0x01 - specific device class: 0x00 - always listening: false - supports Long Range: false -2024-09-06T10:03:25.163Z CNTRLR reconnected and restarted -2024-09-06T10:03:25.163Z CNTRLR Starting hardware watchdog... -2024-09-06T10:03:25.164Z CNTRLR Switching serial API to 16-bit node IDs... -2024-09-06T10:03:25.164Z CNTRLR Switching serial API to 8-bit node IDs... -2024-09-06T10:03:25.165Z DRIVER all queues busy -2024-09-06T10:03:25.166Z SERIAL » 0x010300d22e (5 bytes) -2024-09-06T10:03:25.167Z DRIVER » [REQ] [StartWatchdog] -2024-09-06T10:03:25.170Z SERIAL » 0x0105000b800273 (7 bytes) -2024-09-06T10:03:25.170Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 16 bit -2024-09-06T10:03:25.172Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:25.176Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:25.177Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T10:03:25.177Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:25.178Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T10:03:25.179Z CNTRLR Switching to 16-bit node IDs successful -2024-09-06T10:03:25.180Z SERIAL » 0x0105000b800170 (7 bytes) -2024-09-06T10:03:25.180Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 8 bit -2024-09-06T10:03:25.185Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:25.186Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T10:03:25.186Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:25.186Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T10:03:25.187Z CNTRLR Switching to 8-bit node IDs successful -2024-09-06T10:03:25.187Z CNTRLR querying controller IDs... -2024-09-06T10:03:25.188Z SERIAL » 0x01030020dc (5 bytes) -2024-09-06T10:03:25.188Z DRIVER » [REQ] [GetControllerId] -2024-09-06T10:03:25.193Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:25.194Z SERIAL « 0x01080120e807928e0124 (10 bytes) -2024-09-06T10:03:25.194Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:25.194Z DRIVER « [RES] [GetControllerId] - home ID: 0xe807928e - own node ID: 1 -2024-09-06T10:03:25.195Z CNTRLR received controller IDs: - home ID: 0xe807928e - own node ID: 1 -2024-09-06T10:03:25.195Z CNTRLR Enabling TX status report... -2024-09-06T10:03:25.195Z SERIAL » 0x0105000b02ff0c (7 bytes) -2024-09-06T10:03:25.196Z DRIVER » [REQ] [SerialAPISetup] - command: SetTxStatusReport - enabled: true -2024-09-06T10:03:25.201Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:25.202Z SERIAL « 0x0105010b0201f3 (7 bytes) -2024-09-06T10:03:25.202Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:25.203Z DRIVER « [RES] [SerialAPISetup] - command: SetTxStatusReport - success: true -2024-09-06T10:03:25.203Z CNTRLR Enabling TX status report successful... -2024-09-06T10:03:25.204Z CNTRLR finding SUC... -2024-09-06T10:03:25.204Z SERIAL » 0x01030056aa (5 bytes) -2024-09-06T10:03:25.204Z DRIVER » [REQ] [GetSUCNodeId] -2024-09-06T10:03:25.210Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:25.210Z SERIAL « 0x0104015600ac (6 bytes) -2024-09-06T10:03:25.210Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:25.211Z DRIVER « [RES] [GetSUCNodeId] - payload: 0x00 -2024-09-06T10:03:25.211Z CNTRLR No SUC present in the network -2024-09-06T10:03:25.212Z CNTRLR There is no SUC/SIS in the network - promoting ourselves... -2024-09-06T10:03:25.212Z SERIAL » 0x01080054010125010384 (10 bytes) -2024-09-06T10:03:25.213Z DRIVER » [REQ] [SetSUCNodeId] - payload: 0x0101250103 -2024-09-06T10:03:25.219Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:25.220Z SERIAL « 0x0104015401af (6 bytes) -2024-09-06T10:03:25.220Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:25.221Z DRIVER « [RES] [SetSUCNodeId] - was executed: true -2024-09-06T10:03:25.221Z CNTRLR Promotion to SUC/SIS succeeded. -2024-09-06T10:03:25.225Z DRIVER all queues idle -2024-09-06T10:03:25.229Z CNTRLR [Node 001] [Manufacturer Specific] manufacturerId: metadata updated -2024-09-06T10:03:25.229Z CNTRLR [Node 001] [Manufacturer Specific] productType: metadata updated -2024-09-06T10:03:25.229Z CNTRLR [Node 001] [Manufacturer Specific] productId: metadata updated -2024-09-06T10:03:25.229Z CNTRLR [Node 001] [+] [Manufacturer Specific] manufacturerId: 0 -2024-09-06T10:03:25.229Z CNTRLR [Node 001] [+] [Manufacturer Specific] productType: 4 -2024-09-06T10:03:25.229Z CNTRLR [Node 001] [+] [Manufacturer Specific] productId: 4 -2024-09-06T10:03:25.230Z CNTRLR [Node 001] [Version] firmwareVersions: metadata updated -2024-09-06T10:03:25.230Z CNTRLR [Node 001] [+] [Version] firmwareVersions: 7.22 -2024-09-06T10:03:25.230Z CNTRLR [Node 001] [Version] zWaveProtocolVersion: metadata updated -2024-09-06T10:03:25.230Z CNTRLR [Node 001] [+] [Version] zWaveProtocolVersion: "7.22.1" -2024-09-06T10:03:25.230Z CNTRLR [Node 001] [Version] sdkVersion: metadata updated -2024-09-06T10:03:25.230Z CNTRLR [Node 001] [+] [Version] sdkVersion: "7.22.1" -2024-09-06T10:03:25.230Z CNTRLR Interview completed -2024-09-06T10:03:25.230Z DRIVER Network key for S0 configured, enabling S0 security manager... -2024-09-06T10:03:25.230Z DRIVER At least one network key for S2 configured, enabling S2 security manager... -2024-09-06T10:03:25.231Z DRIVER At least one network key for Z-Wave Long Range configured, enabling security m - anager... -2024-09-06T10:03:25.231Z DRIVER driver ready -2024-09-06T10:03:25.231Z CNTRLR [Node 001] Beginning interview - last completed stage: None -2024-09-06T10:03:25.232Z CNTRLR [Node 001] new node, doing a full interview... -2024-09-06T10:03:25.232Z CNTRLR » [Node 001] querying protocol info... -2024-09-06T10:03:25.232Z DRIVER all queues busy -2024-09-06T10:03:25.232Z SERIAL » 0x0104004101bb (6 bytes) -2024-09-06T10:03:25.233Z DRIVER » [REQ] [GetNodeProtocolInfo] - payload: 0x01 -2024-09-06T10:03:25.238Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:25.239Z SERIAL « 0x010a0141d3960102010000f2 (12 bytes) -2024-09-06T10:03:25.239Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:25.240Z DRIVER « [RES] [GetNodeProtocolInfo] - payload: 0xd3960102010000 -2024-09-06T10:03:25.240Z CNTRLR « [Node 001] received response for protocol info: - basic device class: Static Controller - generic device class: Remote Controller - specific device class: Unused - node type: Controller - is always listening: true - is frequent listening: false - can route messages: true - supports security: false - supports beaming: true - maximum data rate: 100000 kbps - protocol version: 3 -2024-09-06T10:03:25.240Z CNTRLR [Node 001] Interview stage completed: ProtocolInfo -2024-09-06T10:03:25.241Z DRIVER all queues idle -2024-09-06T10:03:25.242Z CNTRLR [Node 001] Embedded device config loaded -2024-09-06T10:03:25.243Z CNTRLR [Node 001] Interview stage completed: OverwriteConfig -2024-09-06T10:03:25.243Z CNTRLR [Node 001] Interview completed -2024-09-06T10:03:25.243Z CNTRLR [Node 001] The node is ready to be used -2024-09-06T10:03:25.243Z CNTRLR All nodes are ready to be used -2024-09-06T10:03:25.243Z CNTRLR [Node 001] The node is alive. -2024-09-06T10:03:29.936Z DRIVER all queues busy -2024-09-06T10:03:29.938Z SERIAL » 0x0105005081042f (7 bytes) -2024-09-06T10:03:29.939Z DRIVER » [REQ] [SetLearnMode] - callback id: 4 - intent: Inclusion -2024-09-06T10:03:29.945Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:29.947Z SERIAL « 0x0104015001ab (6 bytes) -2024-09-06T10:03:29.947Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:29.948Z DRIVER « [RES] [SetLearnMode] - success: true -2024-09-06T10:03:29.951Z DRIVER all queues idle -2024-09-06T10:03:30.128Z SERIAL « 0x0107005004010200af (9 bytes) -2024-09-06T10:03:30.129Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:30.130Z DRIVER « [REQ] [SetLearnMode] - callback id: 4 - status: Started - assigned node id: 2 -2024-09-06T10:03:30.130Z DRIVER handling request SetLearnMode (80) -2024-09-06T10:03:30.130Z DRIVER 1 handler registered! -2024-09-06T10:03:30.130Z DRIVER invoking handler #0 -2024-09-06T10:03:30.130Z DRIVER the message was handled -2024-09-06T10:03:30.242Z DRIVER all queues busy -2024-09-06T10:03:30.242Z SERIAL » 0x0103003bc7 (5 bytes) -2024-09-06T10:03:30.243Z DRIVER » [REQ] [GetBackgroundRSSI] -2024-09-06T10:03:30.248Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:30.248Z SERIAL « 0x0107013b9bc3c37f26 (9 bytes) -2024-09-06T10:03:30.249Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:30.249Z DRIVER « [RES] [GetBackgroundRSSI] - channel 0: -101 dBm - channel 1: -61 dBm - channel 2: -61 dBm - channel 3: N/A -2024-09-06T10:03:30.250Z DRIVER all queues idle -2024-09-06T10:03:30.648Z SERIAL « 0x01060049100100a1 (8 bytes) -2024-09-06T10:03:30.649Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:30.650Z DRIVER « [REQ] [ApplicationUpdateRequest] - type: SUC_IdChanged - SUC node ID: 1 -2024-09-06T10:03:30.665Z SERIAL « 0x0107005004050200ab (9 bytes) -2024-09-06T10:03:30.665Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:30.666Z DRIVER « [REQ] [SetLearnMode] - callback id: 4 - status: ProtocolDone - assigned node id: 2 -2024-09-06T10:03:30.666Z DRIVER handling request SetLearnMode (80) -2024-09-06T10:03:30.666Z DRIVER 1 handler registered! -2024-09-06T10:03:30.666Z DRIVER invoking handler #0 -2024-09-06T10:03:30.666Z DRIVER the message was handled -2024-09-06T10:03:30.667Z DRIVER waiting for security bootstrapping... -2024-09-06T10:03:30.667Z CNTRLR querying controller IDs... -2024-09-06T10:03:30.667Z DRIVER all queues busy -2024-09-06T10:03:30.668Z SERIAL » 0x01030020dc (5 bytes) -2024-09-06T10:03:30.668Z DRIVER » [REQ] [GetControllerId] -2024-09-06T10:03:30.673Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:30.674Z SERIAL « 0x01080120f41ad2d2023a (10 bytes) -2024-09-06T10:03:30.674Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:30.674Z DRIVER « [RES] [GetControllerId] - home ID: 0xf41ad2d2 - own node ID: 2 -2024-09-06T10:03:30.675Z CNTRLR received controller IDs: - home ID: 0xf41ad2d2 - own node ID: 2 -2024-09-06T10:03:30.675Z DRIVER Joined network with home ID 0xf41ad2d2, switching to new network cache... -2024-09-06T10:03:30.675Z CNTRLR querying controller capabilities... -2024-09-06T10:03:30.676Z SERIAL » 0x01030005f9 (5 bytes) -2024-09-06T10:03:30.676Z DRIVER » [REQ] [GetControllerCapabilities] -2024-09-06T10:03:30.681Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:30.682Z SERIAL « 0x0104010506f9 (6 bytes) -2024-09-06T10:03:30.682Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:30.682Z DRIVER « [RES] [GetControllerCapabilities] - payload: 0x06 -2024-09-06T10:03:30.683Z CNTRLR received controller capabilities: - controller role: Inclusion - is the SUC: false - started this network: false - SIS is present: true - was real primary: false -2024-09-06T10:03:30.683Z CNTRLR querying additional controller information... -2024-09-06T10:03:30.683Z SERIAL » 0x01030002fe (5 bytes) -2024-09-06T10:03:30.683Z DRIVER » [REQ] [GetSerialApiInitData] -2024-09-06T10:03:30.691Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:30.692Z SERIAL « 0x012501020a001d030000000000000000000000000000000000000000000000000 (39 bytes) - 00000000800c5 -2024-09-06T10:03:30.692Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:30.692Z DRIVER « [RES] [GetSerialApiInitData] - payload: 0x0a001d03000000000000000000000000000000000000000000000000000000000 - 800 -2024-09-06T10:03:30.693Z CNTRLR received additional controller information: - Z-Wave API version: 1 (official) - Z-Wave chip type: EFR32ZG23 / ZGM230S - node type Controller - controller role: primary - controller is the SIS: false - controller supports timers: false - Z-Wave Classic nodes: 1, 2 -2024-09-06T10:03:30.694Z CNTRLR [Node 002] [Manufacturer Specific] manufacturerId: metadata updated -2024-09-06T10:03:30.694Z CNTRLR [Node 002] [Manufacturer Specific] productType: metadata updated -2024-09-06T10:03:30.694Z CNTRLR [Node 002] [Manufacturer Specific] productId: metadata updated -2024-09-06T10:03:30.694Z CNTRLR [Node 002] [+] [Manufacturer Specific] manufacturerId: 0 -2024-09-06T10:03:30.694Z CNTRLR [Node 002] [+] [Manufacturer Specific] productType: 4 -2024-09-06T10:03:30.694Z CNTRLR [Node 002] [+] [Manufacturer Specific] productId: 4 -2024-09-06T10:03:30.694Z CNTRLR [Node 002] [Version] firmwareVersions: metadata updated -2024-09-06T10:03:30.694Z CNTRLR [Node 002] [+] [Version] firmwareVersions: 7.22 -2024-09-06T10:03:30.694Z CNTRLR [Node 002] [Version] zWaveProtocolVersion: metadata updated -2024-09-06T10:03:30.695Z CNTRLR [Node 002] [+] [Version] zWaveProtocolVersion: "7.22.1" -2024-09-06T10:03:30.695Z CNTRLR [Node 002] [Version] sdkVersion: metadata updated -2024-09-06T10:03:30.695Z CNTRLR [Node 002] [+] [Version] sdkVersion: "7.22.1" -2024-09-06T10:03:30.695Z CNTRLR Interview completed -2024-09-06T10:03:30.695Z DRIVER all queues idle -2024-09-06T10:03:30.882Z SERIAL « 0x010b00a8000201029f0400da1c (13 bytes) -2024-09-06T10:03:30.883Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:30.885Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -38 dBm - └─[Security2CCKEXGet] -2024-09-06T10:03:30.886Z CNTRLR » [Node 001] querying protocol info... -2024-09-06T10:03:30.886Z DRIVER all queues busy -2024-09-06T10:03:30.887Z SERIAL » 0x0104004101bb (6 bytes) -2024-09-06T10:03:30.888Z DRIVER » [REQ] [GetNodeProtocolInfo] - payload: 0x01 -2024-09-06T10:03:30.897Z SERIAL « [ACK] (0x06) -2024-09-06T10:03:30.898Z SERIAL « 0x010a0141d3960102010000f2 (12 bytes) -2024-09-06T10:03:30.898Z SERIAL » [ACK] (0x06) -2024-09-06T10:03:30.899Z DRIVER « [RES] [GetNodeProtocolInfo] - payload: 0xd3960102010000 -2024-09-06T10:03:30.900Z CNTRLR « [Node 001] received response for protocol info: - basic device class: Static Controller - generic device class: Remote Controller - specific device class: Unused - node type: Controller - is always listening: true - is frequent listening: false - can route messages: true - supports security: false - supports beaming: true - maximum data rate: 100000 kbps - protocol version: 3 -2024-09-06T10:03:30.900Z CNTRLR [Node 001] Interview stage completed: ProtocolInfo -2024-09-06T10:03:30.900Z DRIVER Finished joining network -2024-09-06T10:03:30.901Z DRIVER all queues idle -2024-09-06T10:04:11.389Z DRIVER ███████╗ ██╗ ██╗ █████╗ ██╗ ██╗ ███████╗ ██╗ ███████╗ - ╚══███╔╝ ██║ ██║ ██╔══██╗ ██║ ██║ ██╔════╝ ██║ ██╔════╝ - ███╔╝ █████╗ ██║ █╗ ██║ ███████║ ██║ ██║ █████╗ ██║ ███████╗ - ███╔╝ ╚════╝ ██║███╗██║ ██╔══██║ ╚██╗ ██╔╝ ██╔══╝ ██ ██║ ╚════██║ - ███████╗ ╚███╔███╔╝ ██║ ██║ ╚████╔╝ ███████╗ ╚█████╔╝ ███████║ - ╚══════╝ ╚══╝╚══╝ ╚═╝ ╚═╝ ╚═══╝ ╚══════╝ ╚════╝ ╚══════╝ -2024-09-06T10:04:11.390Z DRIVER version 13.2.0 -2024-09-06T10:04:11.390Z DRIVER -2024-09-06T10:04:11.390Z DRIVER starting driver... -2024-09-06T10:04:11.391Z DRIVER opening serial port /dev/serial/by-id/usb-Silicon_Labs_CP2102N_USB_to_UART_Bri - dge_Controller_ca4d95064355ee118d4d1294de9da576-if00-port0 -2024-09-06T10:04:11.404Z DRIVER serial port opened -2024-09-06T10:04:11.404Z SERIAL » 0x15 (1 bytes) -2024-09-06T10:04:12.412Z DRIVER loading configuration... -2024-09-06T10:04:12.414Z CONFIG version 13.2.0 -2024-09-06T10:04:12.738Z DRIVER beginning interview... -2024-09-06T10:04:12.739Z DRIVER added request handler for AddNodeToNetwork (0x4a)... - 1 registered -2024-09-06T10:04:12.739Z DRIVER added request handler for RemoveNodeFromNetwork (0x4b)... - 1 registered -2024-09-06T10:04:12.739Z DRIVER added request handler for ReplaceFailedNode (0x63)... - 1 registered -2024-09-06T10:04:12.739Z DRIVER added request handler for SetLearnMode (0x50)... - 1 registered -2024-09-06T10:04:12.739Z CNTRLR querying Serial API capabilities... -2024-09-06T10:04:12.741Z SERIAL » 0x01030007fb (5 bytes) -2024-09-06T10:04:12.741Z DRIVER » [REQ] [GetSerialApiCapabilities] -2024-09-06T10:04:12.755Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:12.756Z SERIAL « 0x012b01070716000000040004f6873e88cf2bc05ffbd7fde09700008000808680b (45 bytes) - a0500700000ee7fc000000041 -2024-09-06T10:04:12.756Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:12.757Z DRIVER « [RES] [GetSerialApiCapabilities] - payload: 0x0716000000040004f6873e88cf2bc05ffbd7fde09700008000808680ba0500700 - 000ee7fc0000000 -2024-09-06T10:04:12.758Z CNTRLR received API capabilities: - firmware version: 7.22 - manufacturer ID: 0x00 - product type: 0x04 - product ID: 0x04 - supported functions: - · GetSerialApiInitData (0x02) - · SetApplicationNodeInformation (0x03) - · GetControllerCapabilities (0x05) - · SetSerialApiTimeouts (0x06) - · GetSerialApiCapabilities (0x07) - · SoftReset (0x08) - · GetProtocolVersion (0x09) - · SerialAPIStarted (0x0a) - · SerialAPISetup (0x0b) - · SetRFReceiveMode (0x10) - · SendNodeInformation (0x12) - · SendData (0x13) - · SendDataMulticast (0x14) - · GetControllerVersion (0x15) - · SendDataAbort (0x16) - · FUNC_ID_ZW_GET_RANDOM (0x1c) - · GetControllerId (0x20) - · UNKNOWN_FUNC_MEMORY_GET_BYTE (0x21) - · UNKNOWN_FUNC_MEMORY_PUT_BYTE (0x22) - · UNKNOWN_FUNC_MEMORY_GET_BUFFER (0x23) - · UNKNOWN_FUNC_MEMORY_PUT_BUFFER (0x24) - · EnterBootloader (0x27) - · UNKNOWN_FUNC_UNKNOWN_0x28 (0x28) - · GetNVMId (0x29) - · ExtNVMReadLongBuffer (0x2a) - · ExtNVMReadLongByte (0x2c) - · NVMOperations (0x2e) - · ClearTxTimers (0x37) - · GetTxTimers (0x38) - · ClearNetworkStats (0x39) - · GetNetworkStats (0x3a) - · GetBackgroundRSSI (0x3b) - · SetListenBeforeTalkThreshold (0x3c) - · ExtendedNVMOperations (0x3d) - · RemoveSpecificNodeIdFromNetwork (0x3f) - · GetNodeProtocolInfo (0x41) - · HardReset (0x42) - · FUNC_ID_ZW_REPLICATION_COMMAND_COMPLETE (0x44) - · FUNC_ID_ZW_REPLICATION_SEND_DATA (0x45) - · AssignReturnRoute (0x46) - · DeleteReturnRoute (0x47) - · RequestNodeNeighborUpdate (0x48) - · ApplicationUpdateRequest (0x49) - · AddNodeToNetwork (0x4a) - · RemoveNodeFromNetwork (0x4b) - · AddPrimaryController (0x4d) - · AssignPriorityReturnRoute (0x4f) - · SetLearnMode (0x50) - · AssignSUCReturnRoute (0x51) - · RequestNetworkUpdate (0x53) - · SetSUCNodeId (0x54) - · DeleteSUCReturnRoute (0x55) - · GetSUCNodeId (0x56) - · SendSUCNodeId (0x57) - · AssignPrioritySUCReturnRoute (0x58) - · ExploreRequestInclusion (0x5e) - · ExploreRequestExclusion (0x5f) - · RequestNodeInfo (0x60) - · RemoveFailedNode (0x61) - · IsFailedNode (0x62) - · ReplaceFailedNode (0x63) - · undefined (0x65) - · RequestProtocolCCEncryption (0x68) - · GetRoutingInfo (0x80) - · LockUnlockLastRoute (0x90) - · GetPriorityRoute (0x92) - · SetPriorityRoute (0x93) - · UNKNOWN_FUNC_UNKNOWN_0x98 (0x98) - · VirtualNodeSetNodeInfo (0xa0) - · VirtualNodeSendNodeInfo (0xa2) - · VirtualNodeSetLearnMode (0xa4) - · GetVirtualNodes (0xa5) - · IsVirtualNode (0xa6) - · BridgeApplicationCommand (0xa8) - · SendDataBridge (0xa9) - · SendDataMulticastBridge (0xab) - · GetLibrary (0xbd) - · SendTestFrame (0xbe) - · GetProtocolStatus (0xbf) - · StartWatchdog (0xd2) - · StopWatchdog (0xd3) - · SetMaximumRoutingAttempts (0xd4) - · SetMaxSmartStartInclusionRequestInterval (0xd6) - · undefined (0xd7) - · undefined (0xd8) - · Shutdown (0xd9) - · GetLongRangeNodes (0xda) - · GetLongRangeChannel (0xdb) - · SetLongRangeChannel (0xdc) - · SetLongRangeShadowNodeIDs (0xdd) - · Proprietary_DE (0xde) - · Proprietary_DF (0xdf) - · Proprietary_E7 (0xe7) - · Proprietary_E8 (0xe8) -2024-09-06T10:04:12.759Z CNTRLR querying additional controller information... -2024-09-06T10:04:12.759Z SERIAL » 0x01030002fe (5 bytes) -2024-09-06T10:04:12.760Z DRIVER » [REQ] [GetSerialApiInitData] -2024-09-06T10:04:12.768Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:12.768Z SERIAL « 0x012501020a001d030000000000000000000000000000000000000000000000000 (39 bytes) - 00000000800c5 -2024-09-06T10:04:12.769Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:12.769Z DRIVER « [RES] [GetSerialApiInitData] - payload: 0x0a001d03000000000000000000000000000000000000000000000000000000000 - 800 -2024-09-06T10:04:12.770Z CNTRLR received additional controller information: - Z-Wave API version: 1 (official) - Z-Wave chip type: EFR32ZG23 / ZGM230S - node type Controller - controller role: primary - controller is the SIS: false - controller supports timers: false - Z-Wave Classic nodes: 1, 2 -2024-09-06T10:04:12.770Z CNTRLR querying version info... -2024-09-06T10:04:12.771Z SERIAL » 0x01030015e9 (5 bytes) -2024-09-06T10:04:12.771Z DRIVER » [REQ] [GetControllerVersion] -2024-09-06T10:04:12.777Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:12.777Z SERIAL « 0x011001155a2d5761766520372e3232000797 (18 bytes) -2024-09-06T10:04:12.777Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:12.778Z DRIVER « [RES] [GetControllerVersion] - payload: 0x5a2d5761766520372e32320007 -2024-09-06T10:04:12.778Z CNTRLR received version info: - controller type: Bridge Controller - library version: Z-Wave 7.22 -2024-09-06T10:04:12.779Z CNTRLR querying protocol version info... -2024-09-06T10:04:12.779Z SERIAL » 0x01030009f5 (5 bytes) -2024-09-06T10:04:12.780Z DRIVER » [REQ] [GetProtocolVersion] -2024-09-06T10:04:12.787Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:12.787Z SERIAL « 0x0119010900071601abcd63636639623665613165616566313162c3 (27 bytes) -2024-09-06T10:04:12.788Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:12.788Z DRIVER « [RES] [GetProtocolVersion] - payload: 0x00071601abcd63636639623665613165616566313162 -2024-09-06T10:04:12.789Z CNTRLR received protocol version info: - protocol type: Z-Wave - protocol version: 7.22.1 - appl. framework build no.: 43981 - git commit hash: 63636639623665613165616566313162 -2024-09-06T10:04:12.789Z CNTRLR querying controller capabilities... -2024-09-06T10:04:12.790Z SERIAL » 0x01030005f9 (5 bytes) -2024-09-06T10:04:12.790Z DRIVER » [REQ] [GetControllerCapabilities] -2024-09-06T10:04:12.799Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:12.800Z SERIAL « 0x0104010506f9 (6 bytes) -2024-09-06T10:04:12.800Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:12.800Z DRIVER « [RES] [GetControllerCapabilities] - payload: 0x06 -2024-09-06T10:04:12.801Z CNTRLR received controller capabilities: - controller role: Inclusion - is the SUC: false - started this network: false - SIS is present: true - was real primary: false -2024-09-06T10:04:12.802Z CNTRLR querying serial API setup capabilities... -2024-09-06T10:04:12.803Z SERIAL » 0x0104000b01f1 (6 bytes) -2024-09-06T10:04:12.803Z DRIVER » [REQ] [SerialAPISetup] - command: GetSupportedCommands - payload: 0x01 -2024-09-06T10:04:12.812Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:12.812Z SERIAL « 0x0116010b01ff9f8007800000008000000000000000800085 (24 bytes) -2024-09-06T10:04:12.812Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:12.813Z DRIVER « [RES] [SerialAPISetup] - command: GetSupportedCommands - payload: 0xff9f80078000000080000000000000008000 -2024-09-06T10:04:12.814Z CNTRLR supported serial API setup commands: - · GetSupportedCommands - · SetTxStatusReport - · SetLongRangeMaximumTxPower - · SetPowerlevel - · GetLongRangeMaximumTxPower - · GetPowerlevel - · GetMaximumPayloadSize - · GetLongRangeMaximumPayloadSize - · SetPowerlevel16Bit - · GetPowerlevel16Bit - · GetRFRegion - · SetRFRegion - · SetNodeIDType -2024-09-06T10:04:12.814Z CNTRLR querying max. payload size... -2024-09-06T10:04:12.814Z SERIAL » 0x0104000b10e0 (6 bytes) -2024-09-06T10:04:12.815Z DRIVER » [REQ] [SerialAPISetup] - command: GetMaximumPayloadSize - payload: 0x10 -2024-09-06T10:04:12.821Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:12.821Z SERIAL « 0x0105010b102ece (7 bytes) -2024-09-06T10:04:12.821Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:12.822Z DRIVER « [RES] [SerialAPISetup] - command: GetMaximumPayloadSize - maximum payload size: 46 bytes -2024-09-06T10:04:12.822Z CNTRLR maximum payload size: 46 bytes -2024-09-06T10:04:12.822Z CNTRLR supported Z-Wave features: - · SmartStart -2024-09-06T10:04:12.823Z CNTRLR Querying configured RF region... -2024-09-06T10:04:12.823Z SERIAL » 0x0104000b20d0 (6 bytes) -2024-09-06T10:04:12.824Z DRIVER » [REQ] [SerialAPISetup] - command: GetRFRegion - payload: 0x20 -2024-09-06T10:04:12.829Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:12.829Z SERIAL « 0x0105010b2000d0 (7 bytes) -2024-09-06T10:04:12.829Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:12.830Z DRIVER « [RES] [SerialAPISetup] - command: GetRFRegion - region: Europe -2024-09-06T10:04:12.830Z CNTRLR The controller is using RF region Europe -2024-09-06T10:04:12.830Z CNTRLR Querying configured max. Long Range powerlevel... -2024-09-06T10:04:12.831Z SERIAL » 0x0104000b05f5 (6 bytes) -2024-09-06T10:04:12.831Z DRIVER » [REQ] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - payload: 0x05 -2024-09-06T10:04:12.836Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:12.836Z SERIAL « 0x0106010b05008c7a (8 bytes) -2024-09-06T10:04:12.837Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:12.837Z DRIVER « [RES] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - max. TX power (LR): 14.0 dBm -2024-09-06T10:04:12.838Z CNTRLR The max. LR powerlevel is 14.0 dBm -2024-09-06T10:04:12.838Z CNTRLR Querying configured Long Range channel information... -2024-09-06T10:04:12.839Z SERIAL » 0x010300db27 (5 bytes) -2024-09-06T10:04:12.839Z DRIVER » [REQ] [GetLongRangeChannel] -2024-09-06T10:04:12.844Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:12.845Z SERIAL « 0x010501db001030 (7 bytes) -2024-09-06T10:04:12.845Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:12.845Z DRIVER « [RES] [GetLongRangeChannel] - payload: 0x0010 -2024-09-06T10:04:12.846Z CNTRLR received Z-Wave Long Range channel information: - channel: Unsupported - supports auto channel selection: true -2024-09-06T10:04:12.846Z CNTRLR Performing soft reset... -2024-09-06T10:04:12.846Z SERIAL » 0x01030008f4 (5 bytes) -2024-09-06T10:04:12.847Z DRIVER » [REQ] [SoftReset] -2024-09-06T10:04:12.850Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:12.851Z CNTRLR Waiting for the controller to reconnect... -2024-09-06T10:04:12.851Z DRIVER all queues idle -2024-09-06T10:04:12.967Z SERIAL « 0x0116000a0700010100085e989f556c568f7400031d00003f (24 bytes) -2024-09-06T10:04:12.968Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:12.970Z DRIVER « [REQ] [SerialAPIStarted] - wake up reason: SoftwareReset - watchdog enabled: false - generic device class: 0x01 - specific device class: 0x00 - always listening: false - supports Long Range: false -2024-09-06T10:04:12.972Z CNTRLR reconnected and restarted -2024-09-06T10:04:12.973Z CNTRLR Starting hardware watchdog... -2024-09-06T10:04:12.974Z CNTRLR Switching serial API to 16-bit node IDs... -2024-09-06T10:04:12.975Z CNTRLR Switching serial API to 8-bit node IDs... -2024-09-06T10:04:12.976Z DRIVER all queues busy -2024-09-06T10:04:12.977Z SERIAL » 0x010300d22e (5 bytes) -2024-09-06T10:04:12.978Z DRIVER » [REQ] [StartWatchdog] -2024-09-06T10:04:12.984Z SERIAL » 0x0105000b800273 (7 bytes) -2024-09-06T10:04:12.984Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 16 bit -2024-09-06T10:04:12.985Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:12.989Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:12.990Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T10:04:12.990Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:12.991Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T10:04:12.992Z CNTRLR Switching to 16-bit node IDs successful -2024-09-06T10:04:12.992Z SERIAL » 0x0105000b800170 (7 bytes) -2024-09-06T10:04:12.993Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 8 bit -2024-09-06T10:04:12.998Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:12.999Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T10:04:12.999Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:13.000Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T10:04:13.001Z CNTRLR Switching to 8-bit node IDs successful -2024-09-06T10:04:13.001Z CNTRLR querying controller IDs... -2024-09-06T10:04:13.002Z SERIAL » 0x01030020dc (5 bytes) -2024-09-06T10:04:13.002Z DRIVER » [REQ] [GetControllerId] -2024-09-06T10:04:13.007Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:13.008Z SERIAL « 0x01080120f41ad2d2023a (10 bytes) -2024-09-06T10:04:13.009Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:13.009Z DRIVER « [RES] [GetControllerId] - home ID: 0xf41ad2d2 - own node ID: 2 -2024-09-06T10:04:13.010Z CNTRLR received controller IDs: - home ID: 0xf41ad2d2 - own node ID: 2 -2024-09-06T10:04:13.010Z CNTRLR Enabling TX status report... -2024-09-06T10:04:13.011Z SERIAL » 0x0105000b02ff0c (7 bytes) -2024-09-06T10:04:13.012Z DRIVER » [REQ] [SerialAPISetup] - command: SetTxStatusReport - enabled: true -2024-09-06T10:04:13.017Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:13.017Z SERIAL « 0x0105010b0201f3 (7 bytes) -2024-09-06T10:04:13.018Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:13.018Z DRIVER « [RES] [SerialAPISetup] - command: SetTxStatusReport - success: true -2024-09-06T10:04:13.019Z CNTRLR Enabling TX status report successful... -2024-09-06T10:04:13.019Z CNTRLR finding SUC... -2024-09-06T10:04:13.020Z SERIAL » 0x01030056aa (5 bytes) -2024-09-06T10:04:13.020Z DRIVER » [REQ] [GetSUCNodeId] -2024-09-06T10:04:13.025Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:13.026Z SERIAL « 0x0104015601ad (6 bytes) -2024-09-06T10:04:13.026Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:13.027Z DRIVER « [RES] [GetSUCNodeId] - payload: 0x01 -2024-09-06T10:04:13.028Z CNTRLR SUC has node ID 1 -2024-09-06T10:04:13.028Z DRIVER all queues idle -2024-09-06T10:04:13.039Z DRIVER Cache file for homeId 0xf41ad2d2 found, attempting to restore the network from - cache... -2024-09-06T10:04:13.047Z CNTRLR [Node 002] Embedded device config loaded -2024-09-06T10:04:13.047Z DRIVER Restoring the network from cache was successful! -2024-09-06T10:04:13.049Z CNTRLR [Node 002] [Manufacturer Specific] manufacturerId: metadata updated -2024-09-06T10:04:13.049Z CNTRLR [Node 002] [Manufacturer Specific] productType: metadata updated -2024-09-06T10:04:13.049Z CNTRLR [Node 002] [Manufacturer Specific] productId: metadata updated -2024-09-06T10:04:13.050Z CNTRLR [Node 002] [~] [Manufacturer Specific] manufacturerId: 0 => 0 -2024-09-06T10:04:13.050Z CNTRLR [Node 002] [~] [Manufacturer Specific] productType: 4 => 4 -2024-09-06T10:04:13.050Z CNTRLR [Node 002] [~] [Manufacturer Specific] productId: 4 => 4 -2024-09-06T10:04:13.050Z CNTRLR [Node 002] [Version] firmwareVersions: metadata updated -2024-09-06T10:04:13.050Z CNTRLR [Node 002] [~] [Version] firmwareVersions: 7.22 => 7.22 -2024-09-06T10:04:13.051Z CNTRLR [Node 002] [Version] zWaveProtocolVersion: metadata updated -2024-09-06T10:04:13.051Z CNTRLR [Node 002] [~] [Version] zWaveProtocolVersion: "7.22.1" => "7.22.1" -2024-09-06T10:04:13.051Z CNTRLR [Node 002] [Version] sdkVersion: metadata updated -2024-09-06T10:04:13.051Z CNTRLR [Node 002] [~] [Version] sdkVersion: "7.22.1" => "7.22.1" -2024-09-06T10:04:13.051Z CNTRLR Interview completed -2024-09-06T10:04:13.051Z DRIVER No network key for S0 found in cache, communication with secure (S0) devices w - on't work! -2024-09-06T10:04:13.052Z DRIVER No network key for S2 found in cache, communication with secure (S2) devices w - on't work! -2024-09-06T10:04:13.052Z DRIVER driver ready -2024-09-06T10:04:13.052Z CNTRLR [Node 002] Beginning interview - last completed stage: None -2024-09-06T10:04:13.052Z CNTRLR [Node 002] new node, doing a full interview... -2024-09-06T10:04:13.053Z CNTRLR » [Node 002] querying protocol info... -2024-09-06T10:04:13.054Z DRIVER all queues busy -2024-09-06T10:04:13.054Z SERIAL » 0x0104004102b8 (6 bytes) -2024-09-06T10:04:13.055Z DRIVER » [REQ] [GetNodeProtocolInfo] - payload: 0x02 -2024-09-06T10:04:13.060Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:13.061Z SERIAL « 0x010a0141d3960102010000f2 (12 bytes) -2024-09-06T10:04:13.061Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:13.061Z DRIVER « [RES] [GetNodeProtocolInfo] - payload: 0xd3960102010000 -2024-09-06T10:04:13.062Z CNTRLR « [Node 002] received response for protocol info: - basic device class: Static Controller - generic device class: Remote Controller - specific device class: Unused - node type: Controller - is always listening: true - is frequent listening: false - can route messages: true - supports security: false - supports beaming: true - maximum data rate: 100000 kbps - protocol version: 3 -2024-09-06T10:04:13.062Z CNTRLR [Node 002] Interview stage completed: ProtocolInfo -2024-09-06T10:04:13.063Z DRIVER all queues idle -2024-09-06T10:04:13.065Z CNTRLR [Node 002] Embedded device config loaded -2024-09-06T10:04:13.065Z CNTRLR [Node 002] Interview stage completed: OverwriteConfig -2024-09-06T10:04:13.066Z CNTRLR [Node 002] Interview completed -2024-09-06T10:04:13.066Z CNTRLR [Node 002] The node is ready to be used -2024-09-06T10:04:13.067Z CNTRLR [Node 002] The node is alive. -2024-09-06T10:04:13.067Z CNTRLR » [Node 001] querying protocol info... -2024-09-06T10:04:13.067Z DRIVER all queues busy -2024-09-06T10:04:13.067Z SERIAL » 0x0104004101bb (6 bytes) -2024-09-06T10:04:13.068Z DRIVER » [REQ] [GetNodeProtocolInfo] - payload: 0x01 -2024-09-06T10:04:13.077Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:13.077Z SERIAL « 0x010a0141d3960102010000f2 (12 bytes) -2024-09-06T10:04:13.077Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:13.077Z DRIVER « [RES] [GetNodeProtocolInfo] - payload: 0xd3960102010000 -2024-09-06T10:04:13.078Z CNTRLR « [Node 001] received response for protocol info: - basic device class: Static Controller - generic device class: Remote Controller - specific device class: Unused - node type: Controller - is always listening: true - is frequent listening: false - can route messages: true - supports security: false - supports beaming: true - maximum data rate: 100000 kbps - protocol version: 3 -2024-09-06T10:04:13.078Z CNTRLR [Node 001] Interview stage completed: ProtocolInfo -2024-09-06T10:04:13.078Z CNTRLR Determining node status: 1 -2024-09-06T10:04:13.079Z CNTRLR » [Node 001] pinging the node... -2024-09-06T10:04:13.081Z SERIAL » 0x010d00a9020101002500000000017d (15 bytes) -2024-09-06T10:04:13.081Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 1 - └─[NoOperationCC] -2024-09-06T10:04:13.086Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:13.088Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T10:04:13.089Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:13.089Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T10:04:13.110Z SERIAL « 0x011d00a90100000100d97f7f7f7f00000300000000030100007f7f7f7f7fec (31 bytes) -2024-09-06T10:04:13.111Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:13.112Z DRIVER « [REQ] [SendDataBridge] - callback id: 1 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -39 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T10:04:13.113Z CNTRLR [Node 001] The node is alive. -2024-09-06T10:04:13.113Z CNTRLR « [Node 001] ping successful -2024-09-06T10:04:13.117Z DRIVER all queues idle -2024-09-06T10:04:18.052Z CNTRLR Updating the controller NIF... -2024-09-06T10:04:18.053Z DRIVER all queues busy -2024-09-06T10:04:18.055Z SERIAL » 0x010f0003010100085e989f556c568f7436 (17 bytes) -2024-09-06T10:04:18.056Z DRIVER » [REQ] [SetApplicationNodeInformation] - is listening: true - generic device class: 0x01 - specific device class: 0x00 - supported CCs: - · Z-Wave Plus Info - · Security - · Security 2 - · Transport Service - · Supervision - · CRC-16 Encapsulation - · Multi Command - · Inclusion Controller - controlled CCs: -2024-09-06T10:04:18.062Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:18.064Z CNTRLR performing hard reset... -2024-09-06T10:04:18.066Z SERIAL » 0x0104004202bb (6 bytes) -2024-09-06T10:04:18.067Z DRIVER » [REQ] [HardReset] - callback id: 2 -2024-09-06T10:04:18.071Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:18.092Z SERIAL « 0x0104004202bb (6 bytes) -2024-09-06T10:04:18.093Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:18.094Z DRIVER « [REQ] [HardReset] - callback id: 2 -2024-09-06T10:04:18.096Z CNTRLR hard reset succeeded -2024-09-06T10:04:18.096Z CNTRLR querying Serial API capabilities... -2024-09-06T10:04:18.098Z SERIAL » 0x01030007fb (5 bytes) -2024-09-06T10:04:18.099Z DRIVER » [REQ] [GetSerialApiCapabilities] -2024-09-06T10:04:18.108Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:18.109Z SERIAL « 0x012b01070716000000040004f6873e88cf2bc05ffbd7fde09700008000808680b (45 bytes) - a0500700000ee7fc000000041 -2024-09-06T10:04:18.110Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:18.111Z DRIVER « [RES] [GetSerialApiCapabilities] - payload: 0x0716000000040004f6873e88cf2bc05ffbd7fde09700008000808680ba0500700 - 000ee7fc0000000 -2024-09-06T10:04:18.112Z CNTRLR received API capabilities: - firmware version: 7.22 - manufacturer ID: 0x00 - product type: 0x04 - product ID: 0x04 - supported functions: - · GetSerialApiInitData (0x02) - · SetApplicationNodeInformation (0x03) - · GetControllerCapabilities (0x05) - · SetSerialApiTimeouts (0x06) - · GetSerialApiCapabilities (0x07) - · SoftReset (0x08) - · GetProtocolVersion (0x09) - · SerialAPIStarted (0x0a) - · SerialAPISetup (0x0b) - · SetRFReceiveMode (0x10) - · SendNodeInformation (0x12) - · SendData (0x13) - · SendDataMulticast (0x14) - · GetControllerVersion (0x15) - · SendDataAbort (0x16) - · FUNC_ID_ZW_GET_RANDOM (0x1c) - · GetControllerId (0x20) - · UNKNOWN_FUNC_MEMORY_GET_BYTE (0x21) - · UNKNOWN_FUNC_MEMORY_PUT_BYTE (0x22) - · UNKNOWN_FUNC_MEMORY_GET_BUFFER (0x23) - · UNKNOWN_FUNC_MEMORY_PUT_BUFFER (0x24) - · EnterBootloader (0x27) - · UNKNOWN_FUNC_UNKNOWN_0x28 (0x28) - · GetNVMId (0x29) - · ExtNVMReadLongBuffer (0x2a) - · ExtNVMReadLongByte (0x2c) - · NVMOperations (0x2e) - · ClearTxTimers (0x37) - · GetTxTimers (0x38) - · ClearNetworkStats (0x39) - · GetNetworkStats (0x3a) - · GetBackgroundRSSI (0x3b) - · SetListenBeforeTalkThreshold (0x3c) - · ExtendedNVMOperations (0x3d) - · RemoveSpecificNodeIdFromNetwork (0x3f) - · GetNodeProtocolInfo (0x41) - · HardReset (0x42) - · FUNC_ID_ZW_REPLICATION_COMMAND_COMPLETE (0x44) - · FUNC_ID_ZW_REPLICATION_SEND_DATA (0x45) - · AssignReturnRoute (0x46) - · DeleteReturnRoute (0x47) - · RequestNodeNeighborUpdate (0x48) - · ApplicationUpdateRequest (0x49) - · AddNodeToNetwork (0x4a) - · RemoveNodeFromNetwork (0x4b) - · AddPrimaryController (0x4d) - · AssignPriorityReturnRoute (0x4f) - · SetLearnMode (0x50) - · AssignSUCReturnRoute (0x51) - · RequestNetworkUpdate (0x53) - · SetSUCNodeId (0x54) - · DeleteSUCReturnRoute (0x55) - · GetSUCNodeId (0x56) - · SendSUCNodeId (0x57) - · AssignPrioritySUCReturnRoute (0x58) - · ExploreRequestInclusion (0x5e) - · ExploreRequestExclusion (0x5f) - · RequestNodeInfo (0x60) - · RemoveFailedNode (0x61) - · IsFailedNode (0x62) - · ReplaceFailedNode (0x63) - · undefined (0x65) - · RequestProtocolCCEncryption (0x68) - · GetRoutingInfo (0x80) - · LockUnlockLastRoute (0x90) - · GetPriorityRoute (0x92) - · SetPriorityRoute (0x93) - · UNKNOWN_FUNC_UNKNOWN_0x98 (0x98) - · VirtualNodeSetNodeInfo (0xa0) - · VirtualNodeSendNodeInfo (0xa2) - · VirtualNodeSetLearnMode (0xa4) - · GetVirtualNodes (0xa5) - · IsVirtualNode (0xa6) - · BridgeApplicationCommand (0xa8) - · SendDataBridge (0xa9) - · SendDataMulticastBridge (0xab) - · GetLibrary (0xbd) - · SendTestFrame (0xbe) - · GetProtocolStatus (0xbf) - · StartWatchdog (0xd2) - · StopWatchdog (0xd3) - · SetMaximumRoutingAttempts (0xd4) - · SetMaxSmartStartInclusionRequestInterval (0xd6) - · undefined (0xd7) - · undefined (0xd8) - · Shutdown (0xd9) - · GetLongRangeNodes (0xda) - · GetLongRangeChannel (0xdb) - · SetLongRangeChannel (0xdc) - · SetLongRangeShadowNodeIDs (0xdd) - · Proprietary_DE (0xde) - · Proprietary_DF (0xdf) - · Proprietary_E7 (0xe7) - · Proprietary_E8 (0xe8) -2024-09-06T10:04:18.113Z CNTRLR querying additional controller information... -2024-09-06T10:04:18.114Z SERIAL » 0x01030002fe (5 bytes) -2024-09-06T10:04:18.115Z DRIVER » [REQ] [GetSerialApiInitData] -2024-09-06T10:04:18.123Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:18.124Z SERIAL « 0x012501020a001d010000000000000000000000000000000000000000000000000 (39 bytes) - 00000000800c7 -2024-09-06T10:04:18.125Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:18.126Z DRIVER « [RES] [GetSerialApiInitData] - payload: 0x0a001d01000000000000000000000000000000000000000000000000000000000 - 800 -2024-09-06T10:04:18.127Z CNTRLR received additional controller information: - Z-Wave API version: 1 (official) - Z-Wave chip type: EFR32ZG23 / ZGM230S - node type Controller - controller role: primary - controller is the SIS: false - controller supports timers: false - Z-Wave Classic nodes: 1 -2024-09-06T10:04:18.128Z CNTRLR querying version info... -2024-09-06T10:04:18.129Z SERIAL » 0x01030015e9 (5 bytes) -2024-09-06T10:04:18.129Z DRIVER » [REQ] [GetControllerVersion] -2024-09-06T10:04:18.135Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:18.135Z SERIAL « 0x011001155a2d5761766520372e3232000797 (18 bytes) -2024-09-06T10:04:18.136Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:18.136Z DRIVER « [RES] [GetControllerVersion] - payload: 0x5a2d5761766520372e32320007 -2024-09-06T10:04:18.137Z CNTRLR received version info: - controller type: Bridge Controller - library version: Z-Wave 7.22 -2024-09-06T10:04:18.137Z CNTRLR querying protocol version info... -2024-09-06T10:04:18.138Z SERIAL » 0x01030009f5 (5 bytes) -2024-09-06T10:04:18.138Z DRIVER » [REQ] [GetProtocolVersion] -2024-09-06T10:04:18.145Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:18.146Z SERIAL « 0x0119010900071601abcd63636639623665613165616566313162c3 (27 bytes) -2024-09-06T10:04:18.146Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:18.146Z DRIVER « [RES] [GetProtocolVersion] - payload: 0x00071601abcd63636639623665613165616566313162 -2024-09-06T10:04:18.147Z CNTRLR received protocol version info: - protocol type: Z-Wave - protocol version: 7.22.1 - appl. framework build no.: 43981 - git commit hash: 63636639623665613165616566313162 -2024-09-06T10:04:18.147Z CNTRLR querying controller capabilities... -2024-09-06T10:04:18.147Z SERIAL » 0x01030005f9 (5 bytes) -2024-09-06T10:04:18.148Z DRIVER » [REQ] [GetControllerCapabilities] -2024-09-06T10:04:18.152Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:18.153Z SERIAL « 0x0104010528d7 (6 bytes) -2024-09-06T10:04:18.153Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:18.153Z DRIVER « [RES] [GetControllerCapabilities] - payload: 0x28 -2024-09-06T10:04:18.153Z CNTRLR received controller capabilities: - controller role: Primary - is the SUC: false - started this network: true - SIS is present: false - was real primary: true -2024-09-06T10:04:18.154Z CNTRLR querying serial API setup capabilities... -2024-09-06T10:04:18.154Z SERIAL » 0x0104000b01f1 (6 bytes) -2024-09-06T10:04:18.154Z DRIVER » [REQ] [SerialAPISetup] - command: GetSupportedCommands - payload: 0x01 -2024-09-06T10:04:18.161Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:18.161Z SERIAL « 0x0116010b01ff9f8007800000008000000000000000800085 (24 bytes) -2024-09-06T10:04:18.161Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:18.162Z DRIVER « [RES] [SerialAPISetup] - command: GetSupportedCommands - payload: 0xff9f80078000000080000000000000008000 -2024-09-06T10:04:18.162Z CNTRLR supported serial API setup commands: - · GetSupportedCommands - · SetTxStatusReport - · SetLongRangeMaximumTxPower - · SetPowerlevel - · GetLongRangeMaximumTxPower - · GetPowerlevel - · GetMaximumPayloadSize - · GetLongRangeMaximumPayloadSize - · SetPowerlevel16Bit - · GetPowerlevel16Bit - · GetRFRegion - · SetRFRegion - · SetNodeIDType -2024-09-06T10:04:18.162Z CNTRLR querying max. payload size... -2024-09-06T10:04:18.163Z SERIAL » 0x0104000b10e0 (6 bytes) -2024-09-06T10:04:18.163Z DRIVER » [REQ] [SerialAPISetup] - command: GetMaximumPayloadSize - payload: 0x10 -2024-09-06T10:04:18.168Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:18.169Z SERIAL « 0x0105010b102ece (7 bytes) -2024-09-06T10:04:18.169Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:18.170Z DRIVER « [RES] [SerialAPISetup] - command: GetMaximumPayloadSize - maximum payload size: 46 bytes -2024-09-06T10:04:18.170Z CNTRLR maximum payload size: 46 bytes -2024-09-06T10:04:18.170Z CNTRLR supported Z-Wave features: - · SmartStart -2024-09-06T10:04:18.171Z CNTRLR Querying configured RF region... -2024-09-06T10:04:18.171Z SERIAL » 0x0104000b20d0 (6 bytes) -2024-09-06T10:04:18.172Z DRIVER » [REQ] [SerialAPISetup] - command: GetRFRegion - payload: 0x20 -2024-09-06T10:04:18.177Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:18.177Z SERIAL « 0x0105010b2000d0 (7 bytes) -2024-09-06T10:04:18.177Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:18.178Z DRIVER « [RES] [SerialAPISetup] - command: GetRFRegion - region: Europe -2024-09-06T10:04:18.178Z CNTRLR The controller is using RF region Europe -2024-09-06T10:04:18.179Z CNTRLR Querying configured max. Long Range powerlevel... -2024-09-06T10:04:18.179Z SERIAL » 0x0104000b05f5 (6 bytes) -2024-09-06T10:04:18.180Z DRIVER » [REQ] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - payload: 0x05 -2024-09-06T10:04:18.185Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:18.186Z SERIAL « 0x0106010b05008c7a (8 bytes) -2024-09-06T10:04:18.186Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:18.186Z DRIVER « [RES] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - max. TX power (LR): 14.0 dBm -2024-09-06T10:04:18.187Z CNTRLR The max. LR powerlevel is 14.0 dBm -2024-09-06T10:04:18.187Z CNTRLR Querying configured Long Range channel information... -2024-09-06T10:04:18.188Z SERIAL » 0x010300db27 (5 bytes) -2024-09-06T10:04:18.188Z DRIVER » [REQ] [GetLongRangeChannel] -2024-09-06T10:04:18.194Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:18.195Z SERIAL « 0x010501db001030 (7 bytes) -2024-09-06T10:04:18.195Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:18.196Z DRIVER « [RES] [GetLongRangeChannel] - payload: 0x0010 -2024-09-06T10:04:18.196Z CNTRLR received Z-Wave Long Range channel information: - channel: Unsupported - supports auto channel selection: true -2024-09-06T10:04:18.196Z CNTRLR Performing soft reset... -2024-09-06T10:04:18.197Z SERIAL » 0x01030008f4 (5 bytes) -2024-09-06T10:04:18.197Z DRIVER » [REQ] [SoftReset] -2024-09-06T10:04:18.201Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:18.202Z CNTRLR Waiting for the controller to reconnect... -2024-09-06T10:04:18.202Z DRIVER all queues idle -2024-09-06T10:04:18.308Z SERIAL « 0x0116000a0700010100085e989f556c568f7400031d00003f (24 bytes) -2024-09-06T10:04:18.309Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:18.311Z DRIVER « [REQ] [SerialAPIStarted] - wake up reason: SoftwareReset - watchdog enabled: false - generic device class: 0x01 - specific device class: 0x00 - always listening: false - supports Long Range: false -2024-09-06T10:04:18.311Z CNTRLR reconnected and restarted -2024-09-06T10:04:18.312Z CNTRLR Starting hardware watchdog... -2024-09-06T10:04:18.312Z CNTRLR Switching serial API to 16-bit node IDs... -2024-09-06T10:04:18.313Z CNTRLR Switching serial API to 8-bit node IDs... -2024-09-06T10:04:18.313Z DRIVER all queues busy -2024-09-06T10:04:18.315Z SERIAL » 0x010300d22e (5 bytes) -2024-09-06T10:04:18.316Z DRIVER » [REQ] [StartWatchdog] -2024-09-06T10:04:18.318Z SERIAL » 0x0105000b800273 (7 bytes) -2024-09-06T10:04:18.319Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 16 bit -2024-09-06T10:04:18.321Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:18.324Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:18.325Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T10:04:18.325Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:18.325Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T10:04:18.326Z CNTRLR Switching to 16-bit node IDs successful -2024-09-06T10:04:18.326Z SERIAL » 0x0105000b800170 (7 bytes) -2024-09-06T10:04:18.326Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 8 bit -2024-09-06T10:04:18.332Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:18.333Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T10:04:18.333Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:18.333Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T10:04:18.334Z CNTRLR Switching to 8-bit node IDs successful -2024-09-06T10:04:18.335Z CNTRLR querying controller IDs... -2024-09-06T10:04:18.335Z SERIAL » 0x01030020dc (5 bytes) -2024-09-06T10:04:18.336Z DRIVER » [REQ] [GetControllerId] -2024-09-06T10:04:18.341Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:18.342Z SERIAL « 0x01080120ddd877f40151 (10 bytes) -2024-09-06T10:04:18.342Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:18.343Z DRIVER « [RES] [GetControllerId] - home ID: 0xddd877f4 - own node ID: 1 -2024-09-06T10:04:18.343Z CNTRLR received controller IDs: - home ID: 0xddd877f4 - own node ID: 1 -2024-09-06T10:04:18.344Z CNTRLR Enabling TX status report... -2024-09-06T10:04:18.344Z SERIAL » 0x0105000b02ff0c (7 bytes) -2024-09-06T10:04:18.345Z DRIVER » [REQ] [SerialAPISetup] - command: SetTxStatusReport - enabled: true -2024-09-06T10:04:18.350Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:18.350Z SERIAL « 0x0105010b0201f3 (7 bytes) -2024-09-06T10:04:18.350Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:18.351Z DRIVER « [RES] [SerialAPISetup] - command: SetTxStatusReport - success: true -2024-09-06T10:04:18.351Z CNTRLR Enabling TX status report successful... -2024-09-06T10:04:18.351Z CNTRLR finding SUC... -2024-09-06T10:04:18.352Z SERIAL » 0x01030056aa (5 bytes) -2024-09-06T10:04:18.352Z DRIVER » [REQ] [GetSUCNodeId] -2024-09-06T10:04:18.357Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:18.358Z SERIAL « 0x0104015600ac (6 bytes) -2024-09-06T10:04:18.358Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:18.359Z DRIVER « [RES] [GetSUCNodeId] - payload: 0x00 -2024-09-06T10:04:18.359Z CNTRLR No SUC present in the network -2024-09-06T10:04:18.359Z CNTRLR There is no SUC/SIS in the network - promoting ourselves... -2024-09-06T10:04:18.360Z SERIAL » 0x01080054010125010384 (10 bytes) -2024-09-06T10:04:18.360Z DRIVER » [REQ] [SetSUCNodeId] - payload: 0x0101250103 -2024-09-06T10:04:18.367Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:18.368Z SERIAL « 0x0104015401af (6 bytes) -2024-09-06T10:04:18.368Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:18.369Z DRIVER « [RES] [SetSUCNodeId] - was executed: true -2024-09-06T10:04:18.370Z CNTRLR Promotion to SUC/SIS succeeded. -2024-09-06T10:04:18.370Z DRIVER all queues idle -2024-09-06T10:04:18.374Z CNTRLR [Node 001] [Manufacturer Specific] manufacturerId: metadata updated -2024-09-06T10:04:18.374Z CNTRLR [Node 001] [Manufacturer Specific] productType: metadata updated -2024-09-06T10:04:18.374Z CNTRLR [Node 001] [Manufacturer Specific] productId: metadata updated -2024-09-06T10:04:18.374Z CNTRLR [Node 001] [+] [Manufacturer Specific] manufacturerId: 0 -2024-09-06T10:04:18.374Z CNTRLR [Node 001] [+] [Manufacturer Specific] productType: 4 -2024-09-06T10:04:18.374Z CNTRLR [Node 001] [+] [Manufacturer Specific] productId: 4 -2024-09-06T10:04:18.374Z CNTRLR [Node 001] [Version] firmwareVersions: metadata updated -2024-09-06T10:04:18.374Z CNTRLR [Node 001] [+] [Version] firmwareVersions: 7.22 -2024-09-06T10:04:18.375Z CNTRLR [Node 001] [Version] zWaveProtocolVersion: metadata updated -2024-09-06T10:04:18.375Z CNTRLR [Node 001] [+] [Version] zWaveProtocolVersion: "7.22.1" -2024-09-06T10:04:18.375Z CNTRLR [Node 001] [Version] sdkVersion: metadata updated -2024-09-06T10:04:18.375Z CNTRLR [Node 001] [+] [Version] sdkVersion: "7.22.1" -2024-09-06T10:04:18.375Z CNTRLR Interview completed -2024-09-06T10:04:18.375Z DRIVER Network key for S0 configured, enabling S0 security manager... -2024-09-06T10:04:18.375Z DRIVER At least one network key for S2 configured, enabling S2 security manager... -2024-09-06T10:04:18.376Z DRIVER At least one network key for Z-Wave Long Range configured, enabling security m - anager... -2024-09-06T10:04:18.376Z DRIVER driver ready -2024-09-06T10:04:18.376Z CNTRLR [Node 001] Beginning interview - last completed stage: None -2024-09-06T10:04:18.376Z CNTRLR [Node 001] new node, doing a full interview... -2024-09-06T10:04:18.376Z CNTRLR » [Node 001] querying protocol info... -2024-09-06T10:04:18.377Z DRIVER all queues busy -2024-09-06T10:04:18.377Z SERIAL » 0x0104004101bb (6 bytes) -2024-09-06T10:04:18.377Z DRIVER » [REQ] [GetNodeProtocolInfo] - payload: 0x01 -2024-09-06T10:04:18.382Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:18.383Z SERIAL « 0x010a0141d3960102010000f2 (12 bytes) -2024-09-06T10:04:18.383Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:18.383Z DRIVER « [RES] [GetNodeProtocolInfo] - payload: 0xd3960102010000 -2024-09-06T10:04:18.384Z CNTRLR « [Node 001] received response for protocol info: - basic device class: Static Controller - generic device class: Remote Controller - specific device class: Unused - node type: Controller - is always listening: true - is frequent listening: false - can route messages: true - supports security: false - supports beaming: true - maximum data rate: 100000 kbps - protocol version: 3 -2024-09-06T10:04:18.384Z CNTRLR [Node 001] Interview stage completed: ProtocolInfo -2024-09-06T10:04:18.385Z DRIVER all queues idle -2024-09-06T10:04:18.386Z CNTRLR [Node 001] Embedded device config loaded -2024-09-06T10:04:18.386Z CNTRLR [Node 001] Interview stage completed: OverwriteConfig -2024-09-06T10:04:18.386Z CNTRLR [Node 001] Interview completed -2024-09-06T10:04:18.386Z CNTRLR [Node 001] The node is ready to be used -2024-09-06T10:04:18.387Z CNTRLR All nodes are ready to be used -2024-09-06T10:04:18.387Z CNTRLR [Node 001] The node is alive. -2024-09-06T10:04:23.098Z DRIVER all queues busy -2024-09-06T10:04:23.100Z SERIAL » 0x0105005081042f (7 bytes) -2024-09-06T10:04:23.101Z DRIVER » [REQ] [SetLearnMode] - callback id: 4 - intent: Inclusion -2024-09-06T10:04:23.107Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:23.108Z SERIAL « 0x0104015001ab (6 bytes) -2024-09-06T10:04:23.109Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:23.110Z DRIVER « [RES] [SetLearnMode] - success: true -2024-09-06T10:04:23.112Z DRIVER all queues idle -2024-09-06T10:04:23.284Z SERIAL « 0x0107005004010200af (9 bytes) -2024-09-06T10:04:23.285Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:23.285Z DRIVER « [REQ] [SetLearnMode] - callback id: 4 - status: Started - assigned node id: 2 -2024-09-06T10:04:23.285Z DRIVER handling request SetLearnMode (80) -2024-09-06T10:04:23.286Z DRIVER 1 handler registered! -2024-09-06T10:04:23.286Z DRIVER invoking handler #0 -2024-09-06T10:04:23.286Z DRIVER the message was handled -2024-09-06T10:04:23.386Z DRIVER all queues busy -2024-09-06T10:04:23.387Z SERIAL » 0x0103003bc7 (5 bytes) -2024-09-06T10:04:23.388Z DRIVER » [REQ] [GetBackgroundRSSI] -2024-09-06T10:04:23.393Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:23.393Z SERIAL « 0x0107013bf197977f4c (9 bytes) -2024-09-06T10:04:23.394Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:23.394Z DRIVER « [RES] [GetBackgroundRSSI] - channel 0: -15 dBm - channel 1: -105 dBm - channel 2: -105 dBm - channel 3: N/A -2024-09-06T10:04:23.395Z DRIVER all queues idle -2024-09-06T10:04:23.806Z SERIAL « 0x01060049100100a1 (8 bytes) -2024-09-06T10:04:23.806Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:23.807Z DRIVER « [REQ] [ApplicationUpdateRequest] - type: SUC_IdChanged - SUC node ID: 1 -2024-09-06T10:04:23.827Z SERIAL « 0x0107005004050200ab (9 bytes) -2024-09-06T10:04:23.827Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:23.831Z DRIVER « [REQ] [SetLearnMode] - callback id: 4 - status: ProtocolDone - assigned node id: 2 -2024-09-06T10:04:23.832Z DRIVER handling request SetLearnMode (80) -2024-09-06T10:04:23.832Z DRIVER 1 handler registered! -2024-09-06T10:04:23.832Z DRIVER invoking handler #0 -2024-09-06T10:04:23.832Z DRIVER the message was handled -2024-09-06T10:04:23.833Z DRIVER waiting for security bootstrapping... -2024-09-06T10:04:33.832Z CNTRLR querying controller IDs... -2024-09-06T10:04:33.833Z DRIVER all queues busy -2024-09-06T10:04:33.833Z SERIAL » 0x01030020dc (5 bytes) -2024-09-06T10:04:33.834Z DRIVER » [REQ] [GetControllerId] -2024-09-06T10:04:33.893Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:33.894Z SERIAL « 0x01080120d1f692e50284 (10 bytes) -2024-09-06T10:04:33.894Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:33.896Z DRIVER « [RES] [GetControllerId] - home ID: 0xd1f692e5 - own node ID: 2 -2024-09-06T10:04:33.897Z CNTRLR received controller IDs: - home ID: 0xd1f692e5 - own node ID: 2 -2024-09-06T10:04:33.897Z DRIVER Joined network with home ID 0xd1f692e5, switching to new network cache... -2024-09-06T10:04:33.897Z CNTRLR querying controller capabilities... -2024-09-06T10:04:33.899Z SERIAL » 0x01030005f9 (5 bytes) -2024-09-06T10:04:33.899Z DRIVER » [REQ] [GetControllerCapabilities] -2024-09-06T10:04:33.907Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:33.908Z SERIAL « 0x0104010506f9 (6 bytes) -2024-09-06T10:04:33.908Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:33.909Z DRIVER « [RES] [GetControllerCapabilities] - payload: 0x06 -2024-09-06T10:04:33.909Z CNTRLR received controller capabilities: - controller role: Inclusion - is the SUC: false - started this network: false - SIS is present: true - was real primary: false -2024-09-06T10:04:33.910Z CNTRLR querying additional controller information... -2024-09-06T10:04:33.911Z SERIAL » 0x01030002fe (5 bytes) -2024-09-06T10:04:33.911Z DRIVER » [REQ] [GetSerialApiInitData] -2024-09-06T10:04:33.920Z SERIAL « [ACK] (0x06) -2024-09-06T10:04:33.921Z SERIAL « 0x012501020a001d030000000000000000000000000000000000000000000000000 (39 bytes) - 00000000800c5 -2024-09-06T10:04:33.922Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:33.923Z DRIVER « [RES] [GetSerialApiInitData] - payload: 0x0a001d03000000000000000000000000000000000000000000000000000000000 - 800 -2024-09-06T10:04:33.924Z CNTRLR received additional controller information: - Z-Wave API version: 1 (official) - Z-Wave chip type: EFR32ZG23 / ZGM230S - node type Controller - controller role: primary - controller is the SIS: false - controller supports timers: false - Z-Wave Classic nodes: 1, 2 -2024-09-06T10:04:33.927Z DRIVER all queues idle -2024-09-06T10:04:34.108Z SERIAL « 0x010b00a8000201029f0400da1c (13 bytes) -2024-09-06T10:04:34.110Z SERIAL » [ACK] (0x06) -2024-09-06T10:04:34.112Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -38 dBm - └─[Security2CCKEXGet] -2024-09-06T10:05:09.136Z DRIVER ███████╗ ██╗ ██╗ █████╗ ██╗ ██╗ ███████╗ ██╗ ███████╗ - ╚══███╔╝ ██║ ██║ ██╔══██╗ ██║ ██║ ██╔════╝ ██║ ██╔════╝ - ███╔╝ █████╗ ██║ █╗ ██║ ███████║ ██║ ██║ █████╗ ██║ ███████╗ - ███╔╝ ╚════╝ ██║███╗██║ ██╔══██║ ╚██╗ ██╔╝ ██╔══╝ ██ ██║ ╚════██║ - ███████╗ ╚███╔███╔╝ ██║ ██║ ╚████╔╝ ███████╗ ╚█████╔╝ ███████║ - ╚══════╝ ╚══╝╚══╝ ╚═╝ ╚═╝ ╚═══╝ ╚══════╝ ╚════╝ ╚══════╝ -2024-09-06T10:05:09.136Z DRIVER version 13.2.0 -2024-09-06T10:05:09.136Z DRIVER -2024-09-06T10:05:09.136Z DRIVER starting driver... -2024-09-06T10:05:09.136Z DRIVER opening serial port /dev/serial/by-id/usb-Silicon_Labs_CP2102N_USB_to_UART_Bri - dge_Controller_ca4d95064355ee118d4d1294de9da576-if00-port0 -2024-09-06T10:05:09.145Z DRIVER serial port opened -2024-09-06T10:05:09.145Z SERIAL » 0x15 (1 bytes) -2024-09-06T10:05:10.151Z DRIVER loading configuration... -2024-09-06T10:05:10.156Z CONFIG version 13.2.0 -2024-09-06T10:05:10.492Z DRIVER beginning interview... -2024-09-06T10:05:10.492Z DRIVER added request handler for AddNodeToNetwork (0x4a)... - 1 registered -2024-09-06T10:05:10.492Z DRIVER added request handler for RemoveNodeFromNetwork (0x4b)... - 1 registered -2024-09-06T10:05:10.492Z DRIVER added request handler for ReplaceFailedNode (0x63)... - 1 registered -2024-09-06T10:05:10.492Z DRIVER added request handler for SetLearnMode (0x50)... - 1 registered -2024-09-06T10:05:10.492Z CNTRLR querying Serial API capabilities... -2024-09-06T10:05:10.494Z SERIAL » 0x01030007fb (5 bytes) -2024-09-06T10:05:10.494Z DRIVER » [REQ] [GetSerialApiCapabilities] -2024-09-06T10:05:10.507Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:10.507Z SERIAL « 0x012b01070716000000040004f6873e88cf2bc05ffbd7fde09700008000808680b (45 bytes) - a0500700000ee7fc000000041 -2024-09-06T10:05:10.508Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:10.509Z DRIVER « [RES] [GetSerialApiCapabilities] - payload: 0x0716000000040004f6873e88cf2bc05ffbd7fde09700008000808680ba0500700 - 000ee7fc0000000 -2024-09-06T10:05:10.510Z CNTRLR received API capabilities: - firmware version: 7.22 - manufacturer ID: 0x00 - product type: 0x04 - product ID: 0x04 - supported functions: - · GetSerialApiInitData (0x02) - · SetApplicationNodeInformation (0x03) - · GetControllerCapabilities (0x05) - · SetSerialApiTimeouts (0x06) - · GetSerialApiCapabilities (0x07) - · SoftReset (0x08) - · GetProtocolVersion (0x09) - · SerialAPIStarted (0x0a) - · SerialAPISetup (0x0b) - · SetRFReceiveMode (0x10) - · SendNodeInformation (0x12) - · SendData (0x13) - · SendDataMulticast (0x14) - · GetControllerVersion (0x15) - · SendDataAbort (0x16) - · FUNC_ID_ZW_GET_RANDOM (0x1c) - · GetControllerId (0x20) - · UNKNOWN_FUNC_MEMORY_GET_BYTE (0x21) - · UNKNOWN_FUNC_MEMORY_PUT_BYTE (0x22) - · UNKNOWN_FUNC_MEMORY_GET_BUFFER (0x23) - · UNKNOWN_FUNC_MEMORY_PUT_BUFFER (0x24) - · EnterBootloader (0x27) - · UNKNOWN_FUNC_UNKNOWN_0x28 (0x28) - · GetNVMId (0x29) - · ExtNVMReadLongBuffer (0x2a) - · ExtNVMReadLongByte (0x2c) - · NVMOperations (0x2e) - · ClearTxTimers (0x37) - · GetTxTimers (0x38) - · ClearNetworkStats (0x39) - · GetNetworkStats (0x3a) - · GetBackgroundRSSI (0x3b) - · SetListenBeforeTalkThreshold (0x3c) - · ExtendedNVMOperations (0x3d) - · RemoveSpecificNodeIdFromNetwork (0x3f) - · GetNodeProtocolInfo (0x41) - · HardReset (0x42) - · FUNC_ID_ZW_REPLICATION_COMMAND_COMPLETE (0x44) - · FUNC_ID_ZW_REPLICATION_SEND_DATA (0x45) - · AssignReturnRoute (0x46) - · DeleteReturnRoute (0x47) - · RequestNodeNeighborUpdate (0x48) - · ApplicationUpdateRequest (0x49) - · AddNodeToNetwork (0x4a) - · RemoveNodeFromNetwork (0x4b) - · AddPrimaryController (0x4d) - · AssignPriorityReturnRoute (0x4f) - · SetLearnMode (0x50) - · AssignSUCReturnRoute (0x51) - · RequestNetworkUpdate (0x53) - · SetSUCNodeId (0x54) - · DeleteSUCReturnRoute (0x55) - · GetSUCNodeId (0x56) - · SendSUCNodeId (0x57) - · AssignPrioritySUCReturnRoute (0x58) - · ExploreRequestInclusion (0x5e) - · ExploreRequestExclusion (0x5f) - · RequestNodeInfo (0x60) - · RemoveFailedNode (0x61) - · IsFailedNode (0x62) - · ReplaceFailedNode (0x63) - · undefined (0x65) - · RequestProtocolCCEncryption (0x68) - · GetRoutingInfo (0x80) - · LockUnlockLastRoute (0x90) - · GetPriorityRoute (0x92) - · SetPriorityRoute (0x93) - · UNKNOWN_FUNC_UNKNOWN_0x98 (0x98) - · VirtualNodeSetNodeInfo (0xa0) - · VirtualNodeSendNodeInfo (0xa2) - · VirtualNodeSetLearnMode (0xa4) - · GetVirtualNodes (0xa5) - · IsVirtualNode (0xa6) - · BridgeApplicationCommand (0xa8) - · SendDataBridge (0xa9) - · SendDataMulticastBridge (0xab) - · GetLibrary (0xbd) - · SendTestFrame (0xbe) - · GetProtocolStatus (0xbf) - · StartWatchdog (0xd2) - · StopWatchdog (0xd3) - · SetMaximumRoutingAttempts (0xd4) - · SetMaxSmartStartInclusionRequestInterval (0xd6) - · undefined (0xd7) - · undefined (0xd8) - · Shutdown (0xd9) - · GetLongRangeNodes (0xda) - · GetLongRangeChannel (0xdb) - · SetLongRangeChannel (0xdc) - · SetLongRangeShadowNodeIDs (0xdd) - · Proprietary_DE (0xde) - · Proprietary_DF (0xdf) - · Proprietary_E7 (0xe7) - · Proprietary_E8 (0xe8) -2024-09-06T10:05:10.510Z CNTRLR querying additional controller information... -2024-09-06T10:05:10.511Z SERIAL » 0x01030002fe (5 bytes) -2024-09-06T10:05:10.511Z DRIVER » [REQ] [GetSerialApiInitData] -2024-09-06T10:05:10.519Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:10.520Z SERIAL « 0x012501020a001d030000000000000000000000000000000000000000000000000 (39 bytes) - 00000000800c5 -2024-09-06T10:05:10.520Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:10.520Z DRIVER « [RES] [GetSerialApiInitData] - payload: 0x0a001d03000000000000000000000000000000000000000000000000000000000 - 800 -2024-09-06T10:05:10.521Z CNTRLR received additional controller information: - Z-Wave API version: 1 (official) - Z-Wave chip type: EFR32ZG23 / ZGM230S - node type Controller - controller role: primary - controller is the SIS: false - controller supports timers: false - Z-Wave Classic nodes: 1, 2 -2024-09-06T10:05:10.521Z CNTRLR querying version info... -2024-09-06T10:05:10.522Z SERIAL » 0x01030015e9 (5 bytes) -2024-09-06T10:05:10.522Z DRIVER » [REQ] [GetControllerVersion] -2024-09-06T10:05:10.528Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:10.528Z SERIAL « 0x011001155a2d5761766520372e3232000797 (18 bytes) -2024-09-06T10:05:10.529Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:10.529Z DRIVER « [RES] [GetControllerVersion] - payload: 0x5a2d5761766520372e32320007 -2024-09-06T10:05:10.530Z CNTRLR received version info: - controller type: Bridge Controller - library version: Z-Wave 7.22 -2024-09-06T10:05:10.530Z CNTRLR querying protocol version info... -2024-09-06T10:05:10.530Z SERIAL » 0x01030009f5 (5 bytes) -2024-09-06T10:05:10.531Z DRIVER » [REQ] [GetProtocolVersion] -2024-09-06T10:05:10.537Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:10.538Z SERIAL « 0x0119010900071601abcd63636639623665613165616566313162c3 (27 bytes) -2024-09-06T10:05:10.538Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:10.538Z DRIVER « [RES] [GetProtocolVersion] - payload: 0x00071601abcd63636639623665613165616566313162 -2024-09-06T10:05:10.539Z CNTRLR received protocol version info: - protocol type: Z-Wave - protocol version: 7.22.1 - appl. framework build no.: 43981 - git commit hash: 63636639623665613165616566313162 -2024-09-06T10:05:10.539Z CNTRLR querying controller capabilities... -2024-09-06T10:05:10.540Z SERIAL » 0x01030005f9 (5 bytes) -2024-09-06T10:05:10.540Z DRIVER » [REQ] [GetControllerCapabilities] -2024-09-06T10:05:10.546Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:10.547Z SERIAL « 0x0104010506f9 (6 bytes) -2024-09-06T10:05:10.547Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:10.547Z DRIVER « [RES] [GetControllerCapabilities] - payload: 0x06 -2024-09-06T10:05:10.548Z CNTRLR received controller capabilities: - controller role: Inclusion - is the SUC: false - started this network: false - SIS is present: true - was real primary: false -2024-09-06T10:05:10.548Z CNTRLR querying serial API setup capabilities... -2024-09-06T10:05:10.549Z SERIAL » 0x0104000b01f1 (6 bytes) -2024-09-06T10:05:10.549Z DRIVER » [REQ] [SerialAPISetup] - command: GetSupportedCommands - payload: 0x01 -2024-09-06T10:05:10.558Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:10.559Z SERIAL « 0x0116010b01ff9f8007800000008000000000000000800085 (24 bytes) -2024-09-06T10:05:10.559Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:10.560Z DRIVER « [RES] [SerialAPISetup] - command: GetSupportedCommands - payload: 0xff9f80078000000080000000000000008000 -2024-09-06T10:05:10.560Z CNTRLR supported serial API setup commands: - · GetSupportedCommands - · SetTxStatusReport - · SetLongRangeMaximumTxPower - · SetPowerlevel - · GetLongRangeMaximumTxPower - · GetPowerlevel - · GetMaximumPayloadSize - · GetLongRangeMaximumPayloadSize - · SetPowerlevel16Bit - · GetPowerlevel16Bit - · GetRFRegion - · SetRFRegion - · SetNodeIDType -2024-09-06T10:05:10.561Z CNTRLR querying max. payload size... -2024-09-06T10:05:10.562Z SERIAL » 0x0104000b10e0 (6 bytes) -2024-09-06T10:05:10.562Z DRIVER » [REQ] [SerialAPISetup] - command: GetMaximumPayloadSize - payload: 0x10 -2024-09-06T10:05:10.571Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:10.571Z SERIAL « 0x0105010b102ece (7 bytes) -2024-09-06T10:05:10.571Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:10.572Z DRIVER « [RES] [SerialAPISetup] - command: GetMaximumPayloadSize - maximum payload size: 46 bytes -2024-09-06T10:05:10.573Z CNTRLR maximum payload size: 46 bytes -2024-09-06T10:05:10.573Z CNTRLR supported Z-Wave features: - · SmartStart -2024-09-06T10:05:10.574Z CNTRLR Querying configured RF region... -2024-09-06T10:05:10.575Z SERIAL » 0x0104000b20d0 (6 bytes) -2024-09-06T10:05:10.575Z DRIVER » [REQ] [SerialAPISetup] - command: GetRFRegion - payload: 0x20 -2024-09-06T10:05:10.583Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:10.584Z SERIAL « 0x0105010b2000d0 (7 bytes) -2024-09-06T10:05:10.584Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:10.585Z DRIVER « [RES] [SerialAPISetup] - command: GetRFRegion - region: Europe -2024-09-06T10:05:10.586Z CNTRLR The controller is using RF region Europe -2024-09-06T10:05:10.586Z CNTRLR Querying configured max. Long Range powerlevel... -2024-09-06T10:05:10.587Z SERIAL » 0x0104000b05f5 (6 bytes) -2024-09-06T10:05:10.587Z DRIVER » [REQ] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - payload: 0x05 -2024-09-06T10:05:10.595Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:10.595Z SERIAL « 0x0106010b05008c7a (8 bytes) -2024-09-06T10:05:10.596Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:10.596Z DRIVER « [RES] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - max. TX power (LR): 14.0 dBm -2024-09-06T10:05:10.597Z CNTRLR The max. LR powerlevel is 14.0 dBm -2024-09-06T10:05:10.597Z CNTRLR Querying configured Long Range channel information... -2024-09-06T10:05:10.597Z SERIAL » 0x010300db27 (5 bytes) -2024-09-06T10:05:10.598Z DRIVER » [REQ] [GetLongRangeChannel] -2024-09-06T10:05:10.603Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:10.604Z SERIAL « 0x010501db001030 (7 bytes) -2024-09-06T10:05:10.604Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:10.604Z DRIVER « [RES] [GetLongRangeChannel] - payload: 0x0010 -2024-09-06T10:05:10.605Z CNTRLR received Z-Wave Long Range channel information: - channel: Unsupported - supports auto channel selection: true -2024-09-06T10:05:10.605Z CNTRLR Performing soft reset... -2024-09-06T10:05:10.606Z SERIAL » 0x01030008f4 (5 bytes) -2024-09-06T10:05:10.606Z DRIVER » [REQ] [SoftReset] -2024-09-06T10:05:10.610Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:10.610Z CNTRLR Waiting for the controller to reconnect... -2024-09-06T10:05:10.610Z DRIVER all queues idle -2024-09-06T10:05:10.719Z SERIAL « 0x0116000a0700010100085e989f556c568f7400031d00003f (24 bytes) -2024-09-06T10:05:10.721Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:10.722Z DRIVER « [REQ] [SerialAPIStarted] - wake up reason: SoftwareReset - watchdog enabled: false - generic device class: 0x01 - specific device class: 0x00 - always listening: false - supports Long Range: false -2024-09-06T10:05:10.724Z CNTRLR reconnected and restarted -2024-09-06T10:05:10.724Z CNTRLR Starting hardware watchdog... -2024-09-06T10:05:10.725Z CNTRLR Switching serial API to 16-bit node IDs... -2024-09-06T10:05:10.726Z CNTRLR Switching serial API to 8-bit node IDs... -2024-09-06T10:05:10.727Z DRIVER all queues busy -2024-09-06T10:05:10.729Z SERIAL » 0x010300d22e (5 bytes) -2024-09-06T10:05:10.730Z DRIVER » [REQ] [StartWatchdog] -2024-09-06T10:05:10.735Z SERIAL » 0x0105000b800273 (7 bytes) -2024-09-06T10:05:10.735Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 16 bit -2024-09-06T10:05:10.736Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:10.741Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:10.741Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T10:05:10.742Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:10.742Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T10:05:10.743Z CNTRLR Switching to 16-bit node IDs successful -2024-09-06T10:05:10.744Z SERIAL » 0x0105000b800170 (7 bytes) -2024-09-06T10:05:10.744Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 8 bit -2024-09-06T10:05:10.750Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:10.750Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T10:05:10.750Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:10.751Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T10:05:10.751Z CNTRLR Switching to 8-bit node IDs successful -2024-09-06T10:05:10.752Z CNTRLR querying controller IDs... -2024-09-06T10:05:10.752Z SERIAL » 0x01030020dc (5 bytes) -2024-09-06T10:05:10.753Z DRIVER » [REQ] [GetControllerId] -2024-09-06T10:05:10.758Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:10.758Z SERIAL « 0x01080120d1f692e50284 (10 bytes) -2024-09-06T10:05:10.759Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:10.759Z DRIVER « [RES] [GetControllerId] - home ID: 0xd1f692e5 - own node ID: 2 -2024-09-06T10:05:10.760Z CNTRLR received controller IDs: - home ID: 0xd1f692e5 - own node ID: 2 -2024-09-06T10:05:10.760Z CNTRLR Enabling TX status report... -2024-09-06T10:05:10.761Z SERIAL » 0x0105000b02ff0c (7 bytes) -2024-09-06T10:05:10.762Z DRIVER » [REQ] [SerialAPISetup] - command: SetTxStatusReport - enabled: true -2024-09-06T10:05:10.767Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:10.767Z SERIAL « 0x0105010b0201f3 (7 bytes) -2024-09-06T10:05:10.767Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:10.768Z DRIVER « [RES] [SerialAPISetup] - command: SetTxStatusReport - success: true -2024-09-06T10:05:10.769Z CNTRLR Enabling TX status report successful... -2024-09-06T10:05:10.769Z CNTRLR finding SUC... -2024-09-06T10:05:10.769Z SERIAL » 0x01030056aa (5 bytes) -2024-09-06T10:05:10.770Z DRIVER » [REQ] [GetSUCNodeId] -2024-09-06T10:05:10.774Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:10.775Z SERIAL « 0x0104015601ad (6 bytes) -2024-09-06T10:05:10.775Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:10.775Z DRIVER « [RES] [GetSUCNodeId] - payload: 0x01 -2024-09-06T10:05:10.776Z CNTRLR SUC has node ID 1 -2024-09-06T10:05:10.777Z DRIVER all queues idle -2024-09-06T10:05:10.786Z DRIVER Cache file for homeId 0xd1f692e5 found, attempting to restore the network from - cache... -2024-09-06T10:05:10.787Z DRIVER Restoring the network from cache was successful! -2024-09-06T10:05:10.788Z CNTRLR [Node 002] [Manufacturer Specific] manufacturerId: metadata updated -2024-09-06T10:05:10.788Z CNTRLR [Node 002] [Manufacturer Specific] productType: metadata updated -2024-09-06T10:05:10.788Z CNTRLR [Node 002] [Manufacturer Specific] productId: metadata updated -2024-09-06T10:05:10.789Z CNTRLR [Node 002] [+] [Manufacturer Specific] manufacturerId: 0 -2024-09-06T10:05:10.789Z CNTRLR [Node 002] [+] [Manufacturer Specific] productType: 4 -2024-09-06T10:05:10.789Z CNTRLR [Node 002] [+] [Manufacturer Specific] productId: 4 -2024-09-06T10:05:10.789Z CNTRLR [Node 002] [Version] firmwareVersions: metadata updated -2024-09-06T10:05:10.789Z CNTRLR [Node 002] [+] [Version] firmwareVersions: 7.22 -2024-09-06T10:05:10.790Z CNTRLR [Node 002] [Version] zWaveProtocolVersion: metadata updated -2024-09-06T10:05:10.790Z CNTRLR [Node 002] [+] [Version] zWaveProtocolVersion: "7.22.1" -2024-09-06T10:05:10.790Z CNTRLR [Node 002] [Version] sdkVersion: metadata updated -2024-09-06T10:05:10.790Z CNTRLR [Node 002] [+] [Version] sdkVersion: "7.22.1" -2024-09-06T10:05:10.790Z CNTRLR Interview completed -2024-09-06T10:05:10.790Z DRIVER No network key for S0 found in cache, communication with secure (S0) devices w - on't work! -2024-09-06T10:05:10.790Z DRIVER No network key for S2 found in cache, communication with secure (S2) devices w - on't work! -2024-09-06T10:05:10.791Z DRIVER driver ready -2024-09-06T10:05:10.791Z CNTRLR [Node 002] Beginning interview - last completed stage: None -2024-09-06T10:05:10.791Z CNTRLR [Node 002] new node, doing a full interview... -2024-09-06T10:05:10.791Z CNTRLR » [Node 002] querying protocol info... -2024-09-06T10:05:10.792Z DRIVER all queues busy -2024-09-06T10:05:10.793Z SERIAL » 0x0104004102b8 (6 bytes) -2024-09-06T10:05:10.793Z DRIVER » [REQ] [GetNodeProtocolInfo] - payload: 0x02 -2024-09-06T10:05:10.799Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:10.799Z SERIAL « 0x010a0141d3960102010000f2 (12 bytes) -2024-09-06T10:05:10.799Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:10.800Z DRIVER « [RES] [GetNodeProtocolInfo] - payload: 0xd3960102010000 -2024-09-06T10:05:10.801Z CNTRLR « [Node 002] received response for protocol info: - basic device class: Static Controller - generic device class: Remote Controller - specific device class: Unused - node type: Controller - is always listening: true - is frequent listening: false - can route messages: true - supports security: false - supports beaming: true - maximum data rate: 100000 kbps - protocol version: 3 -2024-09-06T10:05:10.801Z CNTRLR [Node 002] Interview stage completed: ProtocolInfo -2024-09-06T10:05:10.803Z DRIVER all queues idle -2024-09-06T10:05:10.809Z CNTRLR [Node 002] Embedded device config loaded -2024-09-06T10:05:10.810Z CNTRLR [Node 002] Interview stage completed: OverwriteConfig -2024-09-06T10:05:10.810Z CNTRLR [Node 002] Interview completed -2024-09-06T10:05:10.810Z CNTRLR [Node 002] The node is ready to be used -2024-09-06T10:05:10.811Z CNTRLR [Node 002] The node is alive. -2024-09-06T10:05:10.811Z CNTRLR » [Node 001] querying protocol info... -2024-09-06T10:05:10.811Z DRIVER all queues busy -2024-09-06T10:05:10.812Z SERIAL » 0x0104004101bb (6 bytes) -2024-09-06T10:05:10.812Z DRIVER » [REQ] [GetNodeProtocolInfo] - payload: 0x01 -2024-09-06T10:05:10.818Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:10.818Z SERIAL « 0x010a0141d3960102010000f2 (12 bytes) -2024-09-06T10:05:10.818Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:10.819Z DRIVER « [RES] [GetNodeProtocolInfo] - payload: 0xd3960102010000 -2024-09-06T10:05:10.819Z CNTRLR « [Node 001] received response for protocol info: - basic device class: Static Controller - generic device class: Remote Controller - specific device class: Unused - node type: Controller - is always listening: true - is frequent listening: false - can route messages: true - supports security: false - supports beaming: true - maximum data rate: 100000 kbps - protocol version: 3 -2024-09-06T10:05:10.820Z CNTRLR [Node 001] Interview stage completed: ProtocolInfo -2024-09-06T10:05:10.820Z CNTRLR Determining node status: 1 -2024-09-06T10:05:10.820Z CNTRLR » [Node 001] pinging the node... -2024-09-06T10:05:10.822Z SERIAL » 0x010d00a9020101002500000000017d (15 bytes) -2024-09-06T10:05:10.822Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 1 - └─[NoOperationCC] -2024-09-06T10:05:10.828Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:10.830Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T10:05:10.830Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:10.831Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T10:05:10.851Z SERIAL « 0x011d00a90100000100da7f7f7f7f00000300000000030100007f7f7f7f7fef (31 bytes) -2024-09-06T10:05:10.852Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:10.852Z DRIVER « [REQ] [SendDataBridge] - callback id: 1 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -38 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T10:05:10.853Z CNTRLR [Node 001] The node is alive. -2024-09-06T10:05:10.853Z CNTRLR « [Node 001] ping successful -2024-09-06T10:05:10.853Z DRIVER all queues idle -2024-09-06T10:05:15.791Z CNTRLR Updating the controller NIF... -2024-09-06T10:05:15.792Z DRIVER all queues busy -2024-09-06T10:05:15.794Z SERIAL » 0x010f0003010100085e989f556c568f7436 (17 bytes) -2024-09-06T10:05:15.795Z DRIVER » [REQ] [SetApplicationNodeInformation] - is listening: true - generic device class: 0x01 - specific device class: 0x00 - supported CCs: - · Z-Wave Plus Info - · Security - · Security 2 - · Transport Service - · Supervision - · CRC-16 Encapsulation - · Multi Command - · Inclusion Controller - controlled CCs: -2024-09-06T10:05:15.801Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:15.803Z CNTRLR performing hard reset... -2024-09-06T10:05:15.805Z SERIAL » 0x0104004202bb (6 bytes) -2024-09-06T10:05:15.806Z DRIVER » [REQ] [HardReset] - callback id: 2 -2024-09-06T10:05:15.810Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:15.831Z SERIAL « 0x0104004202bb (6 bytes) -2024-09-06T10:05:15.832Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:15.833Z DRIVER « [REQ] [HardReset] - callback id: 2 -2024-09-06T10:05:15.834Z CNTRLR hard reset succeeded -2024-09-06T10:05:15.835Z CNTRLR querying Serial API capabilities... -2024-09-06T10:05:15.836Z SERIAL » 0x01030007fb (5 bytes) -2024-09-06T10:05:15.837Z DRIVER » [REQ] [GetSerialApiCapabilities] -2024-09-06T10:05:15.855Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:15.856Z SERIAL « 0x012b01070716000000040004f6873e88cf2bc05ffbd7fde09700008000808680b (45 bytes) - a0500700000ee7fc000000041 -2024-09-06T10:05:15.857Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:15.858Z DRIVER « [RES] [GetSerialApiCapabilities] - payload: 0x0716000000040004f6873e88cf2bc05ffbd7fde09700008000808680ba0500700 - 000ee7fc0000000 -2024-09-06T10:05:15.859Z CNTRLR received API capabilities: - firmware version: 7.22 - manufacturer ID: 0x00 - product type: 0x04 - product ID: 0x04 - supported functions: - · GetSerialApiInitData (0x02) - · SetApplicationNodeInformation (0x03) - · GetControllerCapabilities (0x05) - · SetSerialApiTimeouts (0x06) - · GetSerialApiCapabilities (0x07) - · SoftReset (0x08) - · GetProtocolVersion (0x09) - · SerialAPIStarted (0x0a) - · SerialAPISetup (0x0b) - · SetRFReceiveMode (0x10) - · SendNodeInformation (0x12) - · SendData (0x13) - · SendDataMulticast (0x14) - · GetControllerVersion (0x15) - · SendDataAbort (0x16) - · FUNC_ID_ZW_GET_RANDOM (0x1c) - · GetControllerId (0x20) - · UNKNOWN_FUNC_MEMORY_GET_BYTE (0x21) - · UNKNOWN_FUNC_MEMORY_PUT_BYTE (0x22) - · UNKNOWN_FUNC_MEMORY_GET_BUFFER (0x23) - · UNKNOWN_FUNC_MEMORY_PUT_BUFFER (0x24) - · EnterBootloader (0x27) - · UNKNOWN_FUNC_UNKNOWN_0x28 (0x28) - · GetNVMId (0x29) - · ExtNVMReadLongBuffer (0x2a) - · ExtNVMReadLongByte (0x2c) - · NVMOperations (0x2e) - · ClearTxTimers (0x37) - · GetTxTimers (0x38) - · ClearNetworkStats (0x39) - · GetNetworkStats (0x3a) - · GetBackgroundRSSI (0x3b) - · SetListenBeforeTalkThreshold (0x3c) - · ExtendedNVMOperations (0x3d) - · RemoveSpecificNodeIdFromNetwork (0x3f) - · GetNodeProtocolInfo (0x41) - · HardReset (0x42) - · FUNC_ID_ZW_REPLICATION_COMMAND_COMPLETE (0x44) - · FUNC_ID_ZW_REPLICATION_SEND_DATA (0x45) - · AssignReturnRoute (0x46) - · DeleteReturnRoute (0x47) - · RequestNodeNeighborUpdate (0x48) - · ApplicationUpdateRequest (0x49) - · AddNodeToNetwork (0x4a) - · RemoveNodeFromNetwork (0x4b) - · AddPrimaryController (0x4d) - · AssignPriorityReturnRoute (0x4f) - · SetLearnMode (0x50) - · AssignSUCReturnRoute (0x51) - · RequestNetworkUpdate (0x53) - · SetSUCNodeId (0x54) - · DeleteSUCReturnRoute (0x55) - · GetSUCNodeId (0x56) - · SendSUCNodeId (0x57) - · AssignPrioritySUCReturnRoute (0x58) - · ExploreRequestInclusion (0x5e) - · ExploreRequestExclusion (0x5f) - · RequestNodeInfo (0x60) - · RemoveFailedNode (0x61) - · IsFailedNode (0x62) - · ReplaceFailedNode (0x63) - · undefined (0x65) - · RequestProtocolCCEncryption (0x68) - · GetRoutingInfo (0x80) - · LockUnlockLastRoute (0x90) - · GetPriorityRoute (0x92) - · SetPriorityRoute (0x93) - · UNKNOWN_FUNC_UNKNOWN_0x98 (0x98) - · VirtualNodeSetNodeInfo (0xa0) - · VirtualNodeSendNodeInfo (0xa2) - · VirtualNodeSetLearnMode (0xa4) - · GetVirtualNodes (0xa5) - · IsVirtualNode (0xa6) - · BridgeApplicationCommand (0xa8) - · SendDataBridge (0xa9) - · SendDataMulticastBridge (0xab) - · GetLibrary (0xbd) - · SendTestFrame (0xbe) - · GetProtocolStatus (0xbf) - · StartWatchdog (0xd2) - · StopWatchdog (0xd3) - · SetMaximumRoutingAttempts (0xd4) - · SetMaxSmartStartInclusionRequestInterval (0xd6) - · undefined (0xd7) - · undefined (0xd8) - · Shutdown (0xd9) - · GetLongRangeNodes (0xda) - · GetLongRangeChannel (0xdb) - · SetLongRangeChannel (0xdc) - · SetLongRangeShadowNodeIDs (0xdd) - · Proprietary_DE (0xde) - · Proprietary_DF (0xdf) - · Proprietary_E7 (0xe7) - · Proprietary_E8 (0xe8) -2024-09-06T10:05:15.860Z CNTRLR querying additional controller information... -2024-09-06T10:05:15.861Z SERIAL » 0x01030002fe (5 bytes) -2024-09-06T10:05:15.862Z DRIVER » [REQ] [GetSerialApiInitData] -2024-09-06T10:05:15.871Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:15.872Z SERIAL « 0x012501020a001d010000000000000000000000000000000000000000000000000 (39 bytes) - 00000000800c7 -2024-09-06T10:05:15.873Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:15.874Z DRIVER « [RES] [GetSerialApiInitData] - payload: 0x0a001d01000000000000000000000000000000000000000000000000000000000 - 800 -2024-09-06T10:05:15.875Z CNTRLR received additional controller information: - Z-Wave API version: 1 (official) - Z-Wave chip type: EFR32ZG23 / ZGM230S - node type Controller - controller role: primary - controller is the SIS: false - controller supports timers: false - Z-Wave Classic nodes: 1 -2024-09-06T10:05:15.875Z CNTRLR querying version info... -2024-09-06T10:05:15.876Z SERIAL » 0x01030015e9 (5 bytes) -2024-09-06T10:05:15.877Z DRIVER » [REQ] [GetControllerVersion] -2024-09-06T10:05:15.883Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:15.884Z SERIAL « 0x011001155a2d5761766520372e3232000797 (18 bytes) -2024-09-06T10:05:15.885Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:15.886Z DRIVER « [RES] [GetControllerVersion] - payload: 0x5a2d5761766520372e32320007 -2024-09-06T10:05:15.887Z CNTRLR received version info: - controller type: Bridge Controller - library version: Z-Wave 7.22 -2024-09-06T10:05:15.887Z CNTRLR querying protocol version info... -2024-09-06T10:05:15.888Z SERIAL » 0x01030009f5 (5 bytes) -2024-09-06T10:05:15.888Z DRIVER » [REQ] [GetProtocolVersion] -2024-09-06T10:05:15.895Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:15.896Z SERIAL « 0x0119010900071601abcd63636639623665613165616566313162c3 (27 bytes) -2024-09-06T10:05:15.897Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:15.897Z DRIVER « [RES] [GetProtocolVersion] - payload: 0x00071601abcd63636639623665613165616566313162 -2024-09-06T10:05:15.899Z CNTRLR received protocol version info: - protocol type: Z-Wave - protocol version: 7.22.1 - appl. framework build no.: 43981 - git commit hash: 63636639623665613165616566313162 -2024-09-06T10:05:15.899Z CNTRLR querying controller capabilities... -2024-09-06T10:05:15.900Z SERIAL » 0x01030005f9 (5 bytes) -2024-09-06T10:05:15.900Z DRIVER » [REQ] [GetControllerCapabilities] -2024-09-06T10:05:15.906Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:15.906Z SERIAL « 0x0104010528d7 (6 bytes) -2024-09-06T10:05:15.907Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:15.907Z DRIVER « [RES] [GetControllerCapabilities] - payload: 0x28 -2024-09-06T10:05:15.908Z CNTRLR received controller capabilities: - controller role: Primary - is the SUC: false - started this network: true - SIS is present: false - was real primary: true -2024-09-06T10:05:15.908Z CNTRLR querying serial API setup capabilities... -2024-09-06T10:05:15.909Z SERIAL » 0x0104000b01f1 (6 bytes) -2024-09-06T10:05:15.910Z DRIVER » [REQ] [SerialAPISetup] - command: GetSupportedCommands - payload: 0x01 -2024-09-06T10:05:15.916Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:15.917Z SERIAL « 0x0116010b01ff9f8007800000008000000000000000800085 (24 bytes) -2024-09-06T10:05:15.917Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:15.918Z DRIVER « [RES] [SerialAPISetup] - command: GetSupportedCommands - payload: 0xff9f80078000000080000000000000008000 -2024-09-06T10:05:15.919Z CNTRLR supported serial API setup commands: - · GetSupportedCommands - · SetTxStatusReport - · SetLongRangeMaximumTxPower - · SetPowerlevel - · GetLongRangeMaximumTxPower - · GetPowerlevel - · GetMaximumPayloadSize - · GetLongRangeMaximumPayloadSize - · SetPowerlevel16Bit - · GetPowerlevel16Bit - · GetRFRegion - · SetRFRegion - · SetNodeIDType -2024-09-06T10:05:15.919Z CNTRLR querying max. payload size... -2024-09-06T10:05:15.920Z SERIAL » 0x0104000b10e0 (6 bytes) -2024-09-06T10:05:15.920Z DRIVER » [REQ] [SerialAPISetup] - command: GetMaximumPayloadSize - payload: 0x10 -2024-09-06T10:05:15.926Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:15.927Z SERIAL « 0x0105010b102ece (7 bytes) -2024-09-06T10:05:15.927Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:15.927Z DRIVER « [RES] [SerialAPISetup] - command: GetMaximumPayloadSize - maximum payload size: 46 bytes -2024-09-06T10:05:15.928Z CNTRLR maximum payload size: 46 bytes -2024-09-06T10:05:15.928Z CNTRLR supported Z-Wave features: - · SmartStart -2024-09-06T10:05:15.928Z CNTRLR Querying configured RF region... -2024-09-06T10:05:15.929Z SERIAL » 0x0104000b20d0 (6 bytes) -2024-09-06T10:05:15.929Z DRIVER » [REQ] [SerialAPISetup] - command: GetRFRegion - payload: 0x20 -2024-09-06T10:05:15.935Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:15.935Z SERIAL « 0x0105010b2000d0 (7 bytes) -2024-09-06T10:05:15.936Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:15.936Z DRIVER « [RES] [SerialAPISetup] - command: GetRFRegion - region: Europe -2024-09-06T10:05:15.937Z CNTRLR The controller is using RF region Europe -2024-09-06T10:05:15.937Z CNTRLR Querying configured max. Long Range powerlevel... -2024-09-06T10:05:15.938Z SERIAL » 0x0104000b05f5 (6 bytes) -2024-09-06T10:05:15.938Z DRIVER » [REQ] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - payload: 0x05 -2024-09-06T10:05:15.944Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:15.944Z SERIAL « 0x0106010b05008c7a (8 bytes) -2024-09-06T10:05:15.945Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:15.945Z DRIVER « [RES] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - max. TX power (LR): 14.0 dBm -2024-09-06T10:05:15.946Z CNTRLR The max. LR powerlevel is 14.0 dBm -2024-09-06T10:05:15.946Z CNTRLR Querying configured Long Range channel information... -2024-09-06T10:05:15.947Z SERIAL » 0x010300db27 (5 bytes) -2024-09-06T10:05:15.947Z DRIVER » [REQ] [GetLongRangeChannel] -2024-09-06T10:05:15.953Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:15.953Z SERIAL « 0x010501db001030 (7 bytes) -2024-09-06T10:05:15.954Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:15.954Z DRIVER « [RES] [GetLongRangeChannel] - payload: 0x0010 -2024-09-06T10:05:15.955Z CNTRLR received Z-Wave Long Range channel information: - channel: Unsupported - supports auto channel selection: true -2024-09-06T10:05:15.955Z CNTRLR Performing soft reset... -2024-09-06T10:05:15.955Z SERIAL » 0x01030008f4 (5 bytes) -2024-09-06T10:05:15.956Z DRIVER » [REQ] [SoftReset] -2024-09-06T10:05:15.960Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:15.960Z CNTRLR Waiting for the controller to reconnect... -2024-09-06T10:05:15.960Z DRIVER all queues idle -2024-09-06T10:05:16.073Z SERIAL « 0x0116000a0700010100085e989f556c568f7400031d00003f (24 bytes) -2024-09-06T10:05:16.074Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:16.075Z DRIVER « [REQ] [SerialAPIStarted] - wake up reason: SoftwareReset - watchdog enabled: false - generic device class: 0x01 - specific device class: 0x00 - always listening: false - supports Long Range: false -2024-09-06T10:05:16.076Z CNTRLR reconnected and restarted -2024-09-06T10:05:16.076Z CNTRLR Starting hardware watchdog... -2024-09-06T10:05:16.077Z CNTRLR Switching serial API to 16-bit node IDs... -2024-09-06T10:05:16.077Z CNTRLR Switching serial API to 8-bit node IDs... -2024-09-06T10:05:16.078Z DRIVER all queues busy -2024-09-06T10:05:16.079Z SERIAL » 0x010300d22e (5 bytes) -2024-09-06T10:05:16.080Z DRIVER » [REQ] [StartWatchdog] -2024-09-06T10:05:16.082Z SERIAL » 0x0105000b800273 (7 bytes) -2024-09-06T10:05:16.083Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 16 bit -2024-09-06T10:05:16.084Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:16.089Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:16.089Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T10:05:16.090Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:16.091Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T10:05:16.092Z CNTRLR Switching to 16-bit node IDs successful -2024-09-06T10:05:16.093Z SERIAL » 0x0105000b800170 (7 bytes) -2024-09-06T10:05:16.094Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 8 bit -2024-09-06T10:05:16.100Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:16.101Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T10:05:16.101Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:16.102Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T10:05:16.103Z CNTRLR Switching to 8-bit node IDs successful -2024-09-06T10:05:16.104Z CNTRLR querying controller IDs... -2024-09-06T10:05:16.105Z SERIAL » 0x01030020dc (5 bytes) -2024-09-06T10:05:16.105Z DRIVER » [REQ] [GetControllerId] -2024-09-06T10:05:16.111Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:16.112Z SERIAL « 0x01080120d395cb2e0174 (10 bytes) -2024-09-06T10:05:16.112Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:16.113Z DRIVER « [RES] [GetControllerId] - home ID: 0xd395cb2e - own node ID: 1 -2024-09-06T10:05:16.114Z CNTRLR received controller IDs: - home ID: 0xd395cb2e - own node ID: 1 -2024-09-06T10:05:16.114Z CNTRLR Enabling TX status report... -2024-09-06T10:05:16.115Z SERIAL » 0x0105000b02ff0c (7 bytes) -2024-09-06T10:05:16.115Z DRIVER » [REQ] [SerialAPISetup] - command: SetTxStatusReport - enabled: true -2024-09-06T10:05:16.120Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:16.121Z SERIAL « 0x0105010b0201f3 (7 bytes) -2024-09-06T10:05:16.121Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:16.122Z DRIVER « [RES] [SerialAPISetup] - command: SetTxStatusReport - success: true -2024-09-06T10:05:16.123Z CNTRLR Enabling TX status report successful... -2024-09-06T10:05:16.123Z CNTRLR finding SUC... -2024-09-06T10:05:16.123Z SERIAL » 0x01030056aa (5 bytes) -2024-09-06T10:05:16.124Z DRIVER » [REQ] [GetSUCNodeId] -2024-09-06T10:05:16.128Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:16.129Z SERIAL « 0x0104015600ac (6 bytes) -2024-09-06T10:05:16.129Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:16.130Z DRIVER « [RES] [GetSUCNodeId] - payload: 0x00 -2024-09-06T10:05:16.131Z CNTRLR No SUC present in the network -2024-09-06T10:05:16.131Z CNTRLR There is no SUC/SIS in the network - promoting ourselves... -2024-09-06T10:05:16.131Z SERIAL » 0x01080054010125010384 (10 bytes) -2024-09-06T10:05:16.132Z DRIVER » [REQ] [SetSUCNodeId] - payload: 0x0101250103 -2024-09-06T10:05:16.138Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:16.139Z SERIAL « 0x0104015401af (6 bytes) -2024-09-06T10:05:16.139Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:16.139Z DRIVER « [RES] [SetSUCNodeId] - was executed: true -2024-09-06T10:05:16.140Z CNTRLR Promotion to SUC/SIS succeeded. -2024-09-06T10:05:16.140Z DRIVER all queues idle -2024-09-06T10:05:16.144Z CNTRLR [Node 001] [Manufacturer Specific] manufacturerId: metadata updated -2024-09-06T10:05:16.145Z CNTRLR [Node 001] [Manufacturer Specific] productType: metadata updated -2024-09-06T10:05:16.145Z CNTRLR [Node 001] [Manufacturer Specific] productId: metadata updated -2024-09-06T10:05:16.145Z CNTRLR [Node 001] [+] [Manufacturer Specific] manufacturerId: 0 -2024-09-06T10:05:16.145Z CNTRLR [Node 001] [+] [Manufacturer Specific] productType: 4 -2024-09-06T10:05:16.145Z CNTRLR [Node 001] [+] [Manufacturer Specific] productId: 4 -2024-09-06T10:05:16.145Z CNTRLR [Node 001] [Version] firmwareVersions: metadata updated -2024-09-06T10:05:16.145Z CNTRLR [Node 001] [+] [Version] firmwareVersions: 7.22 -2024-09-06T10:05:16.145Z CNTRLR [Node 001] [Version] zWaveProtocolVersion: metadata updated -2024-09-06T10:05:16.146Z CNTRLR [Node 001] [+] [Version] zWaveProtocolVersion: "7.22.1" -2024-09-06T10:05:16.146Z CNTRLR [Node 001] [Version] sdkVersion: metadata updated -2024-09-06T10:05:16.146Z CNTRLR [Node 001] [+] [Version] sdkVersion: "7.22.1" -2024-09-06T10:05:16.146Z CNTRLR Interview completed -2024-09-06T10:05:16.146Z DRIVER Network key for S0 configured, enabling S0 security manager... -2024-09-06T10:05:16.146Z DRIVER At least one network key for S2 configured, enabling S2 security manager... -2024-09-06T10:05:16.147Z DRIVER At least one network key for Z-Wave Long Range configured, enabling security m - anager... -2024-09-06T10:05:16.147Z DRIVER driver ready -2024-09-06T10:05:16.147Z CNTRLR [Node 001] Beginning interview - last completed stage: None -2024-09-06T10:05:16.147Z CNTRLR [Node 001] new node, doing a full interview... -2024-09-06T10:05:16.147Z CNTRLR » [Node 001] querying protocol info... -2024-09-06T10:05:16.147Z DRIVER all queues busy -2024-09-06T10:05:16.148Z SERIAL » 0x0104004101bb (6 bytes) -2024-09-06T10:05:16.148Z DRIVER » [REQ] [GetNodeProtocolInfo] - payload: 0x01 -2024-09-06T10:05:16.154Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:16.154Z SERIAL « 0x010a0141d3960102010000f2 (12 bytes) -2024-09-06T10:05:16.154Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:16.155Z DRIVER « [RES] [GetNodeProtocolInfo] - payload: 0xd3960102010000 -2024-09-06T10:05:16.155Z CNTRLR « [Node 001] received response for protocol info: - basic device class: Static Controller - generic device class: Remote Controller - specific device class: Unused - node type: Controller - is always listening: true - is frequent listening: false - can route messages: true - supports security: false - supports beaming: true - maximum data rate: 100000 kbps - protocol version: 3 -2024-09-06T10:05:16.156Z CNTRLR [Node 001] Interview stage completed: ProtocolInfo -2024-09-06T10:05:16.156Z DRIVER all queues idle -2024-09-06T10:05:16.158Z CNTRLR [Node 001] Embedded device config loaded -2024-09-06T10:05:16.158Z CNTRLR [Node 001] Interview stage completed: OverwriteConfig -2024-09-06T10:05:16.158Z CNTRLR [Node 001] Interview completed -2024-09-06T10:05:16.158Z CNTRLR [Node 001] The node is ready to be used -2024-09-06T10:05:16.158Z CNTRLR All nodes are ready to be used -2024-09-06T10:05:16.159Z CNTRLR [Node 001] The node is alive. -2024-09-06T10:05:20.837Z DRIVER all queues busy -2024-09-06T10:05:20.839Z SERIAL » 0x0105005081042f (7 bytes) -2024-09-06T10:05:20.840Z DRIVER » [REQ] [SetLearnMode] - callback id: 4 - intent: Inclusion -2024-09-06T10:05:20.845Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:20.847Z SERIAL « 0x0104015001ab (6 bytes) -2024-09-06T10:05:20.847Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:20.848Z DRIVER « [RES] [SetLearnMode] - success: true -2024-09-06T10:05:20.850Z DRIVER all queues idle -2024-09-06T10:05:21.014Z SERIAL « 0x0107005004010200af (9 bytes) -2024-09-06T10:05:21.015Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:21.015Z DRIVER « [REQ] [SetLearnMode] - callback id: 4 - status: Started - assigned node id: 2 -2024-09-06T10:05:21.015Z DRIVER handling request SetLearnMode (80) -2024-09-06T10:05:21.015Z DRIVER 1 handler registered! -2024-09-06T10:05:21.016Z DRIVER invoking handler #0 -2024-09-06T10:05:21.016Z DRIVER the message was handled -2024-09-06T10:05:21.157Z DRIVER all queues busy -2024-09-06T10:05:21.159Z SERIAL » 0x0103003bc7 (5 bytes) -2024-09-06T10:05:21.159Z DRIVER » [REQ] [GetBackgroundRSSI] -2024-09-06T10:05:21.169Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:21.169Z SERIAL « 0x0107013b9d99997f20 (9 bytes) -2024-09-06T10:05:21.170Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:21.171Z DRIVER « [RES] [GetBackgroundRSSI] - channel 0: -99 dBm - channel 1: -103 dBm - channel 2: -103 dBm - channel 3: N/A -2024-09-06T10:05:21.176Z DRIVER all queues idle -2024-09-06T10:05:21.539Z SERIAL « 0x01060049100100a1 (8 bytes) -2024-09-06T10:05:21.539Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:21.540Z DRIVER « [REQ] [ApplicationUpdateRequest] - type: SUC_IdChanged - SUC node ID: 1 -2024-09-06T10:05:21.555Z SERIAL « 0x0107005004050200ab (9 bytes) -2024-09-06T10:05:21.555Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:21.556Z DRIVER « [REQ] [SetLearnMode] - callback id: 4 - status: ProtocolDone - assigned node id: 2 -2024-09-06T10:05:21.556Z DRIVER handling request SetLearnMode (80) -2024-09-06T10:05:21.556Z DRIVER 1 handler registered! -2024-09-06T10:05:21.556Z DRIVER invoking handler #0 -2024-09-06T10:05:21.557Z DRIVER the message was handled -2024-09-06T10:05:21.557Z DRIVER waiting for security bootstrapping... -2024-09-06T10:05:24.081Z CNTRLR querying controller IDs... -2024-09-06T10:05:24.083Z DRIVER all queues busy -2024-09-06T10:05:24.084Z SERIAL » 0x01030020dc (5 bytes) -2024-09-06T10:05:24.085Z DRIVER » [REQ] [GetControllerId] -2024-09-06T10:05:24.097Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:24.098Z SERIAL « 0x01080120fd37611c0263 (10 bytes) -2024-09-06T10:05:24.098Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:24.099Z DRIVER « [RES] [GetControllerId] - home ID: 0xfd37611c - own node ID: 2 -2024-09-06T10:05:24.099Z CNTRLR received controller IDs: - home ID: 0xfd37611c - own node ID: 2 -2024-09-06T10:05:24.100Z DRIVER Joined network with home ID 0xfd37611c, switching to new network cache... -2024-09-06T10:05:24.100Z CNTRLR querying controller capabilities... -2024-09-06T10:05:24.101Z SERIAL » 0x01030005f9 (5 bytes) -2024-09-06T10:05:24.101Z DRIVER » [REQ] [GetControllerCapabilities] -2024-09-06T10:05:24.109Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:24.109Z SERIAL « 0x0104010506f9 (6 bytes) -2024-09-06T10:05:24.109Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:24.110Z DRIVER « [RES] [GetControllerCapabilities] - payload: 0x06 -2024-09-06T10:05:24.111Z CNTRLR received controller capabilities: - controller role: Inclusion - is the SUC: false - started this network: false - SIS is present: true - was real primary: false -2024-09-06T10:05:24.111Z CNTRLR querying additional controller information... -2024-09-06T10:05:24.112Z SERIAL » 0x01030002fe (5 bytes) -2024-09-06T10:05:24.112Z DRIVER » [REQ] [GetSerialApiInitData] -2024-09-06T10:05:24.120Z SERIAL « [ACK] (0x06) -2024-09-06T10:05:24.121Z SERIAL « 0x012501020a001d030000000000000000000000000000000000000000000000000 (39 bytes) - 00000000800c5 -2024-09-06T10:05:24.121Z SERIAL » [ACK] (0x06) -2024-09-06T10:05:24.122Z DRIVER « [RES] [GetSerialApiInitData] - payload: 0x0a001d03000000000000000000000000000000000000000000000000000000000 - 800 -2024-09-06T10:05:24.122Z CNTRLR received additional controller information: - Z-Wave API version: 1 (official) - Z-Wave chip type: EFR32ZG23 / ZGM230S - node type Controller - controller role: primary - controller is the SIS: false - controller supports timers: false - Z-Wave Classic nodes: 1, 2 -2024-09-06T10:05:24.123Z CNTRLR [Node 002] [Manufacturer Specific] manufacturerId: metadata updated -2024-09-06T10:05:24.123Z CNTRLR [Node 002] [Manufacturer Specific] productType: metadata updated -2024-09-06T10:05:24.124Z CNTRLR [Node 002] [Manufacturer Specific] productId: metadata updated -2024-09-06T10:05:24.124Z CNTRLR [Node 002] [+] [Manufacturer Specific] manufacturerId: 0 -2024-09-06T10:05:24.124Z CNTRLR [Node 002] [+] [Manufacturer Specific] productType: 4 -2024-09-06T10:05:24.124Z CNTRLR [Node 002] [+] [Manufacturer Specific] productId: 4 -2024-09-06T10:05:24.124Z CNTRLR [Node 002] [Version] firmwareVersions: metadata updated -2024-09-06T10:05:24.124Z CNTRLR [Node 002] [+] [Version] firmwareVersions: 7.22 -2024-09-06T10:05:24.124Z CNTRLR [Node 002] [Version] zWaveProtocolVersion: metadata updated -2024-09-06T10:05:24.125Z CNTRLR [Node 002] [+] [Version] zWaveProtocolVersion: "7.22.1" -2024-09-06T10:05:24.125Z CNTRLR [Node 002] [Version] sdkVersion: metadata updated -2024-09-06T10:05:24.125Z CNTRLR [Node 002] [+] [Version] sdkVersion: "7.22.1" -2024-09-06T10:05:24.125Z CNTRLR Interview completed -2024-09-06T10:05:24.125Z DRIVER all queues idle -2024-09-06T10:05:24.304Z SERIAL « 0x010b00a8000201029f0400da1c (13 bytes) -2024-09-06T10:05:24.305Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:42.106Z DRIVER ███████╗ ██╗ ██╗ █████╗ ██╗ ██╗ ███████╗ ██╗ ███████╗ - ╚══███╔╝ ██║ ██║ ██╔══██╗ ██║ ██║ ██╔════╝ ██║ ██╔════╝ - ███╔╝ █████╗ ██║ █╗ ██║ ███████║ ██║ ██║ █████╗ ██║ ███████╗ - ███╔╝ ╚════╝ ██║███╗██║ ██╔══██║ ╚██╗ ██╔╝ ██╔══╝ ██ ██║ ╚════██║ - ███████╗ ╚███╔███╔╝ ██║ ██║ ╚████╔╝ ███████╗ ╚█████╔╝ ███████║ - ╚══════╝ ╚══╝╚══╝ ╚═╝ ╚═╝ ╚═══╝ ╚══════╝ ╚════╝ ╚══════╝ -2024-09-06T10:06:42.107Z DRIVER version 13.2.0 -2024-09-06T10:06:42.107Z DRIVER -2024-09-06T10:06:42.107Z DRIVER starting driver... -2024-09-06T10:06:42.107Z DRIVER opening serial port /dev/serial/by-id/usb-Silicon_Labs_CP2102N_USB_to_UART_Bri - dge_Controller_ca4d95064355ee118d4d1294de9da576-if00-port0 -2024-09-06T10:06:42.115Z DRIVER serial port opened -2024-09-06T10:06:42.115Z SERIAL » 0x15 (1 bytes) -2024-09-06T10:06:43.118Z DRIVER loading configuration... -2024-09-06T10:06:43.120Z CONFIG version 13.2.0 -2024-09-06T10:06:43.437Z DRIVER beginning interview... -2024-09-06T10:06:43.438Z DRIVER added request handler for AddNodeToNetwork (0x4a)... - 1 registered -2024-09-06T10:06:43.438Z DRIVER added request handler for RemoveNodeFromNetwork (0x4b)... - 1 registered -2024-09-06T10:06:43.438Z DRIVER added request handler for ReplaceFailedNode (0x63)... - 1 registered -2024-09-06T10:06:43.438Z DRIVER added request handler for SetLearnMode (0x50)... - 1 registered -2024-09-06T10:06:43.438Z CNTRLR querying Serial API capabilities... -2024-09-06T10:06:43.439Z SERIAL » 0x01030007fb (5 bytes) -2024-09-06T10:06:43.440Z DRIVER » [REQ] [GetSerialApiCapabilities] -2024-09-06T10:06:43.453Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:43.453Z SERIAL « 0x012b01070716000000040004f6873e88cf2bc05ffbd7fde09700008000808680b (45 bytes) - a0500700000ee7fc000000041 -2024-09-06T10:06:43.453Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:43.454Z DRIVER « [RES] [GetSerialApiCapabilities] - payload: 0x0716000000040004f6873e88cf2bc05ffbd7fde09700008000808680ba0500700 - 000ee7fc0000000 -2024-09-06T10:06:43.455Z CNTRLR received API capabilities: - firmware version: 7.22 - manufacturer ID: 0x00 - product type: 0x04 - product ID: 0x04 - supported functions: - · GetSerialApiInitData (0x02) - · SetApplicationNodeInformation (0x03) - · GetControllerCapabilities (0x05) - · SetSerialApiTimeouts (0x06) - · GetSerialApiCapabilities (0x07) - · SoftReset (0x08) - · GetProtocolVersion (0x09) - · SerialAPIStarted (0x0a) - · SerialAPISetup (0x0b) - · SetRFReceiveMode (0x10) - · SendNodeInformation (0x12) - · SendData (0x13) - · SendDataMulticast (0x14) - · GetControllerVersion (0x15) - · SendDataAbort (0x16) - · FUNC_ID_ZW_GET_RANDOM (0x1c) - · GetControllerId (0x20) - · UNKNOWN_FUNC_MEMORY_GET_BYTE (0x21) - · UNKNOWN_FUNC_MEMORY_PUT_BYTE (0x22) - · UNKNOWN_FUNC_MEMORY_GET_BUFFER (0x23) - · UNKNOWN_FUNC_MEMORY_PUT_BUFFER (0x24) - · EnterBootloader (0x27) - · UNKNOWN_FUNC_UNKNOWN_0x28 (0x28) - · GetNVMId (0x29) - · ExtNVMReadLongBuffer (0x2a) - · ExtNVMReadLongByte (0x2c) - · NVMOperations (0x2e) - · ClearTxTimers (0x37) - · GetTxTimers (0x38) - · ClearNetworkStats (0x39) - · GetNetworkStats (0x3a) - · GetBackgroundRSSI (0x3b) - · SetListenBeforeTalkThreshold (0x3c) - · ExtendedNVMOperations (0x3d) - · RemoveSpecificNodeIdFromNetwork (0x3f) - · GetNodeProtocolInfo (0x41) - · HardReset (0x42) - · FUNC_ID_ZW_REPLICATION_COMMAND_COMPLETE (0x44) - · FUNC_ID_ZW_REPLICATION_SEND_DATA (0x45) - · AssignReturnRoute (0x46) - · DeleteReturnRoute (0x47) - · RequestNodeNeighborUpdate (0x48) - · ApplicationUpdateRequest (0x49) - · AddNodeToNetwork (0x4a) - · RemoveNodeFromNetwork (0x4b) - · AddPrimaryController (0x4d) - · AssignPriorityReturnRoute (0x4f) - · SetLearnMode (0x50) - · AssignSUCReturnRoute (0x51) - · RequestNetworkUpdate (0x53) - · SetSUCNodeId (0x54) - · DeleteSUCReturnRoute (0x55) - · GetSUCNodeId (0x56) - · SendSUCNodeId (0x57) - · AssignPrioritySUCReturnRoute (0x58) - · ExploreRequestInclusion (0x5e) - · ExploreRequestExclusion (0x5f) - · RequestNodeInfo (0x60) - · RemoveFailedNode (0x61) - · IsFailedNode (0x62) - · ReplaceFailedNode (0x63) - · undefined (0x65) - · RequestProtocolCCEncryption (0x68) - · GetRoutingInfo (0x80) - · LockUnlockLastRoute (0x90) - · GetPriorityRoute (0x92) - · SetPriorityRoute (0x93) - · UNKNOWN_FUNC_UNKNOWN_0x98 (0x98) - · VirtualNodeSetNodeInfo (0xa0) - · VirtualNodeSendNodeInfo (0xa2) - · VirtualNodeSetLearnMode (0xa4) - · GetVirtualNodes (0xa5) - · IsVirtualNode (0xa6) - · BridgeApplicationCommand (0xa8) - · SendDataBridge (0xa9) - · SendDataMulticastBridge (0xab) - · GetLibrary (0xbd) - · SendTestFrame (0xbe) - · GetProtocolStatus (0xbf) - · StartWatchdog (0xd2) - · StopWatchdog (0xd3) - · SetMaximumRoutingAttempts (0xd4) - · SetMaxSmartStartInclusionRequestInterval (0xd6) - · undefined (0xd7) - · undefined (0xd8) - · Shutdown (0xd9) - · GetLongRangeNodes (0xda) - · GetLongRangeChannel (0xdb) - · SetLongRangeChannel (0xdc) - · SetLongRangeShadowNodeIDs (0xdd) - · Proprietary_DE (0xde) - · Proprietary_DF (0xdf) - · Proprietary_E7 (0xe7) - · Proprietary_E8 (0xe8) -2024-09-06T10:06:43.455Z CNTRLR querying additional controller information... -2024-09-06T10:06:43.456Z SERIAL » 0x01030002fe (5 bytes) -2024-09-06T10:06:43.456Z DRIVER » [REQ] [GetSerialApiInitData] -2024-09-06T10:06:43.464Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:43.465Z SERIAL « 0x012501020a001d030000000000000000000000000000000000000000000000000 (39 bytes) - 00000000800c5 -2024-09-06T10:06:43.465Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:43.466Z DRIVER « [RES] [GetSerialApiInitData] - payload: 0x0a001d03000000000000000000000000000000000000000000000000000000000 - 800 -2024-09-06T10:06:43.466Z CNTRLR received additional controller information: - Z-Wave API version: 1 (official) - Z-Wave chip type: EFR32ZG23 / ZGM230S - node type Controller - controller role: primary - controller is the SIS: false - controller supports timers: false - Z-Wave Classic nodes: 1, 2 -2024-09-06T10:06:43.466Z CNTRLR querying version info... -2024-09-06T10:06:43.467Z SERIAL » 0x01030015e9 (5 bytes) -2024-09-06T10:06:43.467Z DRIVER » [REQ] [GetControllerVersion] -2024-09-06T10:06:43.473Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:43.473Z SERIAL « 0x011001155a2d5761766520372e3232000797 (18 bytes) -2024-09-06T10:06:43.474Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:43.474Z DRIVER « [RES] [GetControllerVersion] - payload: 0x5a2d5761766520372e32320007 -2024-09-06T10:06:43.475Z CNTRLR received version info: - controller type: Bridge Controller - library version: Z-Wave 7.22 -2024-09-06T10:06:43.475Z CNTRLR querying protocol version info... -2024-09-06T10:06:43.476Z SERIAL » 0x01030009f5 (5 bytes) -2024-09-06T10:06:43.476Z DRIVER » [REQ] [GetProtocolVersion] -2024-09-06T10:06:43.482Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:43.483Z SERIAL « 0x0119010900071601abcd63636639623665613165616566313162c3 (27 bytes) -2024-09-06T10:06:43.483Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:43.483Z DRIVER « [RES] [GetProtocolVersion] - payload: 0x00071601abcd63636639623665613165616566313162 -2024-09-06T10:06:43.484Z CNTRLR received protocol version info: - protocol type: Z-Wave - protocol version: 7.22.1 - appl. framework build no.: 43981 - git commit hash: 63636639623665613165616566313162 -2024-09-06T10:06:43.484Z CNTRLR querying controller capabilities... -2024-09-06T10:06:43.485Z SERIAL » 0x01030005f9 (5 bytes) -2024-09-06T10:06:43.485Z DRIVER » [REQ] [GetControllerCapabilities] -2024-09-06T10:06:43.490Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:43.491Z SERIAL « 0x0104010506f9 (6 bytes) -2024-09-06T10:06:43.491Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:43.491Z DRIVER « [RES] [GetControllerCapabilities] - payload: 0x06 -2024-09-06T10:06:43.492Z CNTRLR received controller capabilities: - controller role: Inclusion - is the SUC: false - started this network: false - SIS is present: true - was real primary: false -2024-09-06T10:06:43.492Z CNTRLR querying serial API setup capabilities... -2024-09-06T10:06:43.493Z SERIAL » 0x0104000b01f1 (6 bytes) -2024-09-06T10:06:43.493Z DRIVER » [REQ] [SerialAPISetup] - command: GetSupportedCommands - payload: 0x01 -2024-09-06T10:06:43.499Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:43.500Z SERIAL « 0x0116010b01ff9f8007800000008000000000000000800085 (24 bytes) -2024-09-06T10:06:43.500Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:43.500Z DRIVER « [RES] [SerialAPISetup] - command: GetSupportedCommands - payload: 0xff9f80078000000080000000000000008000 -2024-09-06T10:06:43.501Z CNTRLR supported serial API setup commands: - · GetSupportedCommands - · SetTxStatusReport - · SetLongRangeMaximumTxPower - · SetPowerlevel - · GetLongRangeMaximumTxPower - · GetPowerlevel - · GetMaximumPayloadSize - · GetLongRangeMaximumPayloadSize - · SetPowerlevel16Bit - · GetPowerlevel16Bit - · GetRFRegion - · SetRFRegion - · SetNodeIDType -2024-09-06T10:06:43.501Z CNTRLR querying max. payload size... -2024-09-06T10:06:43.502Z SERIAL » 0x0104000b10e0 (6 bytes) -2024-09-06T10:06:43.502Z DRIVER » [REQ] [SerialAPISetup] - command: GetMaximumPayloadSize - payload: 0x10 -2024-09-06T10:06:43.508Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:43.508Z SERIAL « 0x0105010b102ece (7 bytes) -2024-09-06T10:06:43.508Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:43.509Z DRIVER « [RES] [SerialAPISetup] - command: GetMaximumPayloadSize - maximum payload size: 46 bytes -2024-09-06T10:06:43.509Z CNTRLR maximum payload size: 46 bytes -2024-09-06T10:06:43.509Z CNTRLR supported Z-Wave features: - · SmartStart -2024-09-06T10:06:43.510Z CNTRLR Querying configured RF region... -2024-09-06T10:06:43.510Z SERIAL » 0x0104000b20d0 (6 bytes) -2024-09-06T10:06:43.511Z DRIVER » [REQ] [SerialAPISetup] - command: GetRFRegion - payload: 0x20 -2024-09-06T10:06:43.516Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:43.516Z SERIAL « 0x0105010b2000d0 (7 bytes) -2024-09-06T10:06:43.517Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:43.517Z DRIVER « [RES] [SerialAPISetup] - command: GetRFRegion - region: Europe -2024-09-06T10:06:43.518Z CNTRLR The controller is using RF region Europe -2024-09-06T10:06:43.518Z CNTRLR Querying configured max. Long Range powerlevel... -2024-09-06T10:06:43.518Z SERIAL » 0x0104000b05f5 (6 bytes) -2024-09-06T10:06:43.519Z DRIVER » [REQ] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - payload: 0x05 -2024-09-06T10:06:43.524Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:43.524Z SERIAL « 0x0106010b05008c7a (8 bytes) -2024-09-06T10:06:43.524Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:43.525Z DRIVER « [RES] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - max. TX power (LR): 14.0 dBm -2024-09-06T10:06:43.525Z CNTRLR The max. LR powerlevel is 14.0 dBm -2024-09-06T10:06:43.525Z CNTRLR Querying configured Long Range channel information... -2024-09-06T10:06:43.526Z SERIAL » 0x010300db27 (5 bytes) -2024-09-06T10:06:43.526Z DRIVER » [REQ] [GetLongRangeChannel] -2024-09-06T10:06:43.531Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:43.532Z SERIAL « 0x010501db001030 (7 bytes) -2024-09-06T10:06:43.532Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:43.532Z DRIVER « [RES] [GetLongRangeChannel] - payload: 0x0010 -2024-09-06T10:06:43.533Z CNTRLR received Z-Wave Long Range channel information: - channel: Unsupported - supports auto channel selection: true -2024-09-06T10:06:43.533Z CNTRLR Performing soft reset... -2024-09-06T10:06:43.533Z SERIAL » 0x01030008f4 (5 bytes) -2024-09-06T10:06:43.534Z DRIVER » [REQ] [SoftReset] -2024-09-06T10:06:43.537Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:43.538Z CNTRLR Waiting for the controller to reconnect... -2024-09-06T10:06:43.538Z DRIVER all queues idle -2024-09-06T10:06:43.654Z SERIAL « 0x0116000a0700010100085e989f556c568f7400031d00003f (24 bytes) -2024-09-06T10:06:43.656Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:43.657Z DRIVER « [REQ] [SerialAPIStarted] - wake up reason: SoftwareReset - watchdog enabled: false - generic device class: 0x01 - specific device class: 0x00 - always listening: false - supports Long Range: false -2024-09-06T10:06:43.659Z CNTRLR reconnected and restarted -2024-09-06T10:06:43.659Z CNTRLR Starting hardware watchdog... -2024-09-06T10:06:43.660Z CNTRLR Switching serial API to 16-bit node IDs... -2024-09-06T10:06:43.661Z CNTRLR Switching serial API to 8-bit node IDs... -2024-09-06T10:06:43.662Z DRIVER all queues busy -2024-09-06T10:06:43.664Z SERIAL » 0x010300d22e (5 bytes) -2024-09-06T10:06:43.664Z DRIVER » [REQ] [StartWatchdog] -2024-09-06T10:06:43.671Z SERIAL » 0x0105000b800273 (7 bytes) -2024-09-06T10:06:43.671Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 16 bit -2024-09-06T10:06:43.673Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:43.677Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:43.677Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T10:06:43.678Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:43.678Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T10:06:43.679Z CNTRLR Switching to 16-bit node IDs successful -2024-09-06T10:06:43.680Z SERIAL » 0x0105000b800170 (7 bytes) -2024-09-06T10:06:43.680Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 8 bit -2024-09-06T10:06:43.686Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:43.687Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T10:06:43.688Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:43.688Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T10:06:43.689Z CNTRLR Switching to 8-bit node IDs successful -2024-09-06T10:06:43.689Z CNTRLR querying controller IDs... -2024-09-06T10:06:43.690Z SERIAL » 0x01030020dc (5 bytes) -2024-09-06T10:06:43.691Z DRIVER » [REQ] [GetControllerId] -2024-09-06T10:06:43.696Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:43.697Z SERIAL « 0x01080120fd37611c0263 (10 bytes) -2024-09-06T10:06:43.697Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:43.698Z DRIVER « [RES] [GetControllerId] - home ID: 0xfd37611c - own node ID: 2 -2024-09-06T10:06:43.698Z CNTRLR received controller IDs: - home ID: 0xfd37611c - own node ID: 2 -2024-09-06T10:06:43.698Z CNTRLR Enabling TX status report... -2024-09-06T10:06:43.699Z SERIAL » 0x0105000b02ff0c (7 bytes) -2024-09-06T10:06:43.700Z DRIVER » [REQ] [SerialAPISetup] - command: SetTxStatusReport - enabled: true -2024-09-06T10:06:43.705Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:43.706Z SERIAL « 0x0105010b0201f3 (7 bytes) -2024-09-06T10:06:43.706Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:43.707Z DRIVER « [RES] [SerialAPISetup] - command: SetTxStatusReport - success: true -2024-09-06T10:06:43.707Z CNTRLR Enabling TX status report successful... -2024-09-06T10:06:43.707Z CNTRLR finding SUC... -2024-09-06T10:06:43.708Z SERIAL » 0x01030056aa (5 bytes) -2024-09-06T10:06:43.708Z DRIVER » [REQ] [GetSUCNodeId] -2024-09-06T10:06:43.713Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:43.714Z SERIAL « 0x0104015601ad (6 bytes) -2024-09-06T10:06:43.714Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:43.714Z DRIVER « [RES] [GetSUCNodeId] - payload: 0x01 -2024-09-06T10:06:43.715Z CNTRLR SUC has node ID 1 -2024-09-06T10:06:43.715Z DRIVER all queues idle -2024-09-06T10:06:43.724Z CNTRLR [Node 002] [Manufacturer Specific] manufacturerId: metadata updated -2024-09-06T10:06:43.724Z CNTRLR [Node 002] [Manufacturer Specific] productType: metadata updated -2024-09-06T10:06:43.725Z CNTRLR [Node 002] [Manufacturer Specific] productId: metadata updated -2024-09-06T10:06:43.725Z CNTRLR [Node 002] [+] [Manufacturer Specific] manufacturerId: 0 -2024-09-06T10:06:43.725Z CNTRLR [Node 002] [+] [Manufacturer Specific] productType: 4 -2024-09-06T10:06:43.725Z CNTRLR [Node 002] [+] [Manufacturer Specific] productId: 4 -2024-09-06T10:06:43.726Z CNTRLR [Node 002] [Version] firmwareVersions: metadata updated -2024-09-06T10:06:43.726Z CNTRLR [Node 002] [+] [Version] firmwareVersions: 7.22 -2024-09-06T10:06:43.726Z CNTRLR [Node 002] [Version] zWaveProtocolVersion: metadata updated -2024-09-06T10:06:43.726Z CNTRLR [Node 002] [+] [Version] zWaveProtocolVersion: "7.22.1" -2024-09-06T10:06:43.726Z CNTRLR [Node 002] [Version] sdkVersion: metadata updated -2024-09-06T10:06:43.726Z CNTRLR [Node 002] [+] [Version] sdkVersion: "7.22.1" -2024-09-06T10:06:43.726Z CNTRLR Interview completed -2024-09-06T10:06:43.727Z DRIVER No network key for S0 found in cache, communication with secure (S0) devices w - on't work! -2024-09-06T10:06:43.727Z DRIVER No network key for S2 found in cache, communication with secure (S2) devices w - on't work! -2024-09-06T10:06:43.727Z DRIVER driver ready -2024-09-06T10:06:43.727Z CNTRLR [Node 002] Beginning interview - last completed stage: None -2024-09-06T10:06:43.728Z CNTRLR [Node 002] new node, doing a full interview... -2024-09-06T10:06:43.728Z CNTRLR » [Node 002] querying protocol info... -2024-09-06T10:06:43.729Z DRIVER all queues busy -2024-09-06T10:06:43.729Z SERIAL » 0x0104004102b8 (6 bytes) -2024-09-06T10:06:43.730Z DRIVER » [REQ] [GetNodeProtocolInfo] - payload: 0x02 -2024-09-06T10:06:43.735Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:43.735Z SERIAL « 0x010a0141d3960102010000f2 (12 bytes) -2024-09-06T10:06:43.736Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:43.736Z DRIVER « [RES] [GetNodeProtocolInfo] - payload: 0xd3960102010000 -2024-09-06T10:06:43.737Z CNTRLR « [Node 002] received response for protocol info: - basic device class: Static Controller - generic device class: Remote Controller - specific device class: Unused - node type: Controller - is always listening: true - is frequent listening: false - can route messages: true - supports security: false - supports beaming: true - maximum data rate: 100000 kbps - protocol version: 3 -2024-09-06T10:06:43.737Z CNTRLR [Node 002] Interview stage completed: ProtocolInfo -2024-09-06T10:06:43.739Z DRIVER all queues idle -2024-09-06T10:06:43.745Z CNTRLR [Node 002] Embedded device config loaded -2024-09-06T10:06:43.745Z CNTRLR [Node 002] Interview stage completed: OverwriteConfig -2024-09-06T10:06:43.746Z CNTRLR [Node 002] Interview completed -2024-09-06T10:06:43.746Z CNTRLR [Node 002] The node is ready to be used -2024-09-06T10:06:43.747Z CNTRLR [Node 002] The node is alive. -2024-09-06T10:06:43.747Z CNTRLR » [Node 001] querying protocol info... -2024-09-06T10:06:43.747Z DRIVER all queues busy -2024-09-06T10:06:43.747Z SERIAL » 0x0104004101bb (6 bytes) -2024-09-06T10:06:43.748Z DRIVER » [REQ] [GetNodeProtocolInfo] - payload: 0x01 -2024-09-06T10:06:43.757Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:43.758Z SERIAL « 0x010a0141d3960102010000f2 (12 bytes) -2024-09-06T10:06:43.758Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:43.758Z DRIVER « [RES] [GetNodeProtocolInfo] - payload: 0xd3960102010000 -2024-09-06T10:06:43.759Z CNTRLR « [Node 001] received response for protocol info: - basic device class: Static Controller - generic device class: Remote Controller - specific device class: Unused - node type: Controller - is always listening: true - is frequent listening: false - can route messages: true - supports security: false - supports beaming: true - maximum data rate: 100000 kbps - protocol version: 3 -2024-09-06T10:06:43.759Z CNTRLR [Node 001] Interview stage completed: ProtocolInfo -2024-09-06T10:06:43.760Z CNTRLR Determining node status: 1 -2024-09-06T10:06:43.760Z CNTRLR » [Node 001] pinging the node... -2024-09-06T10:06:43.763Z SERIAL » 0x010d00a9020101002500000000017d (15 bytes) -2024-09-06T10:06:43.764Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 1 - └─[NoOperationCC] -2024-09-06T10:06:43.770Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:43.771Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T10:06:43.772Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:43.772Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T10:06:43.804Z SERIAL « 0x011d00a90100000200d97f7f7f7f00000300000000030100007f7f7f7f7fef (31 bytes) -2024-09-06T10:06:43.805Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:43.806Z DRIVER « [REQ] [SendDataBridge] - callback id: 1 - transmit status: OK, took 20 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -39 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T10:06:43.807Z CNTRLR [Node 001] The node is alive. -2024-09-06T10:06:43.808Z CNTRLR « [Node 001] ping successful -2024-09-06T10:06:43.808Z DRIVER all queues idle -2024-09-06T10:06:48.727Z CNTRLR Updating the controller NIF... -2024-09-06T10:06:48.729Z DRIVER all queues busy -2024-09-06T10:06:48.730Z SERIAL » 0x010f0003010100085e989f556c568f7436 (17 bytes) -2024-09-06T10:06:48.731Z DRIVER » [REQ] [SetApplicationNodeInformation] - is listening: true - generic device class: 0x01 - specific device class: 0x00 - supported CCs: - · Z-Wave Plus Info - · Security - · Security 2 - · Transport Service - · Supervision - · CRC-16 Encapsulation - · Multi Command - · Inclusion Controller - controlled CCs: -2024-09-06T10:06:48.737Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:48.739Z CNTRLR performing hard reset... -2024-09-06T10:06:48.741Z SERIAL » 0x0104004202bb (6 bytes) -2024-09-06T10:06:48.742Z DRIVER » [REQ] [HardReset] - callback id: 2 -2024-09-06T10:06:48.746Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:48.766Z SERIAL « 0x0104004202bb (6 bytes) -2024-09-06T10:06:48.767Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:48.769Z DRIVER « [REQ] [HardReset] - callback id: 2 -2024-09-06T10:06:48.770Z CNTRLR hard reset succeeded -2024-09-06T10:06:48.770Z CNTRLR querying Serial API capabilities... -2024-09-06T10:06:48.772Z SERIAL » 0x01030007fb (5 bytes) -2024-09-06T10:06:48.773Z DRIVER » [REQ] [GetSerialApiCapabilities] -2024-09-06T10:06:48.782Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:48.783Z SERIAL « 0x012b01070716000000040004f6873e88cf2bc05ffbd7fde09700008000808680b (45 bytes) - a0500700000ee7fc000000041 -2024-09-06T10:06:48.783Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:48.785Z DRIVER « [RES] [GetSerialApiCapabilities] - payload: 0x0716000000040004f6873e88cf2bc05ffbd7fde09700008000808680ba0500700 - 000ee7fc0000000 -2024-09-06T10:06:48.786Z CNTRLR received API capabilities: - firmware version: 7.22 - manufacturer ID: 0x00 - product type: 0x04 - product ID: 0x04 - supported functions: - · GetSerialApiInitData (0x02) - · SetApplicationNodeInformation (0x03) - · GetControllerCapabilities (0x05) - · SetSerialApiTimeouts (0x06) - · GetSerialApiCapabilities (0x07) - · SoftReset (0x08) - · GetProtocolVersion (0x09) - · SerialAPIStarted (0x0a) - · SerialAPISetup (0x0b) - · SetRFReceiveMode (0x10) - · SendNodeInformation (0x12) - · SendData (0x13) - · SendDataMulticast (0x14) - · GetControllerVersion (0x15) - · SendDataAbort (0x16) - · FUNC_ID_ZW_GET_RANDOM (0x1c) - · GetControllerId (0x20) - · UNKNOWN_FUNC_MEMORY_GET_BYTE (0x21) - · UNKNOWN_FUNC_MEMORY_PUT_BYTE (0x22) - · UNKNOWN_FUNC_MEMORY_GET_BUFFER (0x23) - · UNKNOWN_FUNC_MEMORY_PUT_BUFFER (0x24) - · EnterBootloader (0x27) - · UNKNOWN_FUNC_UNKNOWN_0x28 (0x28) - · GetNVMId (0x29) - · ExtNVMReadLongBuffer (0x2a) - · ExtNVMReadLongByte (0x2c) - · NVMOperations (0x2e) - · ClearTxTimers (0x37) - · GetTxTimers (0x38) - · ClearNetworkStats (0x39) - · GetNetworkStats (0x3a) - · GetBackgroundRSSI (0x3b) - · SetListenBeforeTalkThreshold (0x3c) - · ExtendedNVMOperations (0x3d) - · RemoveSpecificNodeIdFromNetwork (0x3f) - · GetNodeProtocolInfo (0x41) - · HardReset (0x42) - · FUNC_ID_ZW_REPLICATION_COMMAND_COMPLETE (0x44) - · FUNC_ID_ZW_REPLICATION_SEND_DATA (0x45) - · AssignReturnRoute (0x46) - · DeleteReturnRoute (0x47) - · RequestNodeNeighborUpdate (0x48) - · ApplicationUpdateRequest (0x49) - · AddNodeToNetwork (0x4a) - · RemoveNodeFromNetwork (0x4b) - · AddPrimaryController (0x4d) - · AssignPriorityReturnRoute (0x4f) - · SetLearnMode (0x50) - · AssignSUCReturnRoute (0x51) - · RequestNetworkUpdate (0x53) - · SetSUCNodeId (0x54) - · DeleteSUCReturnRoute (0x55) - · GetSUCNodeId (0x56) - · SendSUCNodeId (0x57) - · AssignPrioritySUCReturnRoute (0x58) - · ExploreRequestInclusion (0x5e) - · ExploreRequestExclusion (0x5f) - · RequestNodeInfo (0x60) - · RemoveFailedNode (0x61) - · IsFailedNode (0x62) - · ReplaceFailedNode (0x63) - · undefined (0x65) - · RequestProtocolCCEncryption (0x68) - · GetRoutingInfo (0x80) - · LockUnlockLastRoute (0x90) - · GetPriorityRoute (0x92) - · SetPriorityRoute (0x93) - · UNKNOWN_FUNC_UNKNOWN_0x98 (0x98) - · VirtualNodeSetNodeInfo (0xa0) - · VirtualNodeSendNodeInfo (0xa2) - · VirtualNodeSetLearnMode (0xa4) - · GetVirtualNodes (0xa5) - · IsVirtualNode (0xa6) - · BridgeApplicationCommand (0xa8) - · SendDataBridge (0xa9) - · SendDataMulticastBridge (0xab) - · GetLibrary (0xbd) - · SendTestFrame (0xbe) - · GetProtocolStatus (0xbf) - · StartWatchdog (0xd2) - · StopWatchdog (0xd3) - · SetMaximumRoutingAttempts (0xd4) - · SetMaxSmartStartInclusionRequestInterval (0xd6) - · undefined (0xd7) - · undefined (0xd8) - · Shutdown (0xd9) - · GetLongRangeNodes (0xda) - · GetLongRangeChannel (0xdb) - · SetLongRangeChannel (0xdc) - · SetLongRangeShadowNodeIDs (0xdd) - · Proprietary_DE (0xde) - · Proprietary_DF (0xdf) - · Proprietary_E7 (0xe7) - · Proprietary_E8 (0xe8) -2024-09-06T10:06:48.786Z CNTRLR querying additional controller information... -2024-09-06T10:06:48.788Z SERIAL » 0x01030002fe (5 bytes) -2024-09-06T10:06:48.789Z DRIVER » [REQ] [GetSerialApiInitData] -2024-09-06T10:06:48.798Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:48.799Z SERIAL « 0x012501020a001d010000000000000000000000000000000000000000000000000 (39 bytes) - 00000000800c7 -2024-09-06T10:06:48.800Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:48.801Z DRIVER « [RES] [GetSerialApiInitData] - payload: 0x0a001d01000000000000000000000000000000000000000000000000000000000 - 800 -2024-09-06T10:06:48.802Z CNTRLR received additional controller information: - Z-Wave API version: 1 (official) - Z-Wave chip type: EFR32ZG23 / ZGM230S - node type Controller - controller role: primary - controller is the SIS: false - controller supports timers: false - Z-Wave Classic nodes: 1 -2024-09-06T10:06:48.802Z CNTRLR querying version info... -2024-09-06T10:06:48.803Z SERIAL » 0x01030015e9 (5 bytes) -2024-09-06T10:06:48.804Z DRIVER » [REQ] [GetControllerVersion] -2024-09-06T10:06:48.810Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:48.811Z SERIAL « 0x011001155a2d5761766520372e3232000797 (18 bytes) -2024-09-06T10:06:48.812Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:48.813Z DRIVER « [RES] [GetControllerVersion] - payload: 0x5a2d5761766520372e32320007 -2024-09-06T10:06:48.814Z CNTRLR received version info: - controller type: Bridge Controller - library version: Z-Wave 7.22 -2024-09-06T10:06:48.814Z CNTRLR querying protocol version info... -2024-09-06T10:06:48.815Z SERIAL » 0x01030009f5 (5 bytes) -2024-09-06T10:06:48.815Z DRIVER » [REQ] [GetProtocolVersion] -2024-09-06T10:06:48.822Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:48.824Z SERIAL « 0x0119010900071601abcd63636639623665613165616566313162c3 (27 bytes) -2024-09-06T10:06:48.824Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:48.825Z DRIVER « [RES] [GetProtocolVersion] - payload: 0x00071601abcd63636639623665613165616566313162 -2024-09-06T10:06:48.826Z CNTRLR received protocol version info: - protocol type: Z-Wave - protocol version: 7.22.1 - appl. framework build no.: 43981 - git commit hash: 63636639623665613165616566313162 -2024-09-06T10:06:48.826Z CNTRLR querying controller capabilities... -2024-09-06T10:06:48.827Z SERIAL » 0x01030005f9 (5 bytes) -2024-09-06T10:06:48.827Z DRIVER » [REQ] [GetControllerCapabilities] -2024-09-06T10:06:48.832Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:48.833Z SERIAL « 0x0104010528d7 (6 bytes) -2024-09-06T10:06:48.833Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:48.834Z DRIVER « [RES] [GetControllerCapabilities] - payload: 0x28 -2024-09-06T10:06:48.834Z CNTRLR received controller capabilities: - controller role: Primary - is the SUC: false - started this network: true - SIS is present: false - was real primary: true -2024-09-06T10:06:48.834Z CNTRLR querying serial API setup capabilities... -2024-09-06T10:06:48.835Z SERIAL » 0x0104000b01f1 (6 bytes) -2024-09-06T10:06:48.835Z DRIVER » [REQ] [SerialAPISetup] - command: GetSupportedCommands - payload: 0x01 -2024-09-06T10:06:48.842Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:48.842Z SERIAL « 0x0116010b01ff9f8007800000008000000000000000800085 (24 bytes) -2024-09-06T10:06:48.842Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:48.842Z DRIVER « [RES] [SerialAPISetup] - command: GetSupportedCommands - payload: 0xff9f80078000000080000000000000008000 -2024-09-06T10:06:48.843Z CNTRLR supported serial API setup commands: - · GetSupportedCommands - · SetTxStatusReport - · SetLongRangeMaximumTxPower - · SetPowerlevel - · GetLongRangeMaximumTxPower - · GetPowerlevel - · GetMaximumPayloadSize - · GetLongRangeMaximumPayloadSize - · SetPowerlevel16Bit - · GetPowerlevel16Bit - · GetRFRegion - · SetRFRegion - · SetNodeIDType -2024-09-06T10:06:48.843Z CNTRLR querying max. payload size... -2024-09-06T10:06:48.844Z SERIAL » 0x0104000b10e0 (6 bytes) -2024-09-06T10:06:48.844Z DRIVER » [REQ] [SerialAPISetup] - command: GetMaximumPayloadSize - payload: 0x10 -2024-09-06T10:06:48.849Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:48.850Z SERIAL « 0x0105010b102ece (7 bytes) -2024-09-06T10:06:48.850Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:48.851Z DRIVER « [RES] [SerialAPISetup] - command: GetMaximumPayloadSize - maximum payload size: 46 bytes -2024-09-06T10:06:48.851Z CNTRLR maximum payload size: 46 bytes -2024-09-06T10:06:48.851Z CNTRLR supported Z-Wave features: - · SmartStart -2024-09-06T10:06:48.851Z CNTRLR Querying configured RF region... -2024-09-06T10:06:48.852Z SERIAL » 0x0104000b20d0 (6 bytes) -2024-09-06T10:06:48.852Z DRIVER » [REQ] [SerialAPISetup] - command: GetRFRegion - payload: 0x20 -2024-09-06T10:06:48.858Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:48.859Z SERIAL « 0x0105010b2000d0 (7 bytes) -2024-09-06T10:06:48.859Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:48.859Z DRIVER « [RES] [SerialAPISetup] - command: GetRFRegion - region: Europe -2024-09-06T10:06:48.860Z CNTRLR The controller is using RF region Europe -2024-09-06T10:06:48.860Z CNTRLR Querying configured max. Long Range powerlevel... -2024-09-06T10:06:48.861Z SERIAL » 0x0104000b05f5 (6 bytes) -2024-09-06T10:06:48.861Z DRIVER » [REQ] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - payload: 0x05 -2024-09-06T10:06:48.866Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:48.866Z SERIAL « 0x0106010b05008c7a (8 bytes) -2024-09-06T10:06:48.867Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:48.867Z DRIVER « [RES] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - max. TX power (LR): 14.0 dBm -2024-09-06T10:06:48.868Z CNTRLR The max. LR powerlevel is 14.0 dBm -2024-09-06T10:06:48.868Z CNTRLR Querying configured Long Range channel information... -2024-09-06T10:06:48.868Z SERIAL » 0x010300db27 (5 bytes) -2024-09-06T10:06:48.869Z DRIVER » [REQ] [GetLongRangeChannel] -2024-09-06T10:06:48.874Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:48.875Z SERIAL « 0x010501db001030 (7 bytes) -2024-09-06T10:06:48.875Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:48.875Z DRIVER « [RES] [GetLongRangeChannel] - payload: 0x0010 -2024-09-06T10:06:48.876Z CNTRLR received Z-Wave Long Range channel information: - channel: Unsupported - supports auto channel selection: true -2024-09-06T10:06:48.876Z CNTRLR Performing soft reset... -2024-09-06T10:06:48.877Z SERIAL » 0x01030008f4 (5 bytes) -2024-09-06T10:06:48.877Z DRIVER » [REQ] [SoftReset] -2024-09-06T10:06:48.881Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:48.882Z CNTRLR Waiting for the controller to reconnect... -2024-09-06T10:06:48.882Z DRIVER all queues idle -2024-09-06T10:06:48.988Z SERIAL « 0x0116000a0700010100085e989f556c568f7400031d00003f (24 bytes) -2024-09-06T10:06:48.989Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:48.990Z DRIVER « [REQ] [SerialAPIStarted] - wake up reason: SoftwareReset - watchdog enabled: false - generic device class: 0x01 - specific device class: 0x00 - always listening: false - supports Long Range: false -2024-09-06T10:06:48.990Z CNTRLR reconnected and restarted -2024-09-06T10:06:48.991Z CNTRLR Starting hardware watchdog... -2024-09-06T10:06:48.991Z CNTRLR Switching serial API to 16-bit node IDs... -2024-09-06T10:06:48.992Z CNTRLR Switching serial API to 8-bit node IDs... -2024-09-06T10:06:48.992Z DRIVER all queues busy -2024-09-06T10:06:48.993Z SERIAL » 0x010300d22e (5 bytes) -2024-09-06T10:06:48.993Z DRIVER » [REQ] [StartWatchdog] -2024-09-06T10:06:48.994Z SERIAL » 0x0105000b800273 (7 bytes) -2024-09-06T10:06:48.994Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 16 bit -2024-09-06T10:06:49.000Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:49.000Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:49.001Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T10:06:49.001Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:49.002Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T10:06:49.003Z CNTRLR Switching to 16-bit node IDs successful -2024-09-06T10:06:49.003Z SERIAL » 0x0105000b800170 (7 bytes) -2024-09-06T10:06:49.004Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 8 bit -2024-09-06T10:06:49.009Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:49.010Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T10:06:49.010Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:49.010Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T10:06:49.011Z CNTRLR Switching to 8-bit node IDs successful -2024-09-06T10:06:49.011Z CNTRLR querying controller IDs... -2024-09-06T10:06:49.011Z SERIAL » 0x01030020dc (5 bytes) -2024-09-06T10:06:49.012Z DRIVER » [REQ] [GetControllerId] -2024-09-06T10:06:49.017Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:49.017Z SERIAL « 0x01080120d02b0322010d (10 bytes) -2024-09-06T10:06:49.018Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:49.018Z DRIVER « [RES] [GetControllerId] - home ID: 0xd02b0322 - own node ID: 1 -2024-09-06T10:06:49.018Z CNTRLR received controller IDs: - home ID: 0xd02b0322 - own node ID: 1 -2024-09-06T10:06:49.019Z CNTRLR Enabling TX status report... -2024-09-06T10:06:49.019Z SERIAL » 0x0105000b02ff0c (7 bytes) -2024-09-06T10:06:49.019Z DRIVER » [REQ] [SerialAPISetup] - command: SetTxStatusReport - enabled: true -2024-09-06T10:06:49.024Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:49.025Z SERIAL « 0x0105010b0201f3 (7 bytes) -2024-09-06T10:06:49.025Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:49.025Z DRIVER « [RES] [SerialAPISetup] - command: SetTxStatusReport - success: true -2024-09-06T10:06:49.026Z CNTRLR Enabling TX status report successful... -2024-09-06T10:06:49.026Z CNTRLR finding SUC... -2024-09-06T10:06:49.027Z SERIAL » 0x01030056aa (5 bytes) -2024-09-06T10:06:49.027Z DRIVER » [REQ] [GetSUCNodeId] -2024-09-06T10:06:49.032Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:49.032Z SERIAL « 0x0104015600ac (6 bytes) -2024-09-06T10:06:49.032Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:49.032Z DRIVER « [RES] [GetSUCNodeId] - payload: 0x00 -2024-09-06T10:06:49.033Z CNTRLR No SUC present in the network -2024-09-06T10:06:49.033Z CNTRLR There is no SUC/SIS in the network - promoting ourselves... -2024-09-06T10:06:49.033Z SERIAL » 0x01080054010125010384 (10 bytes) -2024-09-06T10:06:49.034Z DRIVER » [REQ] [SetSUCNodeId] - payload: 0x0101250103 -2024-09-06T10:06:49.041Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:49.041Z SERIAL « 0x0104015401af (6 bytes) -2024-09-06T10:06:49.041Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:49.042Z DRIVER « [RES] [SetSUCNodeId] - was executed: true -2024-09-06T10:06:49.042Z CNTRLR Promotion to SUC/SIS succeeded. -2024-09-06T10:06:49.043Z DRIVER all queues idle -2024-09-06T10:06:49.046Z CNTRLR [Node 001] [Manufacturer Specific] manufacturerId: metadata updated -2024-09-06T10:06:49.046Z CNTRLR [Node 001] [Manufacturer Specific] productType: metadata updated -2024-09-06T10:06:49.047Z CNTRLR [Node 001] [Manufacturer Specific] productId: metadata updated -2024-09-06T10:06:49.047Z CNTRLR [Node 001] [+] [Manufacturer Specific] manufacturerId: 0 -2024-09-06T10:06:49.047Z CNTRLR [Node 001] [+] [Manufacturer Specific] productType: 4 -2024-09-06T10:06:49.047Z CNTRLR [Node 001] [+] [Manufacturer Specific] productId: 4 -2024-09-06T10:06:49.047Z CNTRLR [Node 001] [Version] firmwareVersions: metadata updated -2024-09-06T10:06:49.047Z CNTRLR [Node 001] [+] [Version] firmwareVersions: 7.22 -2024-09-06T10:06:49.047Z CNTRLR [Node 001] [Version] zWaveProtocolVersion: metadata updated -2024-09-06T10:06:49.047Z CNTRLR [Node 001] [+] [Version] zWaveProtocolVersion: "7.22.1" -2024-09-06T10:06:49.047Z CNTRLR [Node 001] [Version] sdkVersion: metadata updated -2024-09-06T10:06:49.047Z CNTRLR [Node 001] [+] [Version] sdkVersion: "7.22.1" -2024-09-06T10:06:49.047Z CNTRLR Interview completed -2024-09-06T10:06:49.047Z DRIVER Network key for S0 configured, enabling S0 security manager... -2024-09-06T10:06:49.048Z DRIVER At least one network key for S2 configured, enabling S2 security manager... -2024-09-06T10:06:49.048Z DRIVER At least one network key for Z-Wave Long Range configured, enabling security m - anager... -2024-09-06T10:06:49.048Z DRIVER driver ready -2024-09-06T10:06:49.049Z CNTRLR [Node 001] Beginning interview - last completed stage: None -2024-09-06T10:06:49.049Z CNTRLR [Node 001] new node, doing a full interview... -2024-09-06T10:06:49.049Z CNTRLR » [Node 001] querying protocol info... -2024-09-06T10:06:49.049Z DRIVER all queues busy -2024-09-06T10:06:49.049Z SERIAL » 0x0104004101bb (6 bytes) -2024-09-06T10:06:49.050Z DRIVER » [REQ] [GetNodeProtocolInfo] - payload: 0x01 -2024-09-06T10:06:49.055Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:49.056Z SERIAL « 0x010a0141d3960102010000f2 (12 bytes) -2024-09-06T10:06:49.056Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:49.056Z DRIVER « [RES] [GetNodeProtocolInfo] - payload: 0xd3960102010000 -2024-09-06T10:06:49.057Z CNTRLR « [Node 001] received response for protocol info: - basic device class: Static Controller - generic device class: Remote Controller - specific device class: Unused - node type: Controller - is always listening: true - is frequent listening: false - can route messages: true - supports security: false - supports beaming: true - maximum data rate: 100000 kbps - protocol version: 3 -2024-09-06T10:06:49.057Z CNTRLR [Node 001] Interview stage completed: ProtocolInfo -2024-09-06T10:06:49.058Z DRIVER all queues idle -2024-09-06T10:06:49.059Z CNTRLR [Node 001] Embedded device config loaded -2024-09-06T10:06:49.059Z CNTRLR [Node 001] Interview stage completed: OverwriteConfig -2024-09-06T10:06:49.059Z CNTRLR [Node 001] Interview completed -2024-09-06T10:06:49.059Z CNTRLR [Node 001] The node is ready to be used -2024-09-06T10:06:49.060Z CNTRLR All nodes are ready to be used -2024-09-06T10:06:49.060Z CNTRLR [Node 001] The node is alive. -2024-09-06T10:06:53.772Z DRIVER all queues busy -2024-09-06T10:06:53.774Z SERIAL » 0x0105005081042f (7 bytes) -2024-09-06T10:06:53.775Z DRIVER » [REQ] [SetLearnMode] - callback id: 4 - intent: Inclusion -2024-09-06T10:06:53.781Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:53.782Z SERIAL « 0x0104015001ab (6 bytes) -2024-09-06T10:06:53.783Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:53.784Z DRIVER « [RES] [SetLearnMode] - success: true -2024-09-06T10:06:53.786Z DRIVER all queues idle -2024-09-06T10:06:53.986Z SERIAL « 0x0107005004010200af (9 bytes) -2024-09-06T10:06:53.986Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:53.987Z DRIVER « [REQ] [SetLearnMode] - callback id: 4 - status: Started - assigned node id: 2 -2024-09-06T10:06:53.987Z DRIVER handling request SetLearnMode (80) -2024-09-06T10:06:53.987Z DRIVER 1 handler registered! -2024-09-06T10:06:53.987Z DRIVER invoking handler #0 -2024-09-06T10:06:53.987Z DRIVER the message was handled -2024-09-06T10:06:54.059Z DRIVER all queues busy -2024-09-06T10:06:54.061Z SERIAL » 0x0103003bc7 (5 bytes) -2024-09-06T10:06:54.062Z DRIVER » [REQ] [GetBackgroundRSSI] -2024-09-06T10:06:54.073Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:54.074Z SERIAL « 0x0107013b8080807f3d (9 bytes) -2024-09-06T10:06:54.074Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:54.075Z DRIVER « [RES] [GetBackgroundRSSI] - channel 0: -128 dBm - channel 1: -128 dBm - channel 2: -128 dBm - channel 3: N/A -2024-09-06T10:06:54.076Z DRIVER all queues idle -2024-09-06T10:06:54.509Z SERIAL « 0x01060049100100a1 (8 bytes) -2024-09-06T10:06:54.510Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:54.510Z DRIVER « [REQ] [ApplicationUpdateRequest] - type: SUC_IdChanged - SUC node ID: 1 -2024-09-06T10:06:54.526Z SERIAL « 0x0107005004050200ab (9 bytes) -2024-09-06T10:06:54.527Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:54.527Z DRIVER « [REQ] [SetLearnMode] - callback id: 4 - status: ProtocolDone - assigned node id: 2 -2024-09-06T10:06:54.527Z DRIVER handling request SetLearnMode (80) -2024-09-06T10:06:54.527Z DRIVER 1 handler registered! -2024-09-06T10:06:54.527Z DRIVER invoking handler #0 -2024-09-06T10:06:54.528Z DRIVER the message was handled -2024-09-06T10:06:54.528Z DRIVER waiting for security bootstrapping... -2024-09-06T10:06:54.529Z CNTRLR querying controller IDs... -2024-09-06T10:06:54.529Z DRIVER all queues busy -2024-09-06T10:06:54.530Z SERIAL » 0x01030020dc (5 bytes) -2024-09-06T10:06:54.530Z DRIVER » [REQ] [GetControllerId] -2024-09-06T10:06:54.535Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:54.536Z SERIAL « 0x01080120de273aaf02b8 (10 bytes) -2024-09-06T10:06:54.536Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:54.536Z DRIVER « [RES] [GetControllerId] - home ID: 0xde273aaf - own node ID: 2 -2024-09-06T10:06:54.537Z CNTRLR received controller IDs: - home ID: 0xde273aaf - own node ID: 2 -2024-09-06T10:06:54.537Z DRIVER Joined network with home ID 0xde273aaf, switching to new network cache... -2024-09-06T10:06:54.537Z CNTRLR querying controller capabilities... -2024-09-06T10:06:54.538Z SERIAL » 0x01030005f9 (5 bytes) -2024-09-06T10:06:54.538Z DRIVER » [REQ] [GetControllerCapabilities] -2024-09-06T10:06:54.543Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:54.543Z SERIAL « 0x0104010506f9 (6 bytes) -2024-09-06T10:06:54.543Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:54.544Z DRIVER « [RES] [GetControllerCapabilities] - payload: 0x06 -2024-09-06T10:06:54.544Z CNTRLR received controller capabilities: - controller role: Inclusion - is the SUC: false - started this network: false - SIS is present: true - was real primary: false -2024-09-06T10:06:54.544Z CNTRLR querying additional controller information... -2024-09-06T10:06:54.545Z SERIAL » 0x01030002fe (5 bytes) -2024-09-06T10:06:54.545Z DRIVER » [REQ] [GetSerialApiInitData] -2024-09-06T10:06:54.553Z SERIAL « [ACK] (0x06) -2024-09-06T10:06:54.554Z SERIAL « 0x012501020a001d030000000000000000000000000000000000000000000000000 (39 bytes) - 00000000800c5 -2024-09-06T10:06:54.554Z SERIAL » [ACK] (0x06) -2024-09-06T10:06:54.554Z DRIVER « [RES] [GetSerialApiInitData] - payload: 0x0a001d03000000000000000000000000000000000000000000000000000000000 - 800 -2024-09-06T10:06:54.555Z CNTRLR received additional controller information: - Z-Wave API version: 1 (official) - Z-Wave chip type: EFR32ZG23 / ZGM230S - node type Controller - controller role: primary - controller is the SIS: false - controller supports timers: false - Z-Wave Classic nodes: 1, 2 -2024-09-06T10:06:54.556Z CNTRLR [Node 002] [Manufacturer Specific] manufacturerId: metadata updated -2024-09-06T10:06:54.556Z CNTRLR [Node 002] [Manufacturer Specific] productType: metadata updated -2024-09-06T10:06:54.556Z CNTRLR [Node 002] [Manufacturer Specific] productId: metadata updated -2024-09-06T10:06:54.556Z CNTRLR [Node 002] [+] [Manufacturer Specific] manufacturerId: 0 -2024-09-06T10:06:54.556Z CNTRLR [Node 002] [+] [Manufacturer Specific] productType: 4 -2024-09-06T10:06:54.556Z CNTRLR [Node 002] [+] [Manufacturer Specific] productId: 4 -2024-09-06T10:06:54.556Z CNTRLR [Node 002] [Version] firmwareVersions: metadata updated -2024-09-06T10:06:54.556Z CNTRLR [Node 002] [+] [Version] firmwareVersions: 7.22 -2024-09-06T10:06:54.557Z CNTRLR [Node 002] [Version] zWaveProtocolVersion: metadata updated -2024-09-06T10:06:54.557Z CNTRLR [Node 002] [+] [Version] zWaveProtocolVersion: "7.22.1" -2024-09-06T10:06:54.557Z CNTRLR [Node 002] [Version] sdkVersion: metadata updated -2024-09-06T10:06:54.557Z CNTRLR [Node 002] [+] [Version] sdkVersion: "7.22.1" -2024-09-06T10:06:54.557Z CNTRLR Interview completed -2024-09-06T10:06:54.557Z DRIVER all queues idle -2024-09-06T10:06:54.734Z SERIAL « 0x010b00a8000201029f0400d91f (13 bytes) -2024-09-06T10:06:54.735Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:31.577Z DRIVER ███████╗ ██╗ ██╗ █████╗ ██╗ ██╗ ███████╗ ██╗ ███████╗ - ╚══███╔╝ ██║ ██║ ██╔══██╗ ██║ ██║ ██╔════╝ ██║ ██╔════╝ - ███╔╝ █████╗ ██║ █╗ ██║ ███████║ ██║ ██║ █████╗ ██║ ███████╗ - ███╔╝ ╚════╝ ██║███╗██║ ██╔══██║ ╚██╗ ██╔╝ ██╔══╝ ██ ██║ ╚════██║ - ███████╗ ╚███╔███╔╝ ██║ ██║ ╚████╔╝ ███████╗ ╚█████╔╝ ███████║ - ╚══════╝ ╚══╝╚══╝ ╚═╝ ╚═╝ ╚═══╝ ╚══════╝ ╚════╝ ╚══════╝ -2024-09-06T10:57:31.577Z DRIVER version 13.2.0 -2024-09-06T10:57:31.577Z DRIVER -2024-09-06T10:57:31.577Z DRIVER starting driver... -2024-09-06T10:57:31.577Z DRIVER opening serial port /dev/serial/by-id/usb-Silicon_Labs_CP2102N_USB_to_UART_Bri - dge_Controller_ca4d95064355ee118d4d1294de9da576-if00-port0 -2024-09-06T10:57:31.586Z DRIVER serial port opened -2024-09-06T10:57:31.586Z SERIAL » 0x15 (1 bytes) -2024-09-06T10:57:32.592Z DRIVER loading configuration... -2024-09-06T10:57:32.597Z CONFIG version 13.2.0 -2024-09-06T10:57:32.929Z DRIVER beginning interview... -2024-09-06T10:57:32.929Z DRIVER added request handler for AddNodeToNetwork (0x4a)... - 1 registered -2024-09-06T10:57:32.929Z DRIVER added request handler for RemoveNodeFromNetwork (0x4b)... - 1 registered -2024-09-06T10:57:32.929Z DRIVER added request handler for ReplaceFailedNode (0x63)... - 1 registered -2024-09-06T10:57:32.929Z DRIVER added request handler for SetLearnMode (0x50)... - 1 registered -2024-09-06T10:57:32.929Z CNTRLR querying Serial API capabilities... -2024-09-06T10:57:32.931Z SERIAL » 0x01030007fb (5 bytes) -2024-09-06T10:57:32.931Z DRIVER » [REQ] [GetSerialApiCapabilities] -2024-09-06T10:57:32.941Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:32.941Z SERIAL « 0x012b01070716000000040004f6873e88cf2bc05ffbd7fde09700008000808680b (45 bytes) - a0500700000ee7fc000000041 -2024-09-06T10:57:32.942Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:32.942Z DRIVER « [RES] [GetSerialApiCapabilities] - payload: 0x0716000000040004f6873e88cf2bc05ffbd7fde09700008000808680ba0500700 - 000ee7fc0000000 -2024-09-06T10:57:32.943Z CNTRLR received API capabilities: - firmware version: 7.22 - manufacturer ID: 0x00 - product type: 0x04 - product ID: 0x04 - supported functions: - · GetSerialApiInitData (0x02) - · SetApplicationNodeInformation (0x03) - · GetControllerCapabilities (0x05) - · SetSerialApiTimeouts (0x06) - · GetSerialApiCapabilities (0x07) - · SoftReset (0x08) - · GetProtocolVersion (0x09) - · SerialAPIStarted (0x0a) - · SerialAPISetup (0x0b) - · SetRFReceiveMode (0x10) - · SendNodeInformation (0x12) - · SendData (0x13) - · SendDataMulticast (0x14) - · GetControllerVersion (0x15) - · SendDataAbort (0x16) - · FUNC_ID_ZW_GET_RANDOM (0x1c) - · GetControllerId (0x20) - · UNKNOWN_FUNC_MEMORY_GET_BYTE (0x21) - · UNKNOWN_FUNC_MEMORY_PUT_BYTE (0x22) - · UNKNOWN_FUNC_MEMORY_GET_BUFFER (0x23) - · UNKNOWN_FUNC_MEMORY_PUT_BUFFER (0x24) - · EnterBootloader (0x27) - · UNKNOWN_FUNC_UNKNOWN_0x28 (0x28) - · GetNVMId (0x29) - · ExtNVMReadLongBuffer (0x2a) - · ExtNVMReadLongByte (0x2c) - · NVMOperations (0x2e) - · ClearTxTimers (0x37) - · GetTxTimers (0x38) - · ClearNetworkStats (0x39) - · GetNetworkStats (0x3a) - · GetBackgroundRSSI (0x3b) - · SetListenBeforeTalkThreshold (0x3c) - · ExtendedNVMOperations (0x3d) - · RemoveSpecificNodeIdFromNetwork (0x3f) - · GetNodeProtocolInfo (0x41) - · HardReset (0x42) - · FUNC_ID_ZW_REPLICATION_COMMAND_COMPLETE (0x44) - · FUNC_ID_ZW_REPLICATION_SEND_DATA (0x45) - · AssignReturnRoute (0x46) - · DeleteReturnRoute (0x47) - · RequestNodeNeighborUpdate (0x48) - · ApplicationUpdateRequest (0x49) - · AddNodeToNetwork (0x4a) - · RemoveNodeFromNetwork (0x4b) - · AddPrimaryController (0x4d) - · AssignPriorityReturnRoute (0x4f) - · SetLearnMode (0x50) - · AssignSUCReturnRoute (0x51) - · RequestNetworkUpdate (0x53) - · SetSUCNodeId (0x54) - · DeleteSUCReturnRoute (0x55) - · GetSUCNodeId (0x56) - · SendSUCNodeId (0x57) - · AssignPrioritySUCReturnRoute (0x58) - · ExploreRequestInclusion (0x5e) - · ExploreRequestExclusion (0x5f) - · RequestNodeInfo (0x60) - · RemoveFailedNode (0x61) - · IsFailedNode (0x62) - · ReplaceFailedNode (0x63) - · undefined (0x65) - · RequestProtocolCCEncryption (0x68) - · GetRoutingInfo (0x80) - · LockUnlockLastRoute (0x90) - · GetPriorityRoute (0x92) - · SetPriorityRoute (0x93) - · UNKNOWN_FUNC_UNKNOWN_0x98 (0x98) - · VirtualNodeSetNodeInfo (0xa0) - · VirtualNodeSendNodeInfo (0xa2) - · VirtualNodeSetLearnMode (0xa4) - · GetVirtualNodes (0xa5) - · IsVirtualNode (0xa6) - · BridgeApplicationCommand (0xa8) - · SendDataBridge (0xa9) - · SendDataMulticastBridge (0xab) - · GetLibrary (0xbd) - · SendTestFrame (0xbe) - · GetProtocolStatus (0xbf) - · StartWatchdog (0xd2) - · StopWatchdog (0xd3) - · SetMaximumRoutingAttempts (0xd4) - · SetMaxSmartStartInclusionRequestInterval (0xd6) - · undefined (0xd7) - · undefined (0xd8) - · Shutdown (0xd9) - · GetLongRangeNodes (0xda) - · GetLongRangeChannel (0xdb) - · SetLongRangeChannel (0xdc) - · SetLongRangeShadowNodeIDs (0xdd) - · Proprietary_DE (0xde) - · Proprietary_DF (0xdf) - · Proprietary_E7 (0xe7) - · Proprietary_E8 (0xe8) -2024-09-06T10:57:32.943Z CNTRLR querying additional controller information... -2024-09-06T10:57:32.944Z SERIAL » 0x01030002fe (5 bytes) -2024-09-06T10:57:32.944Z DRIVER » [REQ] [GetSerialApiInitData] -2024-09-06T10:57:32.953Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:32.954Z SERIAL « 0x012501020a001d030000000000000000000000000000000000000000000000000 (39 bytes) - 00000000800c5 -2024-09-06T10:57:32.954Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:32.955Z DRIVER « [RES] [GetSerialApiInitData] - payload: 0x0a001d03000000000000000000000000000000000000000000000000000000000 - 800 -2024-09-06T10:57:32.955Z CNTRLR received additional controller information: - Z-Wave API version: 1 (official) - Z-Wave chip type: EFR32ZG23 / ZGM230S - node type Controller - controller role: primary - controller is the SIS: false - controller supports timers: false - Z-Wave Classic nodes: 1, 2 -2024-09-06T10:57:32.955Z CNTRLR querying version info... -2024-09-06T10:57:32.956Z SERIAL » 0x01030015e9 (5 bytes) -2024-09-06T10:57:32.957Z DRIVER » [REQ] [GetControllerVersion] -2024-09-06T10:57:32.962Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:32.963Z SERIAL « 0x011001155a2d5761766520372e3232000797 (18 bytes) -2024-09-06T10:57:32.963Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:32.963Z DRIVER « [RES] [GetControllerVersion] - payload: 0x5a2d5761766520372e32320007 -2024-09-06T10:57:32.964Z CNTRLR received version info: - controller type: Bridge Controller - library version: Z-Wave 7.22 -2024-09-06T10:57:32.964Z CNTRLR querying protocol version info... -2024-09-06T10:57:32.965Z SERIAL » 0x01030009f5 (5 bytes) -2024-09-06T10:57:32.965Z DRIVER » [REQ] [GetProtocolVersion] -2024-09-06T10:57:32.972Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:32.972Z SERIAL « 0x0119010900071601abcd63636639623665613165616566313162c3 (27 bytes) -2024-09-06T10:57:32.972Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:32.973Z DRIVER « [RES] [GetProtocolVersion] - payload: 0x00071601abcd63636639623665613165616566313162 -2024-09-06T10:57:32.973Z CNTRLR received protocol version info: - protocol type: Z-Wave - protocol version: 7.22.1 - appl. framework build no.: 43981 - git commit hash: 63636639623665613165616566313162 -2024-09-06T10:57:32.974Z CNTRLR querying controller capabilities... -2024-09-06T10:57:32.975Z SERIAL » 0x01030005f9 (5 bytes) -2024-09-06T10:57:32.975Z DRIVER » [REQ] [GetControllerCapabilities] -2024-09-06T10:57:32.980Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:32.981Z SERIAL « 0x0104010506f9 (6 bytes) -2024-09-06T10:57:32.981Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:32.981Z DRIVER « [RES] [GetControllerCapabilities] - payload: 0x06 -2024-09-06T10:57:32.982Z CNTRLR received controller capabilities: - controller role: Inclusion - is the SUC: false - started this network: false - SIS is present: true - was real primary: false -2024-09-06T10:57:32.982Z CNTRLR querying serial API setup capabilities... -2024-09-06T10:57:32.983Z SERIAL » 0x0104000b01f1 (6 bytes) -2024-09-06T10:57:32.983Z DRIVER » [REQ] [SerialAPISetup] - command: GetSupportedCommands - payload: 0x01 -2024-09-06T10:57:32.989Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:32.989Z SERIAL « 0x0116010b01ff9f8007800000008000000000000000800085 (24 bytes) -2024-09-06T10:57:32.989Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:32.990Z DRIVER « [RES] [SerialAPISetup] - command: GetSupportedCommands - payload: 0xff9f80078000000080000000000000008000 -2024-09-06T10:57:32.990Z CNTRLR supported serial API setup commands: - · GetSupportedCommands - · SetTxStatusReport - · SetLongRangeMaximumTxPower - · SetPowerlevel - · GetLongRangeMaximumTxPower - · GetPowerlevel - · GetMaximumPayloadSize - · GetLongRangeMaximumPayloadSize - · SetPowerlevel16Bit - · GetPowerlevel16Bit - · GetRFRegion - · SetRFRegion - · SetNodeIDType -2024-09-06T10:57:32.990Z CNTRLR querying max. payload size... -2024-09-06T10:57:32.991Z SERIAL » 0x0104000b10e0 (6 bytes) -2024-09-06T10:57:32.992Z DRIVER » [REQ] [SerialAPISetup] - command: GetMaximumPayloadSize - payload: 0x10 -2024-09-06T10:57:32.997Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:32.998Z SERIAL « 0x0105010b102ece (7 bytes) -2024-09-06T10:57:32.998Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:32.998Z DRIVER « [RES] [SerialAPISetup] - command: GetMaximumPayloadSize - maximum payload size: 46 bytes -2024-09-06T10:57:32.999Z CNTRLR maximum payload size: 46 bytes -2024-09-06T10:57:32.999Z CNTRLR supported Z-Wave features: - · SmartStart -2024-09-06T10:57:32.999Z CNTRLR Querying configured RF region... -2024-09-06T10:57:33.000Z SERIAL » 0x0104000b20d0 (6 bytes) -2024-09-06T10:57:33.000Z DRIVER » [REQ] [SerialAPISetup] - command: GetRFRegion - payload: 0x20 -2024-09-06T10:57:33.006Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:33.006Z SERIAL « 0x0105010b2000d0 (7 bytes) -2024-09-06T10:57:33.006Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:33.007Z DRIVER « [RES] [SerialAPISetup] - command: GetRFRegion - region: Europe -2024-09-06T10:57:33.007Z CNTRLR The controller is using RF region Europe -2024-09-06T10:57:33.007Z CNTRLR Querying configured max. Long Range powerlevel... -2024-09-06T10:57:33.008Z SERIAL » 0x0104000b05f5 (6 bytes) -2024-09-06T10:57:33.008Z DRIVER » [REQ] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - payload: 0x05 -2024-09-06T10:57:33.013Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:33.013Z SERIAL « 0x0106010b05008c7a (8 bytes) -2024-09-06T10:57:33.014Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:33.014Z DRIVER « [RES] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - max. TX power (LR): 14.0 dBm -2024-09-06T10:57:33.014Z CNTRLR The max. LR powerlevel is 14.0 dBm -2024-09-06T10:57:33.015Z CNTRLR Querying configured Long Range channel information... -2024-09-06T10:57:33.015Z SERIAL » 0x010300db27 (5 bytes) -2024-09-06T10:57:33.015Z DRIVER » [REQ] [GetLongRangeChannel] -2024-09-06T10:57:33.021Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:33.021Z SERIAL « 0x010501db001030 (7 bytes) -2024-09-06T10:57:33.021Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:33.022Z DRIVER « [RES] [GetLongRangeChannel] - payload: 0x0010 -2024-09-06T10:57:33.022Z CNTRLR received Z-Wave Long Range channel information: - channel: Unsupported - supports auto channel selection: true -2024-09-06T10:57:33.022Z CNTRLR Performing soft reset... -2024-09-06T10:57:33.023Z SERIAL » 0x01030008f4 (5 bytes) -2024-09-06T10:57:33.023Z DRIVER » [REQ] [SoftReset] -2024-09-06T10:57:33.027Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:33.028Z CNTRLR Waiting for the controller to reconnect... -2024-09-06T10:57:33.028Z DRIVER all queues idle -2024-09-06T10:57:33.136Z SERIAL « 0x0116000a0700010100085e989f556c568f7400031d00003f (24 bytes) -2024-09-06T10:57:33.137Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:33.139Z DRIVER « [REQ] [SerialAPIStarted] - wake up reason: SoftwareReset - watchdog enabled: false - generic device class: 0x01 - specific device class: 0x00 - always listening: false - supports Long Range: false -2024-09-06T10:57:33.140Z CNTRLR reconnected and restarted -2024-09-06T10:57:33.141Z CNTRLR Starting hardware watchdog... -2024-09-06T10:57:33.142Z CNTRLR Switching serial API to 16-bit node IDs... -2024-09-06T10:57:33.143Z CNTRLR Switching serial API to 8-bit node IDs... -2024-09-06T10:57:33.144Z DRIVER all queues busy -2024-09-06T10:57:33.145Z SERIAL » 0x010300d22e (5 bytes) -2024-09-06T10:57:33.146Z DRIVER » [REQ] [StartWatchdog] -2024-09-06T10:57:33.148Z SERIAL » 0x0105000b800273 (7 bytes) -2024-09-06T10:57:33.149Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 16 bit -2024-09-06T10:57:33.150Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:33.154Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:33.155Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T10:57:33.156Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:33.156Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T10:57:33.157Z CNTRLR Switching to 16-bit node IDs successful -2024-09-06T10:57:33.158Z SERIAL » 0x0105000b800170 (7 bytes) -2024-09-06T10:57:33.158Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 8 bit -2024-09-06T10:57:33.163Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:33.164Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T10:57:33.164Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:33.164Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T10:57:33.165Z CNTRLR Switching to 8-bit node IDs successful -2024-09-06T10:57:33.165Z CNTRLR querying controller IDs... -2024-09-06T10:57:33.166Z SERIAL » 0x01030020dc (5 bytes) -2024-09-06T10:57:33.166Z DRIVER » [REQ] [GetControllerId] -2024-09-06T10:57:33.171Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:33.172Z SERIAL « 0x01080120de273aaf02b8 (10 bytes) -2024-09-06T10:57:33.172Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:33.173Z DRIVER « [RES] [GetControllerId] - home ID: 0xde273aaf - own node ID: 2 -2024-09-06T10:57:33.173Z CNTRLR received controller IDs: - home ID: 0xde273aaf - own node ID: 2 -2024-09-06T10:57:33.173Z CNTRLR Enabling TX status report... -2024-09-06T10:57:33.174Z SERIAL » 0x0105000b02ff0c (7 bytes) -2024-09-06T10:57:33.174Z DRIVER » [REQ] [SerialAPISetup] - command: SetTxStatusReport - enabled: true -2024-09-06T10:57:33.179Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:33.180Z SERIAL « 0x0105010b0201f3 (7 bytes) -2024-09-06T10:57:33.180Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:33.180Z DRIVER « [RES] [SerialAPISetup] - command: SetTxStatusReport - success: true -2024-09-06T10:57:33.181Z CNTRLR Enabling TX status report successful... -2024-09-06T10:57:33.181Z CNTRLR finding SUC... -2024-09-06T10:57:33.182Z SERIAL » 0x01030056aa (5 bytes) -2024-09-06T10:57:33.182Z DRIVER » [REQ] [GetSUCNodeId] -2024-09-06T10:57:33.187Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:33.187Z SERIAL « 0x0104015601ad (6 bytes) -2024-09-06T10:57:33.187Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:33.188Z DRIVER « [RES] [GetSUCNodeId] - payload: 0x01 -2024-09-06T10:57:33.188Z CNTRLR SUC has node ID 1 -2024-09-06T10:57:33.189Z DRIVER all queues idle -2024-09-06T10:57:33.197Z CNTRLR [Node 002] [Manufacturer Specific] manufacturerId: metadata updated -2024-09-06T10:57:33.198Z CNTRLR [Node 002] [Manufacturer Specific] productType: metadata updated -2024-09-06T10:57:33.198Z CNTRLR [Node 002] [Manufacturer Specific] productId: metadata updated -2024-09-06T10:57:33.198Z CNTRLR [Node 002] [+] [Manufacturer Specific] manufacturerId: 0 -2024-09-06T10:57:33.199Z CNTRLR [Node 002] [+] [Manufacturer Specific] productType: 4 -2024-09-06T10:57:33.199Z CNTRLR [Node 002] [+] [Manufacturer Specific] productId: 4 -2024-09-06T10:57:33.199Z CNTRLR [Node 002] [Version] firmwareVersions: metadata updated -2024-09-06T10:57:33.199Z CNTRLR [Node 002] [+] [Version] firmwareVersions: 7.22 -2024-09-06T10:57:33.199Z CNTRLR [Node 002] [Version] zWaveProtocolVersion: metadata updated -2024-09-06T10:57:33.200Z CNTRLR [Node 002] [+] [Version] zWaveProtocolVersion: "7.22.1" -2024-09-06T10:57:33.200Z CNTRLR [Node 002] [Version] sdkVersion: metadata updated -2024-09-06T10:57:33.200Z CNTRLR [Node 002] [+] [Version] sdkVersion: "7.22.1" -2024-09-06T10:57:33.200Z CNTRLR Interview completed -2024-09-06T10:57:33.200Z DRIVER No network key for S0 found in cache, communication with secure (S0) devices w - on't work! -2024-09-06T10:57:33.200Z DRIVER No network key for S2 found in cache, communication with secure (S2) devices w - on't work! -2024-09-06T10:57:33.200Z DRIVER driver ready -2024-09-06T10:57:33.201Z CNTRLR [Node 002] Beginning interview - last completed stage: None -2024-09-06T10:57:33.201Z CNTRLR [Node 002] new node, doing a full interview... -2024-09-06T10:57:33.201Z CNTRLR » [Node 002] querying protocol info... -2024-09-06T10:57:33.202Z DRIVER all queues busy -2024-09-06T10:57:33.203Z SERIAL » 0x0104004102b8 (6 bytes) -2024-09-06T10:57:33.203Z DRIVER » [REQ] [GetNodeProtocolInfo] - payload: 0x02 -2024-09-06T10:57:33.209Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:33.209Z SERIAL « 0x010a0141d3960102010000f2 (12 bytes) -2024-09-06T10:57:33.209Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:33.210Z DRIVER « [RES] [GetNodeProtocolInfo] - payload: 0xd3960102010000 -2024-09-06T10:57:33.211Z CNTRLR « [Node 002] received response for protocol info: - basic device class: Static Controller - generic device class: Remote Controller - specific device class: Unused - node type: Controller - is always listening: true - is frequent listening: false - can route messages: true - supports security: false - supports beaming: true - maximum data rate: 100000 kbps - protocol version: 3 -2024-09-06T10:57:33.211Z CNTRLR [Node 002] Interview stage completed: ProtocolInfo -2024-09-06T10:57:33.212Z DRIVER all queues idle -2024-09-06T10:57:33.219Z CNTRLR [Node 002] Embedded device config loaded -2024-09-06T10:57:33.219Z CNTRLR [Node 002] Interview stage completed: OverwriteConfig -2024-09-06T10:57:33.220Z CNTRLR [Node 002] Interview completed -2024-09-06T10:57:33.220Z CNTRLR [Node 002] The node is ready to be used -2024-09-06T10:57:33.220Z CNTRLR [Node 002] The node is alive. -2024-09-06T10:57:33.221Z CNTRLR » [Node 001] querying protocol info... -2024-09-06T10:57:33.221Z DRIVER all queues busy -2024-09-06T10:57:33.221Z SERIAL » 0x0104004101bb (6 bytes) -2024-09-06T10:57:33.222Z DRIVER » [REQ] [GetNodeProtocolInfo] - payload: 0x01 -2024-09-06T10:57:33.228Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:33.228Z SERIAL « 0x010a0141d3960102010000f2 (12 bytes) -2024-09-06T10:57:33.228Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:33.229Z DRIVER « [RES] [GetNodeProtocolInfo] - payload: 0xd3960102010000 -2024-09-06T10:57:33.229Z CNTRLR « [Node 001] received response for protocol info: - basic device class: Static Controller - generic device class: Remote Controller - specific device class: Unused - node type: Controller - is always listening: true - is frequent listening: false - can route messages: true - supports security: false - supports beaming: true - maximum data rate: 100000 kbps - protocol version: 3 -2024-09-06T10:57:33.229Z CNTRLR [Node 001] Interview stage completed: ProtocolInfo -2024-09-06T10:57:33.229Z CNTRLR Determining node status: 1 -2024-09-06T10:57:33.230Z CNTRLR » [Node 001] pinging the node... -2024-09-06T10:57:33.232Z SERIAL » 0x010d00a9020101002500000000017d (15 bytes) -2024-09-06T10:57:33.232Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 1 - └─[NoOperationCC] -2024-09-06T10:57:33.237Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:33.240Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T10:57:33.240Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:33.241Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T10:57:33.300Z SERIAL « 0x011d00a90100000500d87f7f7f7f00000300000000030200007f7f7f7f7fea (31 bytes) -2024-09-06T10:57:33.301Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:33.301Z DRIVER « [REQ] [SendDataBridge] - callback id: 1 - transmit status: OK, took 50 ms - routing attempts: 2 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -40 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T10:57:33.303Z CNTRLR [Node 001] The node is alive. -2024-09-06T10:57:33.303Z CNTRLR « [Node 001] ping successful -2024-09-06T10:57:33.303Z DRIVER all queues idle -2024-09-06T10:57:38.201Z CNTRLR Updating the controller NIF... -2024-09-06T10:57:38.202Z DRIVER all queues busy -2024-09-06T10:57:38.204Z SERIAL » 0x010f0003010100085e989f556c568f7436 (17 bytes) -2024-09-06T10:57:38.205Z DRIVER » [REQ] [SetApplicationNodeInformation] - is listening: true - generic device class: 0x01 - specific device class: 0x00 - supported CCs: - · Z-Wave Plus Info - · Security - · Security 2 - · Transport Service - · Supervision - · CRC-16 Encapsulation - · Multi Command - · Inclusion Controller - controlled CCs: -2024-09-06T10:57:38.210Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:38.212Z CNTRLR performing hard reset... -2024-09-06T10:57:38.214Z SERIAL » 0x0104004202bb (6 bytes) -2024-09-06T10:57:38.215Z DRIVER » [REQ] [HardReset] - callback id: 2 -2024-09-06T10:57:38.219Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:38.240Z SERIAL « 0x0104004202bb (6 bytes) -2024-09-06T10:57:38.241Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:38.242Z DRIVER « [REQ] [HardReset] - callback id: 2 -2024-09-06T10:57:38.243Z CNTRLR hard reset succeeded -2024-09-06T10:57:38.244Z CNTRLR querying Serial API capabilities... -2024-09-06T10:57:38.245Z SERIAL » 0x01030007fb (5 bytes) -2024-09-06T10:57:38.246Z DRIVER » [REQ] [GetSerialApiCapabilities] -2024-09-06T10:57:38.255Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:38.256Z SERIAL « 0x012b01070716000000040004f6873e88cf2bc05ffbd7fde09700008000808680b (45 bytes) - a0500700000ee7fc000000041 -2024-09-06T10:57:38.257Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:38.258Z DRIVER « [RES] [GetSerialApiCapabilities] - payload: 0x0716000000040004f6873e88cf2bc05ffbd7fde09700008000808680ba0500700 - 000ee7fc0000000 -2024-09-06T10:57:38.259Z CNTRLR received API capabilities: - firmware version: 7.22 - manufacturer ID: 0x00 - product type: 0x04 - product ID: 0x04 - supported functions: - · GetSerialApiInitData (0x02) - · SetApplicationNodeInformation (0x03) - · GetControllerCapabilities (0x05) - · SetSerialApiTimeouts (0x06) - · GetSerialApiCapabilities (0x07) - · SoftReset (0x08) - · GetProtocolVersion (0x09) - · SerialAPIStarted (0x0a) - · SerialAPISetup (0x0b) - · SetRFReceiveMode (0x10) - · SendNodeInformation (0x12) - · SendData (0x13) - · SendDataMulticast (0x14) - · GetControllerVersion (0x15) - · SendDataAbort (0x16) - · FUNC_ID_ZW_GET_RANDOM (0x1c) - · GetControllerId (0x20) - · UNKNOWN_FUNC_MEMORY_GET_BYTE (0x21) - · UNKNOWN_FUNC_MEMORY_PUT_BYTE (0x22) - · UNKNOWN_FUNC_MEMORY_GET_BUFFER (0x23) - · UNKNOWN_FUNC_MEMORY_PUT_BUFFER (0x24) - · EnterBootloader (0x27) - · UNKNOWN_FUNC_UNKNOWN_0x28 (0x28) - · GetNVMId (0x29) - · ExtNVMReadLongBuffer (0x2a) - · ExtNVMReadLongByte (0x2c) - · NVMOperations (0x2e) - · ClearTxTimers (0x37) - · GetTxTimers (0x38) - · ClearNetworkStats (0x39) - · GetNetworkStats (0x3a) - · GetBackgroundRSSI (0x3b) - · SetListenBeforeTalkThreshold (0x3c) - · ExtendedNVMOperations (0x3d) - · RemoveSpecificNodeIdFromNetwork (0x3f) - · GetNodeProtocolInfo (0x41) - · HardReset (0x42) - · FUNC_ID_ZW_REPLICATION_COMMAND_COMPLETE (0x44) - · FUNC_ID_ZW_REPLICATION_SEND_DATA (0x45) - · AssignReturnRoute (0x46) - · DeleteReturnRoute (0x47) - · RequestNodeNeighborUpdate (0x48) - · ApplicationUpdateRequest (0x49) - · AddNodeToNetwork (0x4a) - · RemoveNodeFromNetwork (0x4b) - · AddPrimaryController (0x4d) - · AssignPriorityReturnRoute (0x4f) - · SetLearnMode (0x50) - · AssignSUCReturnRoute (0x51) - · RequestNetworkUpdate (0x53) - · SetSUCNodeId (0x54) - · DeleteSUCReturnRoute (0x55) - · GetSUCNodeId (0x56) - · SendSUCNodeId (0x57) - · AssignPrioritySUCReturnRoute (0x58) - · ExploreRequestInclusion (0x5e) - · ExploreRequestExclusion (0x5f) - · RequestNodeInfo (0x60) - · RemoveFailedNode (0x61) - · IsFailedNode (0x62) - · ReplaceFailedNode (0x63) - · undefined (0x65) - · RequestProtocolCCEncryption (0x68) - · GetRoutingInfo (0x80) - · LockUnlockLastRoute (0x90) - · GetPriorityRoute (0x92) - · SetPriorityRoute (0x93) - · UNKNOWN_FUNC_UNKNOWN_0x98 (0x98) - · VirtualNodeSetNodeInfo (0xa0) - · VirtualNodeSendNodeInfo (0xa2) - · VirtualNodeSetLearnMode (0xa4) - · GetVirtualNodes (0xa5) - · IsVirtualNode (0xa6) - · BridgeApplicationCommand (0xa8) - · SendDataBridge (0xa9) - · SendDataMulticastBridge (0xab) - · GetLibrary (0xbd) - · SendTestFrame (0xbe) - · GetProtocolStatus (0xbf) - · StartWatchdog (0xd2) - · StopWatchdog (0xd3) - · SetMaximumRoutingAttempts (0xd4) - · SetMaxSmartStartInclusionRequestInterval (0xd6) - · undefined (0xd7) - · undefined (0xd8) - · Shutdown (0xd9) - · GetLongRangeNodes (0xda) - · GetLongRangeChannel (0xdb) - · SetLongRangeChannel (0xdc) - · SetLongRangeShadowNodeIDs (0xdd) - · Proprietary_DE (0xde) - · Proprietary_DF (0xdf) - · Proprietary_E7 (0xe7) - · Proprietary_E8 (0xe8) -2024-09-06T10:57:38.259Z CNTRLR querying additional controller information... -2024-09-06T10:57:38.260Z SERIAL » 0x01030002fe (5 bytes) -2024-09-06T10:57:38.261Z DRIVER » [REQ] [GetSerialApiInitData] -2024-09-06T10:57:38.270Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:38.272Z SERIAL « 0x012501020a001d010000000000000000000000000000000000000000000000000 (39 bytes) - 00000000800c7 -2024-09-06T10:57:38.272Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:38.273Z DRIVER « [RES] [GetSerialApiInitData] - payload: 0x0a001d01000000000000000000000000000000000000000000000000000000000 - 800 -2024-09-06T10:57:38.275Z CNTRLR received additional controller information: - Z-Wave API version: 1 (official) - Z-Wave chip type: EFR32ZG23 / ZGM230S - node type Controller - controller role: primary - controller is the SIS: false - controller supports timers: false - Z-Wave Classic nodes: 1 -2024-09-06T10:57:38.275Z CNTRLR querying version info... -2024-09-06T10:57:38.276Z SERIAL » 0x01030015e9 (5 bytes) -2024-09-06T10:57:38.277Z DRIVER » [REQ] [GetControllerVersion] -2024-09-06T10:57:38.283Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:38.284Z SERIAL « 0x011001155a2d5761766520372e3232000797 (18 bytes) -2024-09-06T10:57:38.284Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:38.285Z DRIVER « [RES] [GetControllerVersion] - payload: 0x5a2d5761766520372e32320007 -2024-09-06T10:57:38.286Z CNTRLR received version info: - controller type: Bridge Controller - library version: Z-Wave 7.22 -2024-09-06T10:57:38.286Z CNTRLR querying protocol version info... -2024-09-06T10:57:38.287Z SERIAL » 0x01030009f5 (5 bytes) -2024-09-06T10:57:38.288Z DRIVER » [REQ] [GetProtocolVersion] -2024-09-06T10:57:38.294Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:38.295Z SERIAL « 0x0119010900071601abcd63636639623665613165616566313162c3 (27 bytes) -2024-09-06T10:57:38.296Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:38.297Z DRIVER « [RES] [GetProtocolVersion] - payload: 0x00071601abcd63636639623665613165616566313162 -2024-09-06T10:57:38.298Z CNTRLR received protocol version info: - protocol type: Z-Wave - protocol version: 7.22.1 - appl. framework build no.: 43981 - git commit hash: 63636639623665613165616566313162 -2024-09-06T10:57:38.298Z CNTRLR querying controller capabilities... -2024-09-06T10:57:38.299Z SERIAL » 0x01030005f9 (5 bytes) -2024-09-06T10:57:38.299Z DRIVER » [REQ] [GetControllerCapabilities] -2024-09-06T10:57:38.304Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:38.305Z SERIAL « 0x0104010528d7 (6 bytes) -2024-09-06T10:57:38.305Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:38.306Z DRIVER « [RES] [GetControllerCapabilities] - payload: 0x28 -2024-09-06T10:57:38.307Z CNTRLR received controller capabilities: - controller role: Primary - is the SUC: false - started this network: true - SIS is present: false - was real primary: true -2024-09-06T10:57:38.307Z CNTRLR querying serial API setup capabilities... -2024-09-06T10:57:38.308Z SERIAL » 0x0104000b01f1 (6 bytes) -2024-09-06T10:57:38.308Z DRIVER » [REQ] [SerialAPISetup] - command: GetSupportedCommands - payload: 0x01 -2024-09-06T10:57:38.315Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:38.315Z SERIAL « 0x0116010b01ff9f8007800000008000000000000000800085 (24 bytes) -2024-09-06T10:57:38.316Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:38.316Z DRIVER « [RES] [SerialAPISetup] - command: GetSupportedCommands - payload: 0xff9f80078000000080000000000000008000 -2024-09-06T10:57:38.317Z CNTRLR supported serial API setup commands: - · GetSupportedCommands - · SetTxStatusReport - · SetLongRangeMaximumTxPower - · SetPowerlevel - · GetLongRangeMaximumTxPower - · GetPowerlevel - · GetMaximumPayloadSize - · GetLongRangeMaximumPayloadSize - · SetPowerlevel16Bit - · GetPowerlevel16Bit - · GetRFRegion - · SetRFRegion - · SetNodeIDType -2024-09-06T10:57:38.318Z CNTRLR querying max. payload size... -2024-09-06T10:57:38.319Z SERIAL » 0x0104000b10e0 (6 bytes) -2024-09-06T10:57:38.319Z DRIVER » [REQ] [SerialAPISetup] - command: GetMaximumPayloadSize - payload: 0x10 -2024-09-06T10:57:38.324Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:38.324Z SERIAL « 0x0105010b102ece (7 bytes) -2024-09-06T10:57:38.325Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:38.325Z DRIVER « [RES] [SerialAPISetup] - command: GetMaximumPayloadSize - maximum payload size: 46 bytes -2024-09-06T10:57:38.326Z CNTRLR maximum payload size: 46 bytes -2024-09-06T10:57:38.326Z CNTRLR supported Z-Wave features: - · SmartStart -2024-09-06T10:57:38.326Z CNTRLR Querying configured RF region... -2024-09-06T10:57:38.327Z SERIAL » 0x0104000b20d0 (6 bytes) -2024-09-06T10:57:38.327Z DRIVER » [REQ] [SerialAPISetup] - command: GetRFRegion - payload: 0x20 -2024-09-06T10:57:38.333Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:38.333Z SERIAL « 0x0105010b2000d0 (7 bytes) -2024-09-06T10:57:38.333Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:38.334Z DRIVER « [RES] [SerialAPISetup] - command: GetRFRegion - region: Europe -2024-09-06T10:57:38.334Z CNTRLR The controller is using RF region Europe -2024-09-06T10:57:38.334Z CNTRLR Querying configured max. Long Range powerlevel... -2024-09-06T10:57:38.335Z SERIAL » 0x0104000b05f5 (6 bytes) -2024-09-06T10:57:38.335Z DRIVER » [REQ] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - payload: 0x05 -2024-09-06T10:57:38.341Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:38.341Z SERIAL « 0x0106010b05008c7a (8 bytes) -2024-09-06T10:57:38.341Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:38.341Z DRIVER « [RES] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - max. TX power (LR): 14.0 dBm -2024-09-06T10:57:38.342Z CNTRLR The max. LR powerlevel is 14.0 dBm -2024-09-06T10:57:38.342Z CNTRLR Querying configured Long Range channel information... -2024-09-06T10:57:38.342Z SERIAL » 0x010300db27 (5 bytes) -2024-09-06T10:57:38.343Z DRIVER » [REQ] [GetLongRangeChannel] -2024-09-06T10:57:38.348Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:38.348Z SERIAL « 0x010501db001030 (7 bytes) -2024-09-06T10:57:38.348Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:38.349Z DRIVER « [RES] [GetLongRangeChannel] - payload: 0x0010 -2024-09-06T10:57:38.350Z CNTRLR received Z-Wave Long Range channel information: - channel: Unsupported - supports auto channel selection: true -2024-09-06T10:57:38.350Z CNTRLR Performing soft reset... -2024-09-06T10:57:38.351Z SERIAL » 0x01030008f4 (5 bytes) -2024-09-06T10:57:38.351Z DRIVER » [REQ] [SoftReset] -2024-09-06T10:57:38.355Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:38.355Z CNTRLR Waiting for the controller to reconnect... -2024-09-06T10:57:38.356Z DRIVER all queues idle -2024-09-06T10:57:38.468Z SERIAL « 0x0116000a0700010100085e989f556c568f7400031d00003f (24 bytes) -2024-09-06T10:57:38.469Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:38.471Z DRIVER « [REQ] [SerialAPIStarted] - wake up reason: SoftwareReset - watchdog enabled: false - generic device class: 0x01 - specific device class: 0x00 - always listening: false - supports Long Range: false -2024-09-06T10:57:38.471Z CNTRLR reconnected and restarted -2024-09-06T10:57:38.471Z CNTRLR Starting hardware watchdog... -2024-09-06T10:57:38.472Z CNTRLR Switching serial API to 16-bit node IDs... -2024-09-06T10:57:38.472Z CNTRLR Switching serial API to 8-bit node IDs... -2024-09-06T10:57:38.473Z DRIVER all queues busy -2024-09-06T10:57:38.474Z SERIAL » 0x010300d22e (5 bytes) -2024-09-06T10:57:38.475Z DRIVER » [REQ] [StartWatchdog] -2024-09-06T10:57:38.478Z SERIAL » 0x0105000b800273 (7 bytes) -2024-09-06T10:57:38.478Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 16 bit -2024-09-06T10:57:38.480Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:38.484Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:38.485Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T10:57:38.485Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:38.486Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T10:57:38.488Z CNTRLR Switching to 16-bit node IDs successful -2024-09-06T10:57:38.489Z SERIAL » 0x0105000b800170 (7 bytes) -2024-09-06T10:57:38.490Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 8 bit -2024-09-06T10:57:38.496Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:38.496Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T10:57:38.497Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:38.497Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T10:57:38.498Z CNTRLR Switching to 8-bit node IDs successful -2024-09-06T10:57:38.498Z CNTRLR querying controller IDs... -2024-09-06T10:57:38.499Z SERIAL » 0x01030020dc (5 bytes) -2024-09-06T10:57:38.499Z DRIVER » [REQ] [GetControllerId] -2024-09-06T10:57:38.505Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:38.505Z SERIAL « 0x01080120da7caa1b01c0 (10 bytes) -2024-09-06T10:57:38.505Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:38.506Z DRIVER « [RES] [GetControllerId] - home ID: 0xda7caa1b - own node ID: 1 -2024-09-06T10:57:38.507Z CNTRLR received controller IDs: - home ID: 0xda7caa1b - own node ID: 1 -2024-09-06T10:57:38.507Z CNTRLR Enabling TX status report... -2024-09-06T10:57:38.508Z SERIAL » 0x0105000b02ff0c (7 bytes) -2024-09-06T10:57:38.508Z DRIVER » [REQ] [SerialAPISetup] - command: SetTxStatusReport - enabled: true -2024-09-06T10:57:38.513Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:38.514Z SERIAL « 0x0105010b0201f3 (7 bytes) -2024-09-06T10:57:38.514Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:38.514Z DRIVER « [RES] [SerialAPISetup] - command: SetTxStatusReport - success: true -2024-09-06T10:57:38.515Z CNTRLR Enabling TX status report successful... -2024-09-06T10:57:38.515Z CNTRLR finding SUC... -2024-09-06T10:57:38.516Z SERIAL » 0x01030056aa (5 bytes) -2024-09-06T10:57:38.516Z DRIVER » [REQ] [GetSUCNodeId] -2024-09-06T10:57:38.521Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:38.521Z SERIAL « 0x0104015600ac (6 bytes) -2024-09-06T10:57:38.522Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:38.522Z DRIVER « [RES] [GetSUCNodeId] - payload: 0x00 -2024-09-06T10:57:38.523Z CNTRLR No SUC present in the network -2024-09-06T10:57:38.523Z CNTRLR There is no SUC/SIS in the network - promoting ourselves... -2024-09-06T10:57:38.524Z SERIAL » 0x01080054010125010384 (10 bytes) -2024-09-06T10:57:38.524Z DRIVER » [REQ] [SetSUCNodeId] - payload: 0x0101250103 -2024-09-06T10:57:38.531Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:38.532Z SERIAL « 0x0104015401af (6 bytes) -2024-09-06T10:57:38.532Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:38.533Z DRIVER « [RES] [SetSUCNodeId] - was executed: true -2024-09-06T10:57:38.533Z CNTRLR Promotion to SUC/SIS succeeded. -2024-09-06T10:57:38.534Z DRIVER all queues idle -2024-09-06T10:57:38.538Z CNTRLR [Node 001] [Manufacturer Specific] manufacturerId: metadata updated -2024-09-06T10:57:38.539Z CNTRLR [Node 001] [Manufacturer Specific] productType: metadata updated -2024-09-06T10:57:38.539Z CNTRLR [Node 001] [Manufacturer Specific] productId: metadata updated -2024-09-06T10:57:38.539Z CNTRLR [Node 001] [+] [Manufacturer Specific] manufacturerId: 0 -2024-09-06T10:57:38.539Z CNTRLR [Node 001] [+] [Manufacturer Specific] productType: 4 -2024-09-06T10:57:38.539Z CNTRLR [Node 001] [+] [Manufacturer Specific] productId: 4 -2024-09-06T10:57:38.539Z CNTRLR [Node 001] [Version] firmwareVersions: metadata updated -2024-09-06T10:57:38.539Z CNTRLR [Node 001] [+] [Version] firmwareVersions: 7.22 -2024-09-06T10:57:38.539Z CNTRLR [Node 001] [Version] zWaveProtocolVersion: metadata updated -2024-09-06T10:57:38.539Z CNTRLR [Node 001] [+] [Version] zWaveProtocolVersion: "7.22.1" -2024-09-06T10:57:38.540Z CNTRLR [Node 001] [Version] sdkVersion: metadata updated -2024-09-06T10:57:38.540Z CNTRLR [Node 001] [+] [Version] sdkVersion: "7.22.1" -2024-09-06T10:57:38.540Z CNTRLR Interview completed -2024-09-06T10:57:38.540Z DRIVER Network key for S0 configured, enabling S0 security manager... -2024-09-06T10:57:38.540Z DRIVER At least one network key for S2 configured, enabling S2 security manager... -2024-09-06T10:57:38.541Z DRIVER At least one network key for Z-Wave Long Range configured, enabling security m - anager... -2024-09-06T10:57:38.541Z DRIVER driver ready -2024-09-06T10:57:38.541Z CNTRLR [Node 001] Beginning interview - last completed stage: None -2024-09-06T10:57:38.541Z CNTRLR [Node 001] new node, doing a full interview... -2024-09-06T10:57:38.541Z CNTRLR » [Node 001] querying protocol info... -2024-09-06T10:57:38.542Z DRIVER all queues busy -2024-09-06T10:57:38.542Z SERIAL » 0x0104004101bb (6 bytes) -2024-09-06T10:57:38.542Z DRIVER » [REQ] [GetNodeProtocolInfo] - payload: 0x01 -2024-09-06T10:57:38.548Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:38.548Z SERIAL « 0x010a0141d3960102010000f2 (12 bytes) -2024-09-06T10:57:38.548Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:38.549Z DRIVER « [RES] [GetNodeProtocolInfo] - payload: 0xd3960102010000 -2024-09-06T10:57:38.549Z CNTRLR « [Node 001] received response for protocol info: - basic device class: Static Controller - generic device class: Remote Controller - specific device class: Unused - node type: Controller - is always listening: true - is frequent listening: false - can route messages: true - supports security: false - supports beaming: true - maximum data rate: 100000 kbps - protocol version: 3 -2024-09-06T10:57:38.549Z CNTRLR [Node 001] Interview stage completed: ProtocolInfo -2024-09-06T10:57:38.550Z DRIVER all queues idle -2024-09-06T10:57:38.552Z CNTRLR [Node 001] Embedded device config loaded -2024-09-06T10:57:38.552Z CNTRLR [Node 001] Interview stage completed: OverwriteConfig -2024-09-06T10:57:38.552Z CNTRLR [Node 001] Interview completed -2024-09-06T10:57:38.552Z CNTRLR [Node 001] The node is ready to be used -2024-09-06T10:57:38.552Z CNTRLR All nodes are ready to be used -2024-09-06T10:57:38.553Z CNTRLR [Node 001] The node is alive. -2024-09-06T10:57:43.246Z DRIVER all queues busy -2024-09-06T10:57:43.248Z SERIAL » 0x0105005081042f (7 bytes) -2024-09-06T10:57:43.249Z DRIVER » [REQ] [SetLearnMode] - callback id: 4 - intent: Inclusion -2024-09-06T10:57:43.254Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:43.256Z SERIAL « 0x0104015001ab (6 bytes) -2024-09-06T10:57:43.256Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:43.257Z DRIVER « [RES] [SetLearnMode] - success: true -2024-09-06T10:57:43.259Z DRIVER all queues idle -2024-09-06T10:57:43.448Z SERIAL « 0x0107005004010200af (9 bytes) -2024-09-06T10:57:43.449Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:43.450Z DRIVER « [REQ] [SetLearnMode] - callback id: 4 - status: Started - assigned node id: 2 -2024-09-06T10:57:43.450Z DRIVER handling request SetLearnMode (80) -2024-09-06T10:57:43.450Z DRIVER 1 handler registered! -2024-09-06T10:57:43.450Z DRIVER invoking handler #0 -2024-09-06T10:57:43.450Z DRIVER the message was handled -2024-09-06T10:57:43.551Z DRIVER all queues busy -2024-09-06T10:57:43.552Z SERIAL » 0x0103003bc7 (5 bytes) -2024-09-06T10:57:43.553Z DRIVER » [REQ] [GetBackgroundRSSI] -2024-09-06T10:57:43.559Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:43.560Z SERIAL « 0x0107013b9d9a9a7f20 (9 bytes) -2024-09-06T10:57:43.561Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:43.561Z DRIVER « [RES] [GetBackgroundRSSI] - channel 0: -99 dBm - channel 1: -102 dBm - channel 2: -102 dBm - channel 3: N/A -2024-09-06T10:57:43.563Z DRIVER all queues idle -2024-09-06T10:57:43.969Z SERIAL « 0x01060049100100a1 (8 bytes) -2024-09-06T10:57:43.970Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:43.971Z DRIVER « [REQ] [ApplicationUpdateRequest] - type: SUC_IdChanged - SUC node ID: 1 -2024-09-06T10:57:43.987Z SERIAL « 0x0107005004050200ab (9 bytes) -2024-09-06T10:57:43.987Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:43.988Z DRIVER « [REQ] [SetLearnMode] - callback id: 4 - status: ProtocolDone - assigned node id: 2 -2024-09-06T10:57:43.989Z DRIVER handling request SetLearnMode (80) -2024-09-06T10:57:43.989Z DRIVER 1 handler registered! -2024-09-06T10:57:43.989Z DRIVER invoking handler #0 -2024-09-06T10:57:43.989Z DRIVER the message was handled -2024-09-06T10:57:43.990Z DRIVER waiting for security bootstrapping... -2024-09-06T10:57:43.991Z CNTRLR querying controller IDs... -2024-09-06T10:57:43.991Z DRIVER all queues busy -2024-09-06T10:57:43.992Z SERIAL » 0x01030020dc (5 bytes) -2024-09-06T10:57:43.992Z DRIVER » [REQ] [GetControllerId] -2024-09-06T10:57:43.998Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:43.998Z SERIAL « 0x01080120f6cb98710200 (10 bytes) -2024-09-06T10:57:43.998Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:43.999Z DRIVER « [RES] [GetControllerId] - home ID: 0xf6cb9871 - own node ID: 2 -2024-09-06T10:57:43.999Z CNTRLR received controller IDs: - home ID: 0xf6cb9871 - own node ID: 2 -2024-09-06T10:57:43.999Z DRIVER Joined network with home ID 0xf6cb9871, switching to new network cache... -2024-09-06T10:57:43.999Z CNTRLR querying controller capabilities... -2024-09-06T10:57:44.000Z SERIAL » 0x01030005f9 (5 bytes) -2024-09-06T10:57:44.000Z DRIVER » [REQ] [GetControllerCapabilities] -2024-09-06T10:57:44.006Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:44.006Z SERIAL « 0x0104010506f9 (6 bytes) -2024-09-06T10:57:44.006Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:44.007Z DRIVER « [RES] [GetControllerCapabilities] - payload: 0x06 -2024-09-06T10:57:44.007Z CNTRLR received controller capabilities: - controller role: Inclusion - is the SUC: false - started this network: false - SIS is present: true - was real primary: false -2024-09-06T10:57:44.008Z CNTRLR querying additional controller information... -2024-09-06T10:57:44.008Z SERIAL » 0x01030002fe (5 bytes) -2024-09-06T10:57:44.008Z DRIVER » [REQ] [GetSerialApiInitData] -2024-09-06T10:57:44.016Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:44.017Z SERIAL « 0x012501020a001d030000000000000000000000000000000000000000000000000 (39 bytes) - 00000000800c5 -2024-09-06T10:57:44.017Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:44.017Z DRIVER « [RES] [GetSerialApiInitData] - payload: 0x0a001d03000000000000000000000000000000000000000000000000000000000 - 800 -2024-09-06T10:57:44.018Z CNTRLR received additional controller information: - Z-Wave API version: 1 (official) - Z-Wave chip type: EFR32ZG23 / ZGM230S - node type Controller - controller role: primary - controller is the SIS: false - controller supports timers: false - Z-Wave Classic nodes: 1, 2 -2024-09-06T10:57:44.019Z CNTRLR [Node 002] [Manufacturer Specific] manufacturerId: metadata updated -2024-09-06T10:57:44.019Z CNTRLR [Node 002] [Manufacturer Specific] productType: metadata updated -2024-09-06T10:57:44.019Z CNTRLR [Node 002] [Manufacturer Specific] productId: metadata updated -2024-09-06T10:57:44.019Z CNTRLR [Node 002] [+] [Manufacturer Specific] manufacturerId: 0 -2024-09-06T10:57:44.019Z CNTRLR [Node 002] [+] [Manufacturer Specific] productType: 4 -2024-09-06T10:57:44.019Z CNTRLR [Node 002] [+] [Manufacturer Specific] productId: 4 -2024-09-06T10:57:44.019Z CNTRLR [Node 002] [Version] firmwareVersions: metadata updated -2024-09-06T10:57:44.019Z CNTRLR [Node 002] [+] [Version] firmwareVersions: 7.22 -2024-09-06T10:57:44.020Z CNTRLR [Node 002] [Version] zWaveProtocolVersion: metadata updated -2024-09-06T10:57:44.020Z CNTRLR [Node 002] [+] [Version] zWaveProtocolVersion: "7.22.1" -2024-09-06T10:57:44.020Z CNTRLR [Node 002] [Version] sdkVersion: metadata updated -2024-09-06T10:57:44.020Z CNTRLR [Node 002] [+] [Version] sdkVersion: "7.22.1" -2024-09-06T10:57:44.020Z CNTRLR Interview completed -2024-09-06T10:57:44.020Z DRIVER all queues idle -2024-09-06T10:57:44.198Z SERIAL « 0x010b00a8000201029f0400d81e (13 bytes) -2024-09-06T10:57:44.199Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:44.200Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -40 dBm - └─[Security2CCKEXGet] -2024-09-06T10:57:44.201Z CNTRLR » [Node 001] querying protocol info... -2024-09-06T10:57:44.201Z DRIVER all queues busy -2024-09-06T10:57:44.202Z SERIAL » 0x0104004101bb (6 bytes) -2024-09-06T10:57:44.202Z DRIVER » [REQ] [GetNodeProtocolInfo] - payload: 0x01 -2024-09-06T10:57:44.207Z SERIAL « [ACK] (0x06) -2024-09-06T10:57:44.208Z SERIAL « 0x010a0141d3960102010000f2 (12 bytes) -2024-09-06T10:57:44.208Z SERIAL » [ACK] (0x06) -2024-09-06T10:57:44.209Z DRIVER « [RES] [GetNodeProtocolInfo] - payload: 0xd3960102010000 -2024-09-06T10:57:44.209Z CNTRLR « [Node 001] received response for protocol info: - basic device class: Static Controller - generic device class: Remote Controller - specific device class: Unused - node type: Controller - is always listening: true - is frequent listening: false - can route messages: true - supports security: false - supports beaming: true - maximum data rate: 100000 kbps - protocol version: 3 -2024-09-06T10:57:44.210Z CNTRLR [Node 001] Interview stage completed: ProtocolInfo -2024-09-06T10:57:44.210Z DRIVER Finished joining network -2024-09-06T10:57:44.210Z DRIVER all queues idle -2024-09-06T10:59:17.029Z DRIVER ███████╗ ██╗ ██╗ █████╗ ██╗ ██╗ ███████╗ ██╗ ███████╗ - ╚══███╔╝ ██║ ██║ ██╔══██╗ ██║ ██║ ██╔════╝ ██║ ██╔════╝ - ███╔╝ █████╗ ██║ █╗ ██║ ███████║ ██║ ██║ █████╗ ██║ ███████╗ - ███╔╝ ╚════╝ ██║███╗██║ ██╔══██║ ╚██╗ ██╔╝ ██╔══╝ ██ ██║ ╚════██║ - ███████╗ ╚███╔███╔╝ ██║ ██║ ╚████╔╝ ███████╗ ╚█████╔╝ ███████║ - ╚══════╝ ╚══╝╚══╝ ╚═╝ ╚═╝ ╚═══╝ ╚══════╝ ╚════╝ ╚══════╝ -2024-09-06T10:59:17.029Z DRIVER version 13.2.0 -2024-09-06T10:59:17.029Z DRIVER -2024-09-06T10:59:17.029Z DRIVER starting driver... -2024-09-06T10:59:17.030Z DRIVER opening serial port /dev/serial/by-id/usb-Silicon_Labs_CP2102N_USB_to_UART_Bri - dge_Controller_ca4d95064355ee118d4d1294de9da576-if00-port0 -2024-09-06T10:59:17.038Z DRIVER serial port opened -2024-09-06T10:59:17.038Z SERIAL » 0x15 (1 bytes) -2024-09-06T10:59:18.041Z DRIVER loading configuration... -2024-09-06T10:59:18.043Z CONFIG version 13.2.0 -2024-09-06T10:59:18.346Z DRIVER beginning interview... -2024-09-06T10:59:18.347Z DRIVER added request handler for AddNodeToNetwork (0x4a)... - 1 registered -2024-09-06T10:59:18.347Z DRIVER added request handler for RemoveNodeFromNetwork (0x4b)... - 1 registered -2024-09-06T10:59:18.347Z DRIVER added request handler for ReplaceFailedNode (0x63)... - 1 registered -2024-09-06T10:59:18.347Z DRIVER added request handler for SetLearnMode (0x50)... - 1 registered -2024-09-06T10:59:18.347Z CNTRLR querying Serial API capabilities... -2024-09-06T10:59:18.356Z SERIAL » 0x01030007fb (5 bytes) -2024-09-06T10:59:18.357Z DRIVER » [REQ] [GetSerialApiCapabilities] -2024-09-06T10:59:18.366Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:18.366Z SERIAL « 0x012b01070716000000040004f6873e88cf2bc05ffbd7fde09700008000808680b (45 bytes) - a0500700000ee7fc000000041 -2024-09-06T10:59:18.367Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:18.368Z DRIVER « [RES] [GetSerialApiCapabilities] - payload: 0x0716000000040004f6873e88cf2bc05ffbd7fde09700008000808680ba0500700 - 000ee7fc0000000 -2024-09-06T10:59:18.369Z CNTRLR received API capabilities: - firmware version: 7.22 - manufacturer ID: 0x00 - product type: 0x04 - product ID: 0x04 - supported functions: - · GetSerialApiInitData (0x02) - · SetApplicationNodeInformation (0x03) - · GetControllerCapabilities (0x05) - · SetSerialApiTimeouts (0x06) - · GetSerialApiCapabilities (0x07) - · SoftReset (0x08) - · GetProtocolVersion (0x09) - · SerialAPIStarted (0x0a) - · SerialAPISetup (0x0b) - · SetRFReceiveMode (0x10) - · SendNodeInformation (0x12) - · SendData (0x13) - · SendDataMulticast (0x14) - · GetControllerVersion (0x15) - · SendDataAbort (0x16) - · FUNC_ID_ZW_GET_RANDOM (0x1c) - · GetControllerId (0x20) - · UNKNOWN_FUNC_MEMORY_GET_BYTE (0x21) - · UNKNOWN_FUNC_MEMORY_PUT_BYTE (0x22) - · UNKNOWN_FUNC_MEMORY_GET_BUFFER (0x23) - · UNKNOWN_FUNC_MEMORY_PUT_BUFFER (0x24) - · EnterBootloader (0x27) - · UNKNOWN_FUNC_UNKNOWN_0x28 (0x28) - · GetNVMId (0x29) - · ExtNVMReadLongBuffer (0x2a) - · ExtNVMReadLongByte (0x2c) - · NVMOperations (0x2e) - · ClearTxTimers (0x37) - · GetTxTimers (0x38) - · ClearNetworkStats (0x39) - · GetNetworkStats (0x3a) - · GetBackgroundRSSI (0x3b) - · SetListenBeforeTalkThreshold (0x3c) - · ExtendedNVMOperations (0x3d) - · RemoveSpecificNodeIdFromNetwork (0x3f) - · GetNodeProtocolInfo (0x41) - · HardReset (0x42) - · FUNC_ID_ZW_REPLICATION_COMMAND_COMPLETE (0x44) - · FUNC_ID_ZW_REPLICATION_SEND_DATA (0x45) - · AssignReturnRoute (0x46) - · DeleteReturnRoute (0x47) - · RequestNodeNeighborUpdate (0x48) - · ApplicationUpdateRequest (0x49) - · AddNodeToNetwork (0x4a) - · RemoveNodeFromNetwork (0x4b) - · AddPrimaryController (0x4d) - · AssignPriorityReturnRoute (0x4f) - · SetLearnMode (0x50) - · AssignSUCReturnRoute (0x51) - · RequestNetworkUpdate (0x53) - · SetSUCNodeId (0x54) - · DeleteSUCReturnRoute (0x55) - · GetSUCNodeId (0x56) - · SendSUCNodeId (0x57) - · AssignPrioritySUCReturnRoute (0x58) - · ExploreRequestInclusion (0x5e) - · ExploreRequestExclusion (0x5f) - · RequestNodeInfo (0x60) - · RemoveFailedNode (0x61) - · IsFailedNode (0x62) - · ReplaceFailedNode (0x63) - · undefined (0x65) - · RequestProtocolCCEncryption (0x68) - · GetRoutingInfo (0x80) - · LockUnlockLastRoute (0x90) - · GetPriorityRoute (0x92) - · SetPriorityRoute (0x93) - · UNKNOWN_FUNC_UNKNOWN_0x98 (0x98) - · VirtualNodeSetNodeInfo (0xa0) - · VirtualNodeSendNodeInfo (0xa2) - · VirtualNodeSetLearnMode (0xa4) - · GetVirtualNodes (0xa5) - · IsVirtualNode (0xa6) - · BridgeApplicationCommand (0xa8) - · SendDataBridge (0xa9) - · SendDataMulticastBridge (0xab) - · GetLibrary (0xbd) - · SendTestFrame (0xbe) - · GetProtocolStatus (0xbf) - · StartWatchdog (0xd2) - · StopWatchdog (0xd3) - · SetMaximumRoutingAttempts (0xd4) - · SetMaxSmartStartInclusionRequestInterval (0xd6) - · undefined (0xd7) - · undefined (0xd8) - · Shutdown (0xd9) - · GetLongRangeNodes (0xda) - · GetLongRangeChannel (0xdb) - · SetLongRangeChannel (0xdc) - · SetLongRangeShadowNodeIDs (0xdd) - · Proprietary_DE (0xde) - · Proprietary_DF (0xdf) - · Proprietary_E7 (0xe7) - · Proprietary_E8 (0xe8) -2024-09-06T10:59:18.370Z CNTRLR querying additional controller information... -2024-09-06T10:59:18.371Z SERIAL » 0x01030002fe (5 bytes) -2024-09-06T10:59:18.371Z DRIVER » [REQ] [GetSerialApiInitData] -2024-09-06T10:59:18.379Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:18.379Z SERIAL « 0x012501020a001d030000000000000000000000000000000000000000000000000 (39 bytes) - 00000000800c5 -2024-09-06T10:59:18.380Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:18.380Z DRIVER « [RES] [GetSerialApiInitData] - payload: 0x0a001d03000000000000000000000000000000000000000000000000000000000 - 800 -2024-09-06T10:59:18.381Z CNTRLR received additional controller information: - Z-Wave API version: 1 (official) - Z-Wave chip type: EFR32ZG23 / ZGM230S - node type Controller - controller role: primary - controller is the SIS: false - controller supports timers: false - Z-Wave Classic nodes: 1, 2 -2024-09-06T10:59:18.381Z CNTRLR querying version info... -2024-09-06T10:59:18.382Z SERIAL » 0x01030015e9 (5 bytes) -2024-09-06T10:59:18.382Z DRIVER » [REQ] [GetControllerVersion] -2024-09-06T10:59:18.390Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:18.390Z SERIAL « 0x011001155a2d5761766520372e3232000797 (18 bytes) -2024-09-06T10:59:18.391Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:18.391Z DRIVER « [RES] [GetControllerVersion] - payload: 0x5a2d5761766520372e32320007 -2024-09-06T10:59:18.392Z CNTRLR received version info: - controller type: Bridge Controller - library version: Z-Wave 7.22 -2024-09-06T10:59:18.392Z CNTRLR querying protocol version info... -2024-09-06T10:59:18.393Z SERIAL » 0x01030009f5 (5 bytes) -2024-09-06T10:59:18.393Z DRIVER » [REQ] [GetProtocolVersion] -2024-09-06T10:59:18.400Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:18.400Z SERIAL « 0x0119010900071601abcd63636639623665613165616566313162c3 (27 bytes) -2024-09-06T10:59:18.401Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:18.402Z DRIVER « [RES] [GetProtocolVersion] - payload: 0x00071601abcd63636639623665613165616566313162 -2024-09-06T10:59:18.402Z CNTRLR received protocol version info: - protocol type: Z-Wave - protocol version: 7.22.1 - appl. framework build no.: 43981 - git commit hash: 63636639623665613165616566313162 -2024-09-06T10:59:18.403Z CNTRLR querying controller capabilities... -2024-09-06T10:59:18.404Z SERIAL » 0x01030005f9 (5 bytes) -2024-09-06T10:59:18.404Z DRIVER » [REQ] [GetControllerCapabilities] -2024-09-06T10:59:18.409Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:18.409Z SERIAL « 0x0104010506f9 (6 bytes) -2024-09-06T10:59:18.410Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:18.410Z DRIVER « [RES] [GetControllerCapabilities] - payload: 0x06 -2024-09-06T10:59:18.411Z CNTRLR received controller capabilities: - controller role: Inclusion - is the SUC: false - started this network: false - SIS is present: true - was real primary: false -2024-09-06T10:59:18.411Z CNTRLR querying serial API setup capabilities... -2024-09-06T10:59:18.412Z SERIAL » 0x0104000b01f1 (6 bytes) -2024-09-06T10:59:18.413Z DRIVER » [REQ] [SerialAPISetup] - command: GetSupportedCommands - payload: 0x01 -2024-09-06T10:59:18.419Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:18.419Z SERIAL « 0x0116010b01ff9f8007800000008000000000000000800085 (24 bytes) -2024-09-06T10:59:18.420Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:18.421Z DRIVER « [RES] [SerialAPISetup] - command: GetSupportedCommands - payload: 0xff9f80078000000080000000000000008000 -2024-09-06T10:59:18.421Z CNTRLR supported serial API setup commands: - · GetSupportedCommands - · SetTxStatusReport - · SetLongRangeMaximumTxPower - · SetPowerlevel - · GetLongRangeMaximumTxPower - · GetPowerlevel - · GetMaximumPayloadSize - · GetLongRangeMaximumPayloadSize - · SetPowerlevel16Bit - · GetPowerlevel16Bit - · GetRFRegion - · SetRFRegion - · SetNodeIDType -2024-09-06T10:59:18.422Z CNTRLR querying max. payload size... -2024-09-06T10:59:18.422Z SERIAL » 0x0104000b10e0 (6 bytes) -2024-09-06T10:59:18.423Z DRIVER » [REQ] [SerialAPISetup] - command: GetMaximumPayloadSize - payload: 0x10 -2024-09-06T10:59:18.428Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:18.428Z SERIAL « 0x0105010b102ece (7 bytes) -2024-09-06T10:59:18.428Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:18.429Z DRIVER « [RES] [SerialAPISetup] - command: GetMaximumPayloadSize - maximum payload size: 46 bytes -2024-09-06T10:59:18.429Z CNTRLR maximum payload size: 46 bytes -2024-09-06T10:59:18.430Z CNTRLR supported Z-Wave features: - · SmartStart -2024-09-06T10:59:18.430Z CNTRLR Querying configured RF region... -2024-09-06T10:59:18.431Z SERIAL » 0x0104000b20d0 (6 bytes) -2024-09-06T10:59:18.431Z DRIVER » [REQ] [SerialAPISetup] - command: GetRFRegion - payload: 0x20 -2024-09-06T10:59:18.437Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:18.437Z SERIAL « 0x0105010b2000d0 (7 bytes) -2024-09-06T10:59:18.438Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:18.438Z DRIVER « [RES] [SerialAPISetup] - command: GetRFRegion - region: Europe -2024-09-06T10:59:18.439Z CNTRLR The controller is using RF region Europe -2024-09-06T10:59:18.439Z CNTRLR Querying configured max. Long Range powerlevel... -2024-09-06T10:59:18.440Z SERIAL » 0x0104000b05f5 (6 bytes) -2024-09-06T10:59:18.440Z DRIVER » [REQ] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - payload: 0x05 -2024-09-06T10:59:18.445Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:18.445Z SERIAL « 0x0106010b05008c7a (8 bytes) -2024-09-06T10:59:18.445Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:18.446Z DRIVER « [RES] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - max. TX power (LR): 14.0 dBm -2024-09-06T10:59:18.447Z CNTRLR The max. LR powerlevel is 14.0 dBm -2024-09-06T10:59:18.447Z CNTRLR Querying configured Long Range channel information... -2024-09-06T10:59:18.447Z SERIAL » 0x010300db27 (5 bytes) -2024-09-06T10:59:18.448Z DRIVER » [REQ] [GetLongRangeChannel] -2024-09-06T10:59:18.453Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:18.453Z SERIAL « 0x010501db001030 (7 bytes) -2024-09-06T10:59:18.454Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:18.454Z DRIVER « [RES] [GetLongRangeChannel] - payload: 0x0010 -2024-09-06T10:59:18.455Z CNTRLR received Z-Wave Long Range channel information: - channel: Unsupported - supports auto channel selection: true -2024-09-06T10:59:18.455Z CNTRLR Performing soft reset... -2024-09-06T10:59:18.456Z SERIAL » 0x01030008f4 (5 bytes) -2024-09-06T10:59:18.457Z DRIVER » [REQ] [SoftReset] -2024-09-06T10:59:18.461Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:18.462Z CNTRLR Waiting for the controller to reconnect... -2024-09-06T10:59:18.462Z DRIVER all queues idle -2024-09-06T10:59:18.576Z SERIAL « 0x0116000a0700010100085e989f556c568f7400031d00003f (24 bytes) -2024-09-06T10:59:18.578Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:18.580Z DRIVER « [REQ] [SerialAPIStarted] - wake up reason: SoftwareReset - watchdog enabled: false - generic device class: 0x01 - specific device class: 0x00 - always listening: false - supports Long Range: false -2024-09-06T10:59:18.581Z CNTRLR reconnected and restarted -2024-09-06T10:59:18.582Z CNTRLR Starting hardware watchdog... -2024-09-06T10:59:18.583Z CNTRLR Switching serial API to 16-bit node IDs... -2024-09-06T10:59:18.585Z CNTRLR Switching serial API to 8-bit node IDs... -2024-09-06T10:59:18.586Z DRIVER all queues busy -2024-09-06T10:59:18.588Z SERIAL » 0x010300d22e (5 bytes) -2024-09-06T10:59:18.588Z DRIVER » [REQ] [StartWatchdog] -2024-09-06T10:59:18.594Z SERIAL » 0x0105000b800273 (7 bytes) -2024-09-06T10:59:18.594Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 16 bit -2024-09-06T10:59:18.595Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:18.600Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:18.600Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T10:59:18.600Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:18.601Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T10:59:18.601Z CNTRLR Switching to 16-bit node IDs successful -2024-09-06T10:59:18.602Z SERIAL » 0x0105000b800170 (7 bytes) -2024-09-06T10:59:18.602Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 8 bit -2024-09-06T10:59:18.608Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:18.608Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T10:59:18.608Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:18.609Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T10:59:18.609Z CNTRLR Switching to 8-bit node IDs successful -2024-09-06T10:59:18.610Z CNTRLR querying controller IDs... -2024-09-06T10:59:18.610Z SERIAL » 0x01030020dc (5 bytes) -2024-09-06T10:59:18.611Z DRIVER » [REQ] [GetControllerId] -2024-09-06T10:59:18.616Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:18.617Z SERIAL « 0x01080120f6cb98710200 (10 bytes) -2024-09-06T10:59:18.617Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:18.618Z DRIVER « [RES] [GetControllerId] - home ID: 0xf6cb9871 - own node ID: 2 -2024-09-06T10:59:18.618Z CNTRLR received controller IDs: - home ID: 0xf6cb9871 - own node ID: 2 -2024-09-06T10:59:18.618Z CNTRLR Enabling TX status report... -2024-09-06T10:59:18.619Z SERIAL » 0x0105000b02ff0c (7 bytes) -2024-09-06T10:59:18.620Z DRIVER » [REQ] [SerialAPISetup] - command: SetTxStatusReport - enabled: true -2024-09-06T10:59:18.624Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:18.625Z SERIAL « 0x0105010b0201f3 (7 bytes) -2024-09-06T10:59:18.625Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:18.625Z DRIVER « [RES] [SerialAPISetup] - command: SetTxStatusReport - success: true -2024-09-06T10:59:18.626Z CNTRLR Enabling TX status report successful... -2024-09-06T10:59:18.626Z CNTRLR finding SUC... -2024-09-06T10:59:18.627Z SERIAL » 0x01030056aa (5 bytes) -2024-09-06T10:59:18.627Z DRIVER » [REQ] [GetSUCNodeId] -2024-09-06T10:59:18.631Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:18.632Z SERIAL « 0x0104015601ad (6 bytes) -2024-09-06T10:59:18.632Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:18.632Z DRIVER « [RES] [GetSUCNodeId] - payload: 0x01 -2024-09-06T10:59:18.633Z CNTRLR SUC has node ID 1 -2024-09-06T10:59:18.634Z DRIVER all queues idle -2024-09-06T10:59:18.645Z DRIVER Cache file for homeId 0xf6cb9871 found, attempting to restore the network from - cache... -2024-09-06T10:59:18.653Z CNTRLR [Node 002] Embedded device config loaded -2024-09-06T10:59:18.653Z DRIVER Restoring the network from cache was successful! -2024-09-06T10:59:18.654Z CNTRLR [Node 002] [Manufacturer Specific] manufacturerId: metadata updated -2024-09-06T10:59:18.655Z CNTRLR [Node 002] [Manufacturer Specific] productType: metadata updated -2024-09-06T10:59:18.655Z CNTRLR [Node 002] [Manufacturer Specific] productId: metadata updated -2024-09-06T10:59:18.655Z CNTRLR [Node 002] [~] [Manufacturer Specific] manufacturerId: 0 => 0 -2024-09-06T10:59:18.655Z CNTRLR [Node 002] [~] [Manufacturer Specific] productType: 4 => 4 -2024-09-06T10:59:18.656Z CNTRLR [Node 002] [~] [Manufacturer Specific] productId: 4 => 4 -2024-09-06T10:59:18.656Z CNTRLR [Node 002] [Version] firmwareVersions: metadata updated -2024-09-06T10:59:18.656Z CNTRLR [Node 002] [~] [Version] firmwareVersions: 7.22 => 7.22 -2024-09-06T10:59:18.656Z CNTRLR [Node 002] [Version] zWaveProtocolVersion: metadata updated -2024-09-06T10:59:18.657Z CNTRLR [Node 002] [~] [Version] zWaveProtocolVersion: "7.22.1" => "7.22.1" -2024-09-06T10:59:18.657Z CNTRLR [Node 002] [Version] sdkVersion: metadata updated -2024-09-06T10:59:18.657Z CNTRLR [Node 002] [~] [Version] sdkVersion: "7.22.1" => "7.22.1" -2024-09-06T10:59:18.657Z CNTRLR Interview completed -2024-09-06T10:59:18.657Z DRIVER No network key for S0 found in cache, communication with secure (S0) devices w - on't work! -2024-09-06T10:59:18.657Z DRIVER No network key for S2 found in cache, communication with secure (S2) devices w - on't work! -2024-09-06T10:59:18.657Z DRIVER driver ready -2024-09-06T10:59:18.658Z CNTRLR [Node 002] Beginning interview - last completed stage: None -2024-09-06T10:59:18.658Z CNTRLR [Node 002] new node, doing a full interview... -2024-09-06T10:59:18.658Z CNTRLR » [Node 002] querying protocol info... -2024-09-06T10:59:18.659Z DRIVER all queues busy -2024-09-06T10:59:18.660Z SERIAL » 0x0104004102b8 (6 bytes) -2024-09-06T10:59:18.660Z DRIVER » [REQ] [GetNodeProtocolInfo] - payload: 0x02 -2024-09-06T10:59:18.666Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:18.666Z SERIAL « 0x010a0141d3960102010000f2 (12 bytes) -2024-09-06T10:59:18.667Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:18.667Z DRIVER « [RES] [GetNodeProtocolInfo] - payload: 0xd3960102010000 -2024-09-06T10:59:18.668Z CNTRLR « [Node 002] received response for protocol info: - basic device class: Static Controller - generic device class: Remote Controller - specific device class: Unused - node type: Controller - is always listening: true - is frequent listening: false - can route messages: true - supports security: false - supports beaming: true - maximum data rate: 100000 kbps - protocol version: 3 -2024-09-06T10:59:18.668Z CNTRLR [Node 002] Interview stage completed: ProtocolInfo -2024-09-06T10:59:18.669Z DRIVER all queues idle -2024-09-06T10:59:18.671Z CNTRLR [Node 002] Embedded device config loaded -2024-09-06T10:59:18.671Z CNTRLR [Node 002] Interview stage completed: OverwriteConfig -2024-09-06T10:59:18.671Z CNTRLR [Node 002] Interview completed -2024-09-06T10:59:18.672Z CNTRLR [Node 002] The node is ready to be used -2024-09-06T10:59:18.672Z CNTRLR [Node 002] The node is alive. -2024-09-06T10:59:18.672Z CNTRLR » [Node 001] querying protocol info... -2024-09-06T10:59:18.673Z DRIVER all queues busy -2024-09-06T10:59:18.673Z SERIAL » 0x0104004101bb (6 bytes) -2024-09-06T10:59:18.673Z DRIVER » [REQ] [GetNodeProtocolInfo] - payload: 0x01 -2024-09-06T10:59:18.679Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:18.679Z SERIAL « 0x010a0141d3960102010000f2 (12 bytes) -2024-09-06T10:59:18.680Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:18.680Z DRIVER « [RES] [GetNodeProtocolInfo] - payload: 0xd3960102010000 -2024-09-06T10:59:18.681Z CNTRLR « [Node 001] received response for protocol info: - basic device class: Static Controller - generic device class: Remote Controller - specific device class: Unused - node type: Controller - is always listening: true - is frequent listening: false - can route messages: true - supports security: false - supports beaming: true - maximum data rate: 100000 kbps - protocol version: 3 -2024-09-06T10:59:18.681Z CNTRLR [Node 001] Interview stage completed: ProtocolInfo -2024-09-06T10:59:18.682Z CNTRLR Determining node status: 1 -2024-09-06T10:59:18.682Z CNTRLR » [Node 001] pinging the node... -2024-09-06T10:59:18.684Z SERIAL » 0x010d00a9020101002500000000017d (15 bytes) -2024-09-06T10:59:18.685Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 1 - └─[NoOperationCC] -2024-09-06T10:59:18.690Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:18.692Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T10:59:18.693Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:18.693Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T10:59:18.714Z SERIAL « 0x011d00a90100000100d87f7f7f7f00000300000000030100007f7f7f7f7fed (31 bytes) -2024-09-06T10:59:18.714Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:18.715Z DRIVER « [REQ] [SendDataBridge] - callback id: 1 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -40 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T10:59:18.716Z CNTRLR [Node 001] The node is alive. -2024-09-06T10:59:18.716Z CNTRLR « [Node 001] ping successful -2024-09-06T10:59:18.716Z DRIVER all queues idle -2024-09-06T10:59:23.658Z CNTRLR Updating the controller NIF... -2024-09-06T10:59:23.660Z DRIVER all queues busy -2024-09-06T10:59:23.661Z SERIAL » 0x010f0003010100085e989f556c568f7436 (17 bytes) -2024-09-06T10:59:23.662Z DRIVER » [REQ] [SetApplicationNodeInformation] - is listening: true - generic device class: 0x01 - specific device class: 0x00 - supported CCs: - · Z-Wave Plus Info - · Security - · Security 2 - · Transport Service - · Supervision - · CRC-16 Encapsulation - · Multi Command - · Inclusion Controller - controlled CCs: -2024-09-06T10:59:23.668Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:23.670Z CNTRLR performing hard reset... -2024-09-06T10:59:23.672Z SERIAL » 0x0104004202bb (6 bytes) -2024-09-06T10:59:23.673Z DRIVER » [REQ] [HardReset] - callback id: 2 -2024-09-06T10:59:23.677Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:23.698Z SERIAL « 0x0104004202bb (6 bytes) -2024-09-06T10:59:23.699Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:23.701Z DRIVER « [REQ] [HardReset] - callback id: 2 -2024-09-06T10:59:23.703Z CNTRLR hard reset succeeded -2024-09-06T10:59:23.703Z CNTRLR querying Serial API capabilities... -2024-09-06T10:59:23.705Z SERIAL » 0x01030007fb (5 bytes) -2024-09-06T10:59:23.705Z DRIVER » [REQ] [GetSerialApiCapabilities] -2024-09-06T10:59:23.714Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:23.716Z SERIAL « 0x012b01070716000000040004f6873e88cf2bc05ffbd7fde09700008000808680b (45 bytes) - a0500700000ee7fc000000041 -2024-09-06T10:59:23.716Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:23.717Z DRIVER « [RES] [GetSerialApiCapabilities] - payload: 0x0716000000040004f6873e88cf2bc05ffbd7fde09700008000808680ba0500700 - 000ee7fc0000000 -2024-09-06T10:59:23.719Z CNTRLR received API capabilities: - firmware version: 7.22 - manufacturer ID: 0x00 - product type: 0x04 - product ID: 0x04 - supported functions: - · GetSerialApiInitData (0x02) - · SetApplicationNodeInformation (0x03) - · GetControllerCapabilities (0x05) - · SetSerialApiTimeouts (0x06) - · GetSerialApiCapabilities (0x07) - · SoftReset (0x08) - · GetProtocolVersion (0x09) - · SerialAPIStarted (0x0a) - · SerialAPISetup (0x0b) - · SetRFReceiveMode (0x10) - · SendNodeInformation (0x12) - · SendData (0x13) - · SendDataMulticast (0x14) - · GetControllerVersion (0x15) - · SendDataAbort (0x16) - · FUNC_ID_ZW_GET_RANDOM (0x1c) - · GetControllerId (0x20) - · UNKNOWN_FUNC_MEMORY_GET_BYTE (0x21) - · UNKNOWN_FUNC_MEMORY_PUT_BYTE (0x22) - · UNKNOWN_FUNC_MEMORY_GET_BUFFER (0x23) - · UNKNOWN_FUNC_MEMORY_PUT_BUFFER (0x24) - · EnterBootloader (0x27) - · UNKNOWN_FUNC_UNKNOWN_0x28 (0x28) - · GetNVMId (0x29) - · ExtNVMReadLongBuffer (0x2a) - · ExtNVMReadLongByte (0x2c) - · NVMOperations (0x2e) - · ClearTxTimers (0x37) - · GetTxTimers (0x38) - · ClearNetworkStats (0x39) - · GetNetworkStats (0x3a) - · GetBackgroundRSSI (0x3b) - · SetListenBeforeTalkThreshold (0x3c) - · ExtendedNVMOperations (0x3d) - · RemoveSpecificNodeIdFromNetwork (0x3f) - · GetNodeProtocolInfo (0x41) - · HardReset (0x42) - · FUNC_ID_ZW_REPLICATION_COMMAND_COMPLETE (0x44) - · FUNC_ID_ZW_REPLICATION_SEND_DATA (0x45) - · AssignReturnRoute (0x46) - · DeleteReturnRoute (0x47) - · RequestNodeNeighborUpdate (0x48) - · ApplicationUpdateRequest (0x49) - · AddNodeToNetwork (0x4a) - · RemoveNodeFromNetwork (0x4b) - · AddPrimaryController (0x4d) - · AssignPriorityReturnRoute (0x4f) - · SetLearnMode (0x50) - · AssignSUCReturnRoute (0x51) - · RequestNetworkUpdate (0x53) - · SetSUCNodeId (0x54) - · DeleteSUCReturnRoute (0x55) - · GetSUCNodeId (0x56) - · SendSUCNodeId (0x57) - · AssignPrioritySUCReturnRoute (0x58) - · ExploreRequestInclusion (0x5e) - · ExploreRequestExclusion (0x5f) - · RequestNodeInfo (0x60) - · RemoveFailedNode (0x61) - · IsFailedNode (0x62) - · ReplaceFailedNode (0x63) - · undefined (0x65) - · RequestProtocolCCEncryption (0x68) - · GetRoutingInfo (0x80) - · LockUnlockLastRoute (0x90) - · GetPriorityRoute (0x92) - · SetPriorityRoute (0x93) - · UNKNOWN_FUNC_UNKNOWN_0x98 (0x98) - · VirtualNodeSetNodeInfo (0xa0) - · VirtualNodeSendNodeInfo (0xa2) - · VirtualNodeSetLearnMode (0xa4) - · GetVirtualNodes (0xa5) - · IsVirtualNode (0xa6) - · BridgeApplicationCommand (0xa8) - · SendDataBridge (0xa9) - · SendDataMulticastBridge (0xab) - · GetLibrary (0xbd) - · SendTestFrame (0xbe) - · GetProtocolStatus (0xbf) - · StartWatchdog (0xd2) - · StopWatchdog (0xd3) - · SetMaximumRoutingAttempts (0xd4) - · SetMaxSmartStartInclusionRequestInterval (0xd6) - · undefined (0xd7) - · undefined (0xd8) - · Shutdown (0xd9) - · GetLongRangeNodes (0xda) - · GetLongRangeChannel (0xdb) - · SetLongRangeChannel (0xdc) - · SetLongRangeShadowNodeIDs (0xdd) - · Proprietary_DE (0xde) - · Proprietary_DF (0xdf) - · Proprietary_E7 (0xe7) - · Proprietary_E8 (0xe8) -2024-09-06T10:59:23.719Z CNTRLR querying additional controller information... -2024-09-06T10:59:23.720Z SERIAL » 0x01030002fe (5 bytes) -2024-09-06T10:59:23.721Z DRIVER » [REQ] [GetSerialApiInitData] -2024-09-06T10:59:23.730Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:23.731Z SERIAL « 0x012501020a001d010000000000000000000000000000000000000000000000000 (39 bytes) - 00000000800c7 -2024-09-06T10:59:23.732Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:23.733Z DRIVER « [RES] [GetSerialApiInitData] - payload: 0x0a001d01000000000000000000000000000000000000000000000000000000000 - 800 -2024-09-06T10:59:23.734Z CNTRLR received additional controller information: - Z-Wave API version: 1 (official) - Z-Wave chip type: EFR32ZG23 / ZGM230S - node type Controller - controller role: primary - controller is the SIS: false - controller supports timers: false - Z-Wave Classic nodes: 1 -2024-09-06T10:59:23.735Z CNTRLR querying version info... -2024-09-06T10:59:23.736Z SERIAL » 0x01030015e9 (5 bytes) -2024-09-06T10:59:23.737Z DRIVER » [REQ] [GetControllerVersion] -2024-09-06T10:59:23.743Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:23.744Z SERIAL « 0x011001155a2d5761766520372e3232000797 (18 bytes) -2024-09-06T10:59:23.744Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:23.745Z DRIVER « [RES] [GetControllerVersion] - payload: 0x5a2d5761766520372e32320007 -2024-09-06T10:59:23.747Z CNTRLR received version info: - controller type: Bridge Controller - library version: Z-Wave 7.22 -2024-09-06T10:59:23.747Z CNTRLR querying protocol version info... -2024-09-06T10:59:23.748Z SERIAL » 0x01030009f5 (5 bytes) -2024-09-06T10:59:23.749Z DRIVER » [REQ] [GetProtocolVersion] -2024-09-06T10:59:23.756Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:23.757Z SERIAL « 0x0119010900071601abcd63636639623665613165616566313162c3 (27 bytes) -2024-09-06T10:59:23.758Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:23.759Z DRIVER « [RES] [GetProtocolVersion] - payload: 0x00071601abcd63636639623665613165616566313162 -2024-09-06T10:59:23.760Z CNTRLR received protocol version info: - protocol type: Z-Wave - protocol version: 7.22.1 - appl. framework build no.: 43981 - git commit hash: 63636639623665613165616566313162 -2024-09-06T10:59:23.760Z CNTRLR querying controller capabilities... -2024-09-06T10:59:23.761Z SERIAL » 0x01030005f9 (5 bytes) -2024-09-06T10:59:23.762Z DRIVER » [REQ] [GetControllerCapabilities] -2024-09-06T10:59:23.767Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:23.768Z SERIAL « 0x0104010528d7 (6 bytes) -2024-09-06T10:59:23.768Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:23.769Z DRIVER « [RES] [GetControllerCapabilities] - payload: 0x28 -2024-09-06T10:59:23.770Z CNTRLR received controller capabilities: - controller role: Primary - is the SUC: false - started this network: true - SIS is present: false - was real primary: true -2024-09-06T10:59:23.770Z CNTRLR querying serial API setup capabilities... -2024-09-06T10:59:23.771Z SERIAL » 0x0104000b01f1 (6 bytes) -2024-09-06T10:59:23.771Z DRIVER » [REQ] [SerialAPISetup] - command: GetSupportedCommands - payload: 0x01 -2024-09-06T10:59:23.778Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:23.779Z SERIAL « 0x0116010b01ff9f8007800000008000000000000000800085 (24 bytes) -2024-09-06T10:59:23.779Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:23.780Z DRIVER « [RES] [SerialAPISetup] - command: GetSupportedCommands - payload: 0xff9f80078000000080000000000000008000 -2024-09-06T10:59:23.780Z CNTRLR supported serial API setup commands: - · GetSupportedCommands - · SetTxStatusReport - · SetLongRangeMaximumTxPower - · SetPowerlevel - · GetLongRangeMaximumTxPower - · GetPowerlevel - · GetMaximumPayloadSize - · GetLongRangeMaximumPayloadSize - · SetPowerlevel16Bit - · GetPowerlevel16Bit - · GetRFRegion - · SetRFRegion - · SetNodeIDType -2024-09-06T10:59:23.781Z CNTRLR querying max. payload size... -2024-09-06T10:59:23.782Z SERIAL » 0x0104000b10e0 (6 bytes) -2024-09-06T10:59:23.782Z DRIVER » [REQ] [SerialAPISetup] - command: GetMaximumPayloadSize - payload: 0x10 -2024-09-06T10:59:23.787Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:23.788Z SERIAL « 0x0105010b102ece (7 bytes) -2024-09-06T10:59:23.788Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:23.789Z DRIVER « [RES] [SerialAPISetup] - command: GetMaximumPayloadSize - maximum payload size: 46 bytes -2024-09-06T10:59:23.789Z CNTRLR maximum payload size: 46 bytes -2024-09-06T10:59:23.790Z CNTRLR supported Z-Wave features: - · SmartStart -2024-09-06T10:59:23.790Z CNTRLR Querying configured RF region... -2024-09-06T10:59:23.790Z SERIAL » 0x0104000b20d0 (6 bytes) -2024-09-06T10:59:23.791Z DRIVER » [REQ] [SerialAPISetup] - command: GetRFRegion - payload: 0x20 -2024-09-06T10:59:23.796Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:23.797Z SERIAL « 0x0105010b2000d0 (7 bytes) -2024-09-06T10:59:23.797Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:23.798Z DRIVER « [RES] [SerialAPISetup] - command: GetRFRegion - region: Europe -2024-09-06T10:59:23.799Z CNTRLR The controller is using RF region Europe -2024-09-06T10:59:23.799Z CNTRLR Querying configured max. Long Range powerlevel... -2024-09-06T10:59:23.799Z SERIAL » 0x0104000b05f5 (6 bytes) -2024-09-06T10:59:23.800Z DRIVER » [REQ] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - payload: 0x05 -2024-09-06T10:59:23.805Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:23.806Z SERIAL « 0x0106010b05008c7a (8 bytes) -2024-09-06T10:59:23.806Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:23.807Z DRIVER « [RES] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - max. TX power (LR): 14.0 dBm -2024-09-06T10:59:23.808Z CNTRLR The max. LR powerlevel is 14.0 dBm -2024-09-06T10:59:23.808Z CNTRLR Querying configured Long Range channel information... -2024-09-06T10:59:23.809Z SERIAL » 0x010300db27 (5 bytes) -2024-09-06T10:59:23.809Z DRIVER » [REQ] [GetLongRangeChannel] -2024-09-06T10:59:23.814Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:23.815Z SERIAL « 0x010501db001030 (7 bytes) -2024-09-06T10:59:23.815Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:23.816Z DRIVER « [RES] [GetLongRangeChannel] - payload: 0x0010 -2024-09-06T10:59:23.816Z CNTRLR received Z-Wave Long Range channel information: - channel: Unsupported - supports auto channel selection: true -2024-09-06T10:59:23.816Z CNTRLR Performing soft reset... -2024-09-06T10:59:23.817Z SERIAL » 0x01030008f4 (5 bytes) -2024-09-06T10:59:23.817Z DRIVER » [REQ] [SoftReset] -2024-09-06T10:59:23.821Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:23.822Z CNTRLR Waiting for the controller to reconnect... -2024-09-06T10:59:23.822Z DRIVER all queues idle -2024-09-06T10:59:23.928Z SERIAL « 0x0116000a0700010100085e989f556c568f7400031d00003f (24 bytes) -2024-09-06T10:59:23.929Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:23.930Z DRIVER « [REQ] [SerialAPIStarted] - wake up reason: SoftwareReset - watchdog enabled: false - generic device class: 0x01 - specific device class: 0x00 - always listening: false - supports Long Range: false -2024-09-06T10:59:23.930Z CNTRLR reconnected and restarted -2024-09-06T10:59:23.931Z CNTRLR Starting hardware watchdog... -2024-09-06T10:59:23.931Z CNTRLR Switching serial API to 16-bit node IDs... -2024-09-06T10:59:23.932Z CNTRLR Switching serial API to 8-bit node IDs... -2024-09-06T10:59:23.932Z DRIVER all queues busy -2024-09-06T10:59:23.933Z SERIAL » 0x010300d22e (5 bytes) -2024-09-06T10:59:23.934Z DRIVER » [REQ] [StartWatchdog] -2024-09-06T10:59:23.937Z SERIAL » 0x0105000b800273 (7 bytes) -2024-09-06T10:59:23.937Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 16 bit -2024-09-06T10:59:23.939Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:23.943Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:23.943Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T10:59:23.944Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:23.945Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T10:59:23.946Z CNTRLR Switching to 16-bit node IDs successful -2024-09-06T10:59:23.947Z SERIAL » 0x0105000b800170 (7 bytes) -2024-09-06T10:59:23.948Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 8 bit -2024-09-06T10:59:23.953Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:23.954Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T10:59:23.954Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:23.954Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T10:59:23.955Z CNTRLR Switching to 8-bit node IDs successful -2024-09-06T10:59:23.955Z CNTRLR querying controller IDs... -2024-09-06T10:59:23.955Z SERIAL » 0x01030020dc (5 bytes) -2024-09-06T10:59:23.956Z DRIVER » [REQ] [GetControllerId] -2024-09-06T10:59:23.961Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:23.961Z SERIAL « 0x01080120f0d4e1a501b7 (10 bytes) -2024-09-06T10:59:23.961Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:23.962Z DRIVER « [RES] [GetControllerId] - home ID: 0xf0d4e1a5 - own node ID: 1 -2024-09-06T10:59:23.962Z CNTRLR received controller IDs: - home ID: 0xf0d4e1a5 - own node ID: 1 -2024-09-06T10:59:23.962Z CNTRLR Enabling TX status report... -2024-09-06T10:59:23.963Z SERIAL » 0x0105000b02ff0c (7 bytes) -2024-09-06T10:59:23.963Z DRIVER » [REQ] [SerialAPISetup] - command: SetTxStatusReport - enabled: true -2024-09-06T10:59:23.968Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:23.969Z SERIAL « 0x0105010b0201f3 (7 bytes) -2024-09-06T10:59:23.969Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:23.970Z DRIVER « [RES] [SerialAPISetup] - command: SetTxStatusReport - success: true -2024-09-06T10:59:23.970Z CNTRLR Enabling TX status report successful... -2024-09-06T10:59:23.970Z CNTRLR finding SUC... -2024-09-06T10:59:23.971Z SERIAL » 0x01030056aa (5 bytes) -2024-09-06T10:59:23.971Z DRIVER » [REQ] [GetSUCNodeId] -2024-09-06T10:59:23.976Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:23.977Z SERIAL « 0x0104015600ac (6 bytes) -2024-09-06T10:59:23.977Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:23.978Z DRIVER « [RES] [GetSUCNodeId] - payload: 0x00 -2024-09-06T10:59:23.978Z CNTRLR No SUC present in the network -2024-09-06T10:59:23.978Z CNTRLR There is no SUC/SIS in the network - promoting ourselves... -2024-09-06T10:59:23.979Z SERIAL » 0x01080054010125010384 (10 bytes) -2024-09-06T10:59:23.979Z DRIVER » [REQ] [SetSUCNodeId] - payload: 0x0101250103 -2024-09-06T10:59:23.986Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:23.986Z SERIAL « 0x0104015401af (6 bytes) -2024-09-06T10:59:23.987Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:23.987Z DRIVER « [RES] [SetSUCNodeId] - was executed: true -2024-09-06T10:59:23.988Z CNTRLR Promotion to SUC/SIS succeeded. -2024-09-06T10:59:23.988Z DRIVER all queues idle -2024-09-06T10:59:23.992Z CNTRLR [Node 001] [Manufacturer Specific] manufacturerId: metadata updated -2024-09-06T10:59:23.992Z CNTRLR [Node 001] [Manufacturer Specific] productType: metadata updated -2024-09-06T10:59:23.992Z CNTRLR [Node 001] [Manufacturer Specific] productId: metadata updated -2024-09-06T10:59:23.992Z CNTRLR [Node 001] [+] [Manufacturer Specific] manufacturerId: 0 -2024-09-06T10:59:23.992Z CNTRLR [Node 001] [+] [Manufacturer Specific] productType: 4 -2024-09-06T10:59:23.992Z CNTRLR [Node 001] [+] [Manufacturer Specific] productId: 4 -2024-09-06T10:59:23.992Z CNTRLR [Node 001] [Version] firmwareVersions: metadata updated -2024-09-06T10:59:23.992Z CNTRLR [Node 001] [+] [Version] firmwareVersions: 7.22 -2024-09-06T10:59:23.993Z CNTRLR [Node 001] [Version] zWaveProtocolVersion: metadata updated -2024-09-06T10:59:23.993Z CNTRLR [Node 001] [+] [Version] zWaveProtocolVersion: "7.22.1" -2024-09-06T10:59:23.993Z CNTRLR [Node 001] [Version] sdkVersion: metadata updated -2024-09-06T10:59:23.993Z CNTRLR [Node 001] [+] [Version] sdkVersion: "7.22.1" -2024-09-06T10:59:23.993Z CNTRLR Interview completed -2024-09-06T10:59:23.993Z DRIVER Network key for S0 configured, enabling S0 security manager... -2024-09-06T10:59:23.993Z DRIVER At least one network key for S2 configured, enabling S2 security manager... -2024-09-06T10:59:23.994Z DRIVER At least one network key for Z-Wave Long Range configured, enabling security m - anager... -2024-09-06T10:59:23.994Z DRIVER driver ready -2024-09-06T10:59:23.994Z CNTRLR [Node 001] Beginning interview - last completed stage: None -2024-09-06T10:59:23.994Z CNTRLR [Node 001] new node, doing a full interview... -2024-09-06T10:59:23.994Z CNTRLR » [Node 001] querying protocol info... -2024-09-06T10:59:23.994Z DRIVER all queues busy -2024-09-06T10:59:23.995Z SERIAL » 0x0104004101bb (6 bytes) -2024-09-06T10:59:23.995Z DRIVER » [REQ] [GetNodeProtocolInfo] - payload: 0x01 -2024-09-06T10:59:24.001Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:24.001Z SERIAL « 0x010a0141d3960102010000f2 (12 bytes) -2024-09-06T10:59:24.001Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:24.002Z DRIVER « [RES] [GetNodeProtocolInfo] - payload: 0xd3960102010000 -2024-09-06T10:59:24.002Z CNTRLR « [Node 001] received response for protocol info: - basic device class: Static Controller - generic device class: Remote Controller - specific device class: Unused - node type: Controller - is always listening: true - is frequent listening: false - can route messages: true - supports security: false - supports beaming: true - maximum data rate: 100000 kbps - protocol version: 3 -2024-09-06T10:59:24.003Z CNTRLR [Node 001] Interview stage completed: ProtocolInfo -2024-09-06T10:59:24.003Z DRIVER all queues idle -2024-09-06T10:59:24.005Z CNTRLR [Node 001] Embedded device config loaded -2024-09-06T10:59:24.005Z CNTRLR [Node 001] Interview stage completed: OverwriteConfig -2024-09-06T10:59:24.005Z CNTRLR [Node 001] Interview completed -2024-09-06T10:59:24.005Z CNTRLR [Node 001] The node is ready to be used -2024-09-06T10:59:24.005Z CNTRLR All nodes are ready to be used -2024-09-06T10:59:24.006Z CNTRLR [Node 001] The node is alive. -2024-09-06T10:59:28.705Z DRIVER all queues busy -2024-09-06T10:59:28.707Z SERIAL » 0x0105005081042f (7 bytes) -2024-09-06T10:59:28.708Z DRIVER » [REQ] [SetLearnMode] - callback id: 4 - intent: Inclusion -2024-09-06T10:59:28.713Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:28.714Z SERIAL « 0x0104015001ab (6 bytes) -2024-09-06T10:59:28.715Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:28.716Z DRIVER « [RES] [SetLearnMode] - success: true -2024-09-06T10:59:28.718Z DRIVER all queues idle -2024-09-06T10:59:28.886Z SERIAL « 0x0107005004010200af (9 bytes) -2024-09-06T10:59:28.887Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:28.887Z DRIVER « [REQ] [SetLearnMode] - callback id: 4 - status: Started - assigned node id: 2 -2024-09-06T10:59:28.887Z DRIVER handling request SetLearnMode (80) -2024-09-06T10:59:28.887Z DRIVER 1 handler registered! -2024-09-06T10:59:28.888Z DRIVER invoking handler #0 -2024-09-06T10:59:28.888Z DRIVER the message was handled -2024-09-06T10:59:29.004Z DRIVER all queues busy -2024-09-06T10:59:29.005Z SERIAL » 0x0103003bc7 (5 bytes) -2024-09-06T10:59:29.005Z DRIVER » [REQ] [GetBackgroundRSSI] -2024-09-06T10:59:29.011Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:29.012Z SERIAL « 0x0107013b9895957f25 (9 bytes) -2024-09-06T10:59:29.012Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:29.013Z DRIVER « [RES] [GetBackgroundRSSI] - channel 0: -104 dBm - channel 1: -107 dBm - channel 2: -107 dBm - channel 3: N/A -2024-09-06T10:59:29.013Z DRIVER all queues idle -2024-09-06T10:59:29.407Z SERIAL « 0x01060049100100a1 (8 bytes) -2024-09-06T10:59:29.408Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:29.409Z DRIVER « [REQ] [ApplicationUpdateRequest] - type: SUC_IdChanged - SUC node ID: 1 -2024-09-06T10:59:29.424Z SERIAL « 0x0107005004050200ab (9 bytes) -2024-09-06T10:59:29.424Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:29.425Z DRIVER « [REQ] [SetLearnMode] - callback id: 4 - status: ProtocolDone - assigned node id: 2 -2024-09-06T10:59:29.425Z DRIVER handling request SetLearnMode (80) -2024-09-06T10:59:29.425Z DRIVER 1 handler registered! -2024-09-06T10:59:29.425Z DRIVER invoking handler #0 -2024-09-06T10:59:29.426Z DRIVER the message was handled -2024-09-06T10:59:29.426Z DRIVER waiting for security bootstrapping... -2024-09-06T10:59:29.426Z CNTRLR querying controller IDs... -2024-09-06T10:59:29.426Z DRIVER all queues busy -2024-09-06T10:59:29.427Z SERIAL » 0x01030020dc (5 bytes) -2024-09-06T10:59:29.427Z DRIVER » [REQ] [GetControllerId] -2024-09-06T10:59:29.437Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:29.437Z SERIAL « 0x01080120cdaf1be0024d (10 bytes) -2024-09-06T10:59:29.438Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:29.438Z DRIVER « [RES] [GetControllerId] - home ID: 0xcdaf1be0 - own node ID: 2 -2024-09-06T10:59:29.438Z CNTRLR received controller IDs: - home ID: 0xcdaf1be0 - own node ID: 2 -2024-09-06T10:59:29.439Z DRIVER Joined network with home ID 0xcdaf1be0, switching to new network cache... -2024-09-06T10:59:29.439Z CNTRLR querying controller capabilities... -2024-09-06T10:59:29.440Z SERIAL » 0x01030005f9 (5 bytes) -2024-09-06T10:59:29.440Z DRIVER » [REQ] [GetControllerCapabilities] -2024-09-06T10:59:29.447Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:29.447Z SERIAL « 0x0104010506f9 (6 bytes) -2024-09-06T10:59:29.448Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:29.448Z DRIVER « [RES] [GetControllerCapabilities] - payload: 0x06 -2024-09-06T10:59:29.448Z CNTRLR received controller capabilities: - controller role: Inclusion - is the SUC: false - started this network: false - SIS is present: true - was real primary: false -2024-09-06T10:59:29.449Z CNTRLR querying additional controller information... -2024-09-06T10:59:29.449Z SERIAL » 0x01030002fe (5 bytes) -2024-09-06T10:59:29.449Z DRIVER » [REQ] [GetSerialApiInitData] -2024-09-06T10:59:29.458Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:29.459Z SERIAL « 0x012501020a001d030000000000000000000000000000000000000000000000000 (39 bytes) - 00000000800c5 -2024-09-06T10:59:29.459Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:29.460Z DRIVER « [RES] [GetSerialApiInitData] - payload: 0x0a001d03000000000000000000000000000000000000000000000000000000000 - 800 -2024-09-06T10:59:29.460Z CNTRLR received additional controller information: - Z-Wave API version: 1 (official) - Z-Wave chip type: EFR32ZG23 / ZGM230S - node type Controller - controller role: primary - controller is the SIS: false - controller supports timers: false - Z-Wave Classic nodes: 1, 2 -2024-09-06T10:59:29.461Z CNTRLR [Node 002] [Manufacturer Specific] manufacturerId: metadata updated -2024-09-06T10:59:29.461Z CNTRLR [Node 002] [Manufacturer Specific] productType: metadata updated -2024-09-06T10:59:29.461Z CNTRLR [Node 002] [Manufacturer Specific] productId: metadata updated -2024-09-06T10:59:29.461Z CNTRLR [Node 002] [+] [Manufacturer Specific] manufacturerId: 0 -2024-09-06T10:59:29.461Z CNTRLR [Node 002] [+] [Manufacturer Specific] productType: 4 -2024-09-06T10:59:29.461Z CNTRLR [Node 002] [+] [Manufacturer Specific] productId: 4 -2024-09-06T10:59:29.462Z CNTRLR [Node 002] [Version] firmwareVersions: metadata updated -2024-09-06T10:59:29.462Z CNTRLR [Node 002] [+] [Version] firmwareVersions: 7.22 -2024-09-06T10:59:29.462Z CNTRLR [Node 002] [Version] zWaveProtocolVersion: metadata updated -2024-09-06T10:59:29.462Z CNTRLR [Node 002] [+] [Version] zWaveProtocolVersion: "7.22.1" -2024-09-06T10:59:29.462Z CNTRLR [Node 002] [Version] sdkVersion: metadata updated -2024-09-06T10:59:29.462Z CNTRLR [Node 002] [+] [Version] sdkVersion: "7.22.1" -2024-09-06T10:59:29.462Z CNTRLR Interview completed -2024-09-06T10:59:29.462Z DRIVER all queues idle -2024-09-06T10:59:29.627Z SERIAL « 0x010b00a8000201029f0400d81e (13 bytes) -2024-09-06T10:59:29.628Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:29.629Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -40 dBm - └─[Security2CCKEXGet] -2024-09-06T10:59:31.505Z CNTRLR [Node 001] Received S2 bootstrap initiation, requesting keys: - · S2_AccessControl - · S2_Authenticated - · S2_Unauthenticated - · S0_Legacy - client-side auth: false -2024-09-06T10:59:31.508Z DRIVER all queues busy -2024-09-06T10:59:31.510Z SERIAL » 0x011200a90201069f05000201872500000000057f (20 bytes) -2024-09-06T10:59:31.510Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 5 - └─[Security2CCKEXReport] - echo: false - supported schemes: - · KEXScheme1 - supported ECDH profiles: - · Curve25519 - CSA requested: false - requested security classes: - · S2_AccessControl - · S2_Authenticated - · S2_Unauthenticated - · S0_Legacy -2024-09-06T10:59:31.521Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:31.521Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T10:59:31.521Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:31.523Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T10:59:31.536Z SERIAL « 0x011d00a90500000100d87f7f7f7f00000300000000030100007f7f7f7f7fe9 (31 bytes) -2024-09-06T10:59:31.536Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:31.537Z DRIVER « [REQ] [SendDataBridge] - callback id: 5 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -40 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T10:59:31.538Z DRIVER all queues idle -2024-09-06T10:59:31.553Z SERIAL « 0x010f00a8000201069f060002018700d898 (17 bytes) -2024-09-06T10:59:31.554Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:31.555Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -40 dBm - └─[Security2CCKEXSet] - echo: false - selected scheme: KEXScheme1 - selected ECDH profile: Curve25519 - CSA permitted: false - granted security classes: - · S2_Unauthenticated - · S2_Authenticated - · S2_AccessControl - · S0_Legacy -2024-09-06T10:59:31.558Z DRIVER all queues busy -2024-09-06T10:59:31.558Z SERIAL » 0x012f00a90201239f08000000e5c77047befd9186c3e9b149d76b6a24478fb3bf6 (49 bytes) - edfcf07a45dd684715d250000000006b6 -2024-09-06T10:59:31.559Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 6 - └─[Security2CCPublicKeyReport] - is including node: false - public key: 0x0000e5c77047befd9186c3e9b149d76b6a24478fb3bf6edfcf07a - 45dd684715d -2024-09-06T10:59:31.569Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:31.571Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T10:59:31.571Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:31.572Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T10:59:31.590Z SERIAL « 0x011d00a90600000100d87f7f7f7f00000300000000030100007f7f7f7f7fea (31 bytes) -2024-09-06T10:59:31.591Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:31.591Z DRIVER « [REQ] [SendDataBridge] - callback id: 6 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -40 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T10:59:31.592Z DRIVER all queues idle -2024-09-06T10:59:31.620Z SERIAL « 0x012c00a8000201239f08017c2906e00e061e3f6f7d227f5b1db140bafac28e9d1 (46 bytes) - bcf98beec29253f53703b00d8d3 -2024-09-06T10:59:31.621Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:31.622Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -40 dBm - └─[Security2CCPublicKeyReport] - is including node: true - public key: 0x7c2906e00e061e3f6f7d227f5b1db140bafac28e9d1bcf98beec2 - 9253f53703b -2024-09-06T10:59:31.624Z DRIVER all queues busy -2024-09-06T10:59:31.625Z SERIAL » 0x010f00a90201039f0125250000000007c0 (17 bytes) -2024-09-06T10:59:31.626Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 7 - └─[Security2CCNonceGet] - sequence number: 37 -2024-09-06T10:59:31.631Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:31.634Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T10:59:31.634Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:31.634Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T10:59:31.652Z SERIAL « 0x011d00a90700000100d87f7f7f7f00000300000000030100007f7f7f7f7feb (31 bytes) -2024-09-06T10:59:31.652Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:31.653Z DRIVER « [REQ] [SendDataBridge] - callback id: 7 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -40 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T10:59:31.674Z SERIAL « 0x011d00a8000201149f024d01716f34f4e50e84f9ebcaefe9ccc5957c00d8db (31 bytes) -2024-09-06T10:59:31.675Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:31.675Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -40 dBm - └─[Security2CCNonceReport] - sequence number: 77 - SOS: true - MOS: false - receiver entropy: 0x716f34f4e50e84f9ebcaefe9ccc5957c -2024-09-06T10:59:31.677Z SERIAL » 0x013000a90201249f032601124195e514d76c422a4164b98ff1cdfc4fa56dc29c8 (50 bytes) - 78e6af217c099e380ecf72500000000089e -2024-09-06T10:59:31.678Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 8 - └─[Security2CCMessageEncapsulation] - │ sequence number: 38 - │ extensions: - │ · type: SPAN - │ sender EI: 0x95e514d76c422a4164b98ff1cdfc4fa5 - │ key: 0x5f009c5fa24b14ce22bab343222d0618 - │ IV: 0xacff254b307079bf81d11f0435 - │ ciphertext: 0x6dc29c878e6a - │ auth data: 0x0201cdaf1be000242601124195e514d76c422a4164b98ff1cdfc4fa - 5 - │ auth tag: 0xf217c099e380ecf7 - │ security class: Temporary - └─[Security2CCKEXSet] - echo: true - selected scheme: KEXScheme1 - selected ECDH profile: Curve25519 - CSA permitted: false - granted security classes: - · S2_Unauthenticated - · S2_Authenticated - · S2_AccessControl - · S0_Legacy -2024-09-06T10:59:31.687Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:31.690Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T10:59:31.690Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:31.691Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T10:59:31.712Z SERIAL « 0x011d00a90800000200d87f7f7f7f00000300000000030100007f7f7f7f7fe7 (31 bytes) -2024-09-06T10:59:31.712Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:31.712Z DRIVER « [REQ] [SendDataBridge] - callback id: 8 - transmit status: OK, took 20 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -40 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T10:59:41.778Z CNTRLR [Node 001] Timed out while waiting for a response from the node (ZW0201) -2024-09-06T10:59:41.782Z SERIAL » 0x011e00a90201129f032700801ff10de6f6395905fa5a12d3952500000000092c (32 bytes) -2024-09-06T10:59:41.784Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 9 - └─[Security2CCMessageEncapsulation] - │ sequence number: 39 - │ key: 0x5f009c5fa24b14ce22bab343222d0618 - │ IV: 0xb64e805b634dad584ba988800c - │ ciphertext: 0x801ff10de6f6 - │ auth data: 0x0201cdaf1be000122700 - │ auth tag: 0x395905fa5a12d395 - │ security class: Temporary - └─[Security2CCKEXSet] - echo: true - selected scheme: KEXScheme1 - selected ECDH profile: Curve25519 - CSA permitted: false - granted security classes: - · S2_Unauthenticated - · S2_Authenticated - · S2_AccessControl - · S0_Legacy -2024-09-06T10:59:41.792Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:41.794Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T10:59:41.795Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:41.796Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T10:59:41.813Z SERIAL « 0x011d00a90900000100d87f7f7f7f00000300000000030100007f7f7f7f7fe5 (31 bytes) -2024-09-06T10:59:41.814Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:41.815Z DRIVER « [REQ] [SendDataBridge] - callback id: 9 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -40 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T10:59:51.852Z CNTRLR [Node 001] Timed out while waiting for a response from the node (ZW0201) -2024-09-06T10:59:51.855Z SERIAL » 0x011e00a90201129f03280062143123038d8f0b1e8dac5787c825000000000a8b (32 bytes) -2024-09-06T10:59:51.857Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 10 - └─[Security2CCMessageEncapsulation] - │ sequence number: 40 - │ key: 0x5f009c5fa24b14ce22bab343222d0618 - │ IV: 0xa1e46f4b39e61c8b80f7bc6ff9 - │ ciphertext: 0x62143123038d - │ auth data: 0x0201cdaf1be000122800 - │ auth tag: 0x8f0b1e8dac5787c8 - │ security class: Temporary - └─[Security2CCKEXSet] - echo: true - selected scheme: KEXScheme1 - selected ECDH profile: Curve25519 - CSA permitted: false - granted security classes: - · S2_Unauthenticated - · S2_Authenticated - · S2_AccessControl - · S0_Legacy -2024-09-06T10:59:51.864Z SERIAL « [ACK] (0x06) -2024-09-06T10:59:51.867Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T10:59:51.867Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:51.868Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T10:59:51.884Z SERIAL « 0x011d00a90a00000100d87f7f7f7f00000300000000030100007f7f7f7f7fe6 (31 bytes) -2024-09-06T10:59:51.884Z SERIAL » [ACK] (0x06) -2024-09-06T10:59:51.884Z DRIVER « [REQ] [SendDataBridge] - callback id: 10 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -40 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:00:01.915Z CNTRLR [Node 001] Timed out while waiting for a response from the node (ZW0201) -2024-09-06T11:00:01.917Z SERIAL » 0x011e00a90201129f0329007b1f11dcdb069cd1958ecb16ed5325000000000b83 (32 bytes) -2024-09-06T11:00:01.917Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 11 - └─[Security2CCMessageEncapsulation] - │ sequence number: 41 - │ key: 0x5f009c5fa24b14ce22bab343222d0618 - │ IV: 0xfd631a8ed8d18dd61fb7abfa6f - │ ciphertext: 0x7b1f11dcdb06 - │ auth data: 0x0201cdaf1be000122900 - │ auth tag: 0x9cd1958ecb16ed53 - │ security class: Temporary - └─[Security2CCKEXSet] - echo: true - selected scheme: KEXScheme1 - selected ECDH profile: Curve25519 - CSA permitted: false - granted security classes: - · S2_Unauthenticated - · S2_Authenticated - · S2_AccessControl - · S0_Legacy -2024-09-06T11:00:01.925Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:01.927Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:00:01.927Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:01.928Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:00:01.946Z SERIAL « 0x011d00a90b00000100d87f7f7f7f00000300000000030100007f7f7f7f7fe7 (31 bytes) -2024-09-06T11:00:01.947Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:01.947Z DRIVER « [REQ] [SendDataBridge] - callback id: 11 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -40 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:00:13.683Z DRIVER ███████╗ ██╗ ██╗ █████╗ ██╗ ██╗ ███████╗ ██╗ ███████╗ - ╚══███╔╝ ██║ ██║ ██╔══██╗ ██║ ██║ ██╔════╝ ██║ ██╔════╝ - ███╔╝ █████╗ ██║ █╗ ██║ ███████║ ██║ ██║ █████╗ ██║ ███████╗ - ███╔╝ ╚════╝ ██║███╗██║ ██╔══██║ ╚██╗ ██╔╝ ██╔══╝ ██ ██║ ╚════██║ - ███████╗ ╚███╔███╔╝ ██║ ██║ ╚████╔╝ ███████╗ ╚█████╔╝ ███████║ - ╚══════╝ ╚══╝╚══╝ ╚═╝ ╚═╝ ╚═══╝ ╚══════╝ ╚════╝ ╚══════╝ -2024-09-06T11:00:13.683Z DRIVER version 13.2.0 -2024-09-06T11:00:13.684Z DRIVER -2024-09-06T11:00:13.684Z DRIVER starting driver... -2024-09-06T11:00:13.684Z DRIVER opening serial port /dev/serial/by-id/usb-Silicon_Labs_CP2102N_USB_to_UART_Bri - dge_Controller_ca4d95064355ee118d4d1294de9da576-if00-port0 -2024-09-06T11:00:13.692Z DRIVER serial port opened -2024-09-06T11:00:13.692Z SERIAL » 0x15 (1 bytes) -2024-09-06T11:00:14.698Z DRIVER loading configuration... -2024-09-06T11:00:14.704Z CONFIG version 13.2.0 -2024-09-06T11:00:15.040Z DRIVER beginning interview... -2024-09-06T11:00:15.040Z DRIVER added request handler for AddNodeToNetwork (0x4a)... - 1 registered -2024-09-06T11:00:15.040Z DRIVER added request handler for RemoveNodeFromNetwork (0x4b)... - 1 registered -2024-09-06T11:00:15.040Z DRIVER added request handler for ReplaceFailedNode (0x63)... - 1 registered -2024-09-06T11:00:15.040Z DRIVER added request handler for SetLearnMode (0x50)... - 1 registered -2024-09-06T11:00:15.040Z CNTRLR querying Serial API capabilities... -2024-09-06T11:00:15.042Z SERIAL » 0x01030007fb (5 bytes) -2024-09-06T11:00:15.043Z DRIVER » [REQ] [GetSerialApiCapabilities] -2024-09-06T11:00:15.056Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:15.057Z SERIAL « 0x012b01070716000000040004f6873e88cf2bc05ffbd7fde09700008000808680b (45 bytes) - a0500700000ee7fc000000041 -2024-09-06T11:00:15.057Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:15.058Z DRIVER « [RES] [GetSerialApiCapabilities] - payload: 0x0716000000040004f6873e88cf2bc05ffbd7fde09700008000808680ba0500700 - 000ee7fc0000000 -2024-09-06T11:00:15.060Z CNTRLR received API capabilities: - firmware version: 7.22 - manufacturer ID: 0x00 - product type: 0x04 - product ID: 0x04 - supported functions: - · GetSerialApiInitData (0x02) - · SetApplicationNodeInformation (0x03) - · GetControllerCapabilities (0x05) - · SetSerialApiTimeouts (0x06) - · GetSerialApiCapabilities (0x07) - · SoftReset (0x08) - · GetProtocolVersion (0x09) - · SerialAPIStarted (0x0a) - · SerialAPISetup (0x0b) - · SetRFReceiveMode (0x10) - · SendNodeInformation (0x12) - · SendData (0x13) - · SendDataMulticast (0x14) - · GetControllerVersion (0x15) - · SendDataAbort (0x16) - · FUNC_ID_ZW_GET_RANDOM (0x1c) - · GetControllerId (0x20) - · UNKNOWN_FUNC_MEMORY_GET_BYTE (0x21) - · UNKNOWN_FUNC_MEMORY_PUT_BYTE (0x22) - · UNKNOWN_FUNC_MEMORY_GET_BUFFER (0x23) - · UNKNOWN_FUNC_MEMORY_PUT_BUFFER (0x24) - · EnterBootloader (0x27) - · UNKNOWN_FUNC_UNKNOWN_0x28 (0x28) - · GetNVMId (0x29) - · ExtNVMReadLongBuffer (0x2a) - · ExtNVMReadLongByte (0x2c) - · NVMOperations (0x2e) - · ClearTxTimers (0x37) - · GetTxTimers (0x38) - · ClearNetworkStats (0x39) - · GetNetworkStats (0x3a) - · GetBackgroundRSSI (0x3b) - · SetListenBeforeTalkThreshold (0x3c) - · ExtendedNVMOperations (0x3d) - · RemoveSpecificNodeIdFromNetwork (0x3f) - · GetNodeProtocolInfo (0x41) - · HardReset (0x42) - · FUNC_ID_ZW_REPLICATION_COMMAND_COMPLETE (0x44) - · FUNC_ID_ZW_REPLICATION_SEND_DATA (0x45) - · AssignReturnRoute (0x46) - · DeleteReturnRoute (0x47) - · RequestNodeNeighborUpdate (0x48) - · ApplicationUpdateRequest (0x49) - · AddNodeToNetwork (0x4a) - · RemoveNodeFromNetwork (0x4b) - · AddPrimaryController (0x4d) - · AssignPriorityReturnRoute (0x4f) - · SetLearnMode (0x50) - · AssignSUCReturnRoute (0x51) - · RequestNetworkUpdate (0x53) - · SetSUCNodeId (0x54) - · DeleteSUCReturnRoute (0x55) - · GetSUCNodeId (0x56) - · SendSUCNodeId (0x57) - · AssignPrioritySUCReturnRoute (0x58) - · ExploreRequestInclusion (0x5e) - · ExploreRequestExclusion (0x5f) - · RequestNodeInfo (0x60) - · RemoveFailedNode (0x61) - · IsFailedNode (0x62) - · ReplaceFailedNode (0x63) - · undefined (0x65) - · RequestProtocolCCEncryption (0x68) - · GetRoutingInfo (0x80) - · LockUnlockLastRoute (0x90) - · GetPriorityRoute (0x92) - · SetPriorityRoute (0x93) - · UNKNOWN_FUNC_UNKNOWN_0x98 (0x98) - · VirtualNodeSetNodeInfo (0xa0) - · VirtualNodeSendNodeInfo (0xa2) - · VirtualNodeSetLearnMode (0xa4) - · GetVirtualNodes (0xa5) - · IsVirtualNode (0xa6) - · BridgeApplicationCommand (0xa8) - · SendDataBridge (0xa9) - · SendDataMulticastBridge (0xab) - · GetLibrary (0xbd) - · SendTestFrame (0xbe) - · GetProtocolStatus (0xbf) - · StartWatchdog (0xd2) - · StopWatchdog (0xd3) - · SetMaximumRoutingAttempts (0xd4) - · SetMaxSmartStartInclusionRequestInterval (0xd6) - · undefined (0xd7) - · undefined (0xd8) - · Shutdown (0xd9) - · GetLongRangeNodes (0xda) - · GetLongRangeChannel (0xdb) - · SetLongRangeChannel (0xdc) - · SetLongRangeShadowNodeIDs (0xdd) - · Proprietary_DE (0xde) - · Proprietary_DF (0xdf) - · Proprietary_E7 (0xe7) - · Proprietary_E8 (0xe8) -2024-09-06T11:00:15.060Z CNTRLR querying additional controller information... -2024-09-06T11:00:15.061Z SERIAL » 0x01030002fe (5 bytes) -2024-09-06T11:00:15.062Z DRIVER » [REQ] [GetSerialApiInitData] -2024-09-06T11:00:15.069Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:15.070Z SERIAL « 0x012501020a001d030000000000000000000000000000000000000000000000000 (39 bytes) - 00000000800c5 -2024-09-06T11:00:15.070Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:15.071Z DRIVER « [RES] [GetSerialApiInitData] - payload: 0x0a001d03000000000000000000000000000000000000000000000000000000000 - 800 -2024-09-06T11:00:15.071Z CNTRLR received additional controller information: - Z-Wave API version: 1 (official) - Z-Wave chip type: EFR32ZG23 / ZGM230S - node type Controller - controller role: primary - controller is the SIS: false - controller supports timers: false - Z-Wave Classic nodes: 1, 2 -2024-09-06T11:00:15.072Z CNTRLR querying version info... -2024-09-06T11:00:15.072Z SERIAL » 0x01030015e9 (5 bytes) -2024-09-06T11:00:15.073Z DRIVER » [REQ] [GetControllerVersion] -2024-09-06T11:00:15.079Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:15.080Z SERIAL « 0x011001155a2d5761766520372e3232000797 (18 bytes) -2024-09-06T11:00:15.080Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:15.081Z DRIVER « [RES] [GetControllerVersion] - payload: 0x5a2d5761766520372e32320007 -2024-09-06T11:00:15.081Z CNTRLR received version info: - controller type: Bridge Controller - library version: Z-Wave 7.22 -2024-09-06T11:00:15.081Z CNTRLR querying protocol version info... -2024-09-06T11:00:15.082Z SERIAL » 0x01030009f5 (5 bytes) -2024-09-06T11:00:15.082Z DRIVER » [REQ] [GetProtocolVersion] -2024-09-06T11:00:15.089Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:15.090Z SERIAL « 0x0119010900071601abcd63636639623665613165616566313162c3 (27 bytes) -2024-09-06T11:00:15.090Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:15.090Z DRIVER « [RES] [GetProtocolVersion] - payload: 0x00071601abcd63636639623665613165616566313162 -2024-09-06T11:00:15.091Z CNTRLR received protocol version info: - protocol type: Z-Wave - protocol version: 7.22.1 - appl. framework build no.: 43981 - git commit hash: 63636639623665613165616566313162 -2024-09-06T11:00:15.091Z CNTRLR querying controller capabilities... -2024-09-06T11:00:15.092Z SERIAL » 0x01030005f9 (5 bytes) -2024-09-06T11:00:15.092Z DRIVER » [REQ] [GetControllerCapabilities] -2024-09-06T11:00:15.099Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:15.099Z SERIAL « 0x0104010506f9 (6 bytes) -2024-09-06T11:00:15.099Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:15.100Z DRIVER « [RES] [GetControllerCapabilities] - payload: 0x06 -2024-09-06T11:00:15.101Z CNTRLR received controller capabilities: - controller role: Inclusion - is the SUC: false - started this network: false - SIS is present: true - was real primary: false -2024-09-06T11:00:15.101Z CNTRLR querying serial API setup capabilities... -2024-09-06T11:00:15.102Z SERIAL » 0x0104000b01f1 (6 bytes) -2024-09-06T11:00:15.102Z DRIVER » [REQ] [SerialAPISetup] - command: GetSupportedCommands - payload: 0x01 -2024-09-06T11:00:15.108Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:15.108Z SERIAL « 0x0116010b01ff9f8007800000008000000000000000800085 (24 bytes) -2024-09-06T11:00:15.109Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:15.109Z DRIVER « [RES] [SerialAPISetup] - command: GetSupportedCommands - payload: 0xff9f80078000000080000000000000008000 -2024-09-06T11:00:15.110Z CNTRLR supported serial API setup commands: - · GetSupportedCommands - · SetTxStatusReport - · SetLongRangeMaximumTxPower - · SetPowerlevel - · GetLongRangeMaximumTxPower - · GetPowerlevel - · GetMaximumPayloadSize - · GetLongRangeMaximumPayloadSize - · SetPowerlevel16Bit - · GetPowerlevel16Bit - · GetRFRegion - · SetRFRegion - · SetNodeIDType -2024-09-06T11:00:15.110Z CNTRLR querying max. payload size... -2024-09-06T11:00:15.111Z SERIAL » 0x0104000b10e0 (6 bytes) -2024-09-06T11:00:15.111Z DRIVER » [REQ] [SerialAPISetup] - command: GetMaximumPayloadSize - payload: 0x10 -2024-09-06T11:00:15.118Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:15.118Z SERIAL « 0x0105010b102ece (7 bytes) -2024-09-06T11:00:15.118Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:15.119Z DRIVER « [RES] [SerialAPISetup] - command: GetMaximumPayloadSize - maximum payload size: 46 bytes -2024-09-06T11:00:15.120Z CNTRLR maximum payload size: 46 bytes -2024-09-06T11:00:15.120Z CNTRLR supported Z-Wave features: - · SmartStart -2024-09-06T11:00:15.120Z CNTRLR Querying configured RF region... -2024-09-06T11:00:15.121Z SERIAL » 0x0104000b20d0 (6 bytes) -2024-09-06T11:00:15.121Z DRIVER » [REQ] [SerialAPISetup] - command: GetRFRegion - payload: 0x20 -2024-09-06T11:00:15.127Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:15.127Z SERIAL « 0x0105010b2000d0 (7 bytes) -2024-09-06T11:00:15.127Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:15.128Z DRIVER « [RES] [SerialAPISetup] - command: GetRFRegion - region: Europe -2024-09-06T11:00:15.128Z CNTRLR The controller is using RF region Europe -2024-09-06T11:00:15.128Z CNTRLR Querying configured max. Long Range powerlevel... -2024-09-06T11:00:15.129Z SERIAL » 0x0104000b05f5 (6 bytes) -2024-09-06T11:00:15.130Z DRIVER » [REQ] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - payload: 0x05 -2024-09-06T11:00:15.135Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:15.135Z SERIAL « 0x0106010b05008c7a (8 bytes) -2024-09-06T11:00:15.136Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:15.136Z DRIVER « [RES] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - max. TX power (LR): 14.0 dBm -2024-09-06T11:00:15.137Z CNTRLR The max. LR powerlevel is 14.0 dBm -2024-09-06T11:00:15.137Z CNTRLR Querying configured Long Range channel information... -2024-09-06T11:00:15.138Z SERIAL » 0x010300db27 (5 bytes) -2024-09-06T11:00:15.138Z DRIVER » [REQ] [GetLongRangeChannel] -2024-09-06T11:00:15.144Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:15.144Z SERIAL « 0x010501db001030 (7 bytes) -2024-09-06T11:00:15.144Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:15.145Z DRIVER « [RES] [GetLongRangeChannel] - payload: 0x0010 -2024-09-06T11:00:15.145Z CNTRLR received Z-Wave Long Range channel information: - channel: Unsupported - supports auto channel selection: true -2024-09-06T11:00:15.146Z CNTRLR Performing soft reset... -2024-09-06T11:00:15.146Z SERIAL » 0x01030008f4 (5 bytes) -2024-09-06T11:00:15.147Z DRIVER » [REQ] [SoftReset] -2024-09-06T11:00:15.151Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:15.151Z CNTRLR Waiting for the controller to reconnect... -2024-09-06T11:00:15.152Z DRIVER all queues idle -2024-09-06T11:00:15.260Z SERIAL « 0x0116000a0700010100085e989f556c568f7400031d00003f (24 bytes) -2024-09-06T11:00:15.262Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:15.264Z DRIVER « [REQ] [SerialAPIStarted] - wake up reason: SoftwareReset - watchdog enabled: false - generic device class: 0x01 - specific device class: 0x00 - always listening: false - supports Long Range: false -2024-09-06T11:00:15.265Z CNTRLR reconnected and restarted -2024-09-06T11:00:15.266Z CNTRLR Starting hardware watchdog... -2024-09-06T11:00:15.267Z CNTRLR Switching serial API to 16-bit node IDs... -2024-09-06T11:00:15.268Z CNTRLR Switching serial API to 8-bit node IDs... -2024-09-06T11:00:15.269Z DRIVER all queues busy -2024-09-06T11:00:15.270Z SERIAL » 0x010300d22e (5 bytes) -2024-09-06T11:00:15.271Z DRIVER » [REQ] [StartWatchdog] -2024-09-06T11:00:15.277Z SERIAL » 0x0105000b800273 (7 bytes) -2024-09-06T11:00:15.278Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 16 bit -2024-09-06T11:00:15.279Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:15.283Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:15.283Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T11:00:15.284Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:15.284Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T11:00:15.285Z CNTRLR Switching to 16-bit node IDs successful -2024-09-06T11:00:15.286Z SERIAL » 0x0105000b800170 (7 bytes) -2024-09-06T11:00:15.287Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 8 bit -2024-09-06T11:00:15.292Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:15.292Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T11:00:15.293Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:15.293Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T11:00:15.294Z CNTRLR Switching to 8-bit node IDs successful -2024-09-06T11:00:15.294Z CNTRLR querying controller IDs... -2024-09-06T11:00:15.295Z SERIAL » 0x01030020dc (5 bytes) -2024-09-06T11:00:15.296Z DRIVER » [REQ] [GetControllerId] -2024-09-06T11:00:15.301Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:15.301Z SERIAL « 0x01080120cdaf1be0024d (10 bytes) -2024-09-06T11:00:15.302Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:15.302Z DRIVER « [RES] [GetControllerId] - home ID: 0xcdaf1be0 - own node ID: 2 -2024-09-06T11:00:15.303Z CNTRLR received controller IDs: - home ID: 0xcdaf1be0 - own node ID: 2 -2024-09-06T11:00:15.303Z CNTRLR Enabling TX status report... -2024-09-06T11:00:15.304Z SERIAL » 0x0105000b02ff0c (7 bytes) -2024-09-06T11:00:15.304Z DRIVER » [REQ] [SerialAPISetup] - command: SetTxStatusReport - enabled: true -2024-09-06T11:00:15.310Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:15.310Z SERIAL « 0x0105010b0201f3 (7 bytes) -2024-09-06T11:00:15.311Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:15.311Z DRIVER « [RES] [SerialAPISetup] - command: SetTxStatusReport - success: true -2024-09-06T11:00:15.312Z CNTRLR Enabling TX status report successful... -2024-09-06T11:00:15.312Z CNTRLR finding SUC... -2024-09-06T11:00:15.313Z SERIAL » 0x01030056aa (5 bytes) -2024-09-06T11:00:15.313Z DRIVER » [REQ] [GetSUCNodeId] -2024-09-06T11:00:15.318Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:15.319Z SERIAL « 0x0104015601ad (6 bytes) -2024-09-06T11:00:15.319Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:15.319Z DRIVER « [RES] [GetSUCNodeId] - payload: 0x01 -2024-09-06T11:00:15.320Z CNTRLR SUC has node ID 1 -2024-09-06T11:00:15.321Z DRIVER all queues idle -2024-09-06T11:00:15.330Z DRIVER Cache file for homeId 0xcdaf1be0 found, attempting to restore the network from - cache... -2024-09-06T11:00:15.338Z CNTRLR [Node 002] Embedded device config loaded -2024-09-06T11:00:15.339Z DRIVER Restoring the network from cache was successful! -2024-09-06T11:00:15.340Z CNTRLR [Node 002] [Manufacturer Specific] manufacturerId: metadata updated -2024-09-06T11:00:15.340Z CNTRLR [Node 002] [Manufacturer Specific] productType: metadata updated -2024-09-06T11:00:15.340Z CNTRLR [Node 002] [Manufacturer Specific] productId: metadata updated -2024-09-06T11:00:15.341Z CNTRLR [Node 002] [~] [Manufacturer Specific] manufacturerId: 0 => 0 -2024-09-06T11:00:15.341Z CNTRLR [Node 002] [~] [Manufacturer Specific] productType: 4 => 4 -2024-09-06T11:00:15.341Z CNTRLR [Node 002] [~] [Manufacturer Specific] productId: 4 => 4 -2024-09-06T11:00:15.342Z CNTRLR [Node 002] [Version] firmwareVersions: metadata updated -2024-09-06T11:00:15.342Z CNTRLR [Node 002] [~] [Version] firmwareVersions: 7.22 => 7.22 -2024-09-06T11:00:15.342Z CNTRLR [Node 002] [Version] zWaveProtocolVersion: metadata updated -2024-09-06T11:00:15.342Z CNTRLR [Node 002] [~] [Version] zWaveProtocolVersion: "7.22.1" => "7.22.1" -2024-09-06T11:00:15.342Z CNTRLR [Node 002] [Version] sdkVersion: metadata updated -2024-09-06T11:00:15.342Z CNTRLR [Node 002] [~] [Version] sdkVersion: "7.22.1" => "7.22.1" -2024-09-06T11:00:15.342Z CNTRLR Interview completed -2024-09-06T11:00:15.343Z DRIVER No network key for S0 found in cache, communication with secure (S0) devices w - on't work! -2024-09-06T11:00:15.343Z DRIVER No network key for S2 found in cache, communication with secure (S2) devices w - on't work! -2024-09-06T11:00:15.343Z DRIVER driver ready -2024-09-06T11:00:15.344Z CNTRLR [Node 002] Beginning interview - last completed stage: None -2024-09-06T11:00:15.344Z CNTRLR [Node 002] new node, doing a full interview... -2024-09-06T11:00:15.344Z CNTRLR » [Node 002] querying protocol info... -2024-09-06T11:00:15.345Z DRIVER all queues busy -2024-09-06T11:00:15.346Z SERIAL » 0x0104004102b8 (6 bytes) -2024-09-06T11:00:15.346Z DRIVER » [REQ] [GetNodeProtocolInfo] - payload: 0x02 -2024-09-06T11:00:15.352Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:15.352Z SERIAL « 0x010a0141d3960102010000f2 (12 bytes) -2024-09-06T11:00:15.353Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:15.353Z DRIVER « [RES] [GetNodeProtocolInfo] - payload: 0xd3960102010000 -2024-09-06T11:00:15.354Z CNTRLR « [Node 002] received response for protocol info: - basic device class: Static Controller - generic device class: Remote Controller - specific device class: Unused - node type: Controller - is always listening: true - is frequent listening: false - can route messages: true - supports security: false - supports beaming: true - maximum data rate: 100000 kbps - protocol version: 3 -2024-09-06T11:00:15.354Z CNTRLR [Node 002] Interview stage completed: ProtocolInfo -2024-09-06T11:00:15.355Z DRIVER all queues idle -2024-09-06T11:00:15.357Z CNTRLR [Node 002] Embedded device config loaded -2024-09-06T11:00:15.358Z CNTRLR [Node 002] Interview stage completed: OverwriteConfig -2024-09-06T11:00:15.358Z CNTRLR [Node 002] Interview completed -2024-09-06T11:00:15.358Z CNTRLR [Node 002] The node is ready to be used -2024-09-06T11:00:15.359Z CNTRLR [Node 002] The node is alive. -2024-09-06T11:00:15.359Z CNTRLR » [Node 001] querying protocol info... -2024-09-06T11:00:15.359Z DRIVER all queues busy -2024-09-06T11:00:15.360Z SERIAL » 0x0104004101bb (6 bytes) -2024-09-06T11:00:15.360Z DRIVER » [REQ] [GetNodeProtocolInfo] - payload: 0x01 -2024-09-06T11:00:15.366Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:15.366Z SERIAL « 0x010a0141d3960102010000f2 (12 bytes) -2024-09-06T11:00:15.366Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:15.367Z DRIVER « [RES] [GetNodeProtocolInfo] - payload: 0xd3960102010000 -2024-09-06T11:00:15.367Z CNTRLR « [Node 001] received response for protocol info: - basic device class: Static Controller - generic device class: Remote Controller - specific device class: Unused - node type: Controller - is always listening: true - is frequent listening: false - can route messages: true - supports security: false - supports beaming: true - maximum data rate: 100000 kbps - protocol version: 3 -2024-09-06T11:00:15.367Z CNTRLR [Node 001] Interview stage completed: ProtocolInfo -2024-09-06T11:00:15.368Z CNTRLR Determining node status: 1 -2024-09-06T11:00:15.368Z CNTRLR » [Node 001] pinging the node... -2024-09-06T11:00:15.371Z SERIAL » 0x010d00a9020101002500000000017d (15 bytes) -2024-09-06T11:00:15.372Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 1 - └─[NoOperationCC] -2024-09-06T11:00:15.381Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:15.381Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:00:15.382Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:15.382Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:00:15.401Z SERIAL « 0x011d00a90100000100d87f7f7f7f00000300000000030100007f7f7f7f7fed (31 bytes) -2024-09-06T11:00:15.402Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:15.403Z DRIVER « [REQ] [SendDataBridge] - callback id: 1 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -40 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:00:15.405Z CNTRLR [Node 001] The node is alive. -2024-09-06T11:00:15.406Z CNTRLR « [Node 001] ping successful -2024-09-06T11:00:15.406Z DRIVER all queues idle -2024-09-06T11:00:20.343Z CNTRLR Updating the controller NIF... -2024-09-06T11:00:20.344Z DRIVER all queues busy -2024-09-06T11:00:20.346Z SERIAL » 0x010f0003010100085e989f556c568f7436 (17 bytes) -2024-09-06T11:00:20.347Z DRIVER » [REQ] [SetApplicationNodeInformation] - is listening: true - generic device class: 0x01 - specific device class: 0x00 - supported CCs: - · Z-Wave Plus Info - · Security - · Security 2 - · Transport Service - · Supervision - · CRC-16 Encapsulation - · Multi Command - · Inclusion Controller - controlled CCs: -2024-09-06T11:00:20.353Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:20.356Z CNTRLR performing hard reset... -2024-09-06T11:00:20.358Z SERIAL » 0x0104004202bb (6 bytes) -2024-09-06T11:00:20.359Z DRIVER » [REQ] [HardReset] - callback id: 2 -2024-09-06T11:00:20.363Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:20.399Z SERIAL « 0x0104004202bb (6 bytes) -2024-09-06T11:00:20.400Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:20.401Z DRIVER « [REQ] [HardReset] - callback id: 2 -2024-09-06T11:00:20.402Z CNTRLR hard reset succeeded -2024-09-06T11:00:20.403Z CNTRLR querying Serial API capabilities... -2024-09-06T11:00:20.404Z SERIAL » 0x01030007fb (5 bytes) -2024-09-06T11:00:20.405Z DRIVER » [REQ] [GetSerialApiCapabilities] -2024-09-06T11:00:20.414Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:20.415Z SERIAL « 0x012b01070716000000040004f6873e88cf2bc05ffbd7fde09700008000808680b (45 bytes) - a0500700000ee7fc000000041 -2024-09-06T11:00:20.416Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:20.417Z DRIVER « [RES] [GetSerialApiCapabilities] - payload: 0x0716000000040004f6873e88cf2bc05ffbd7fde09700008000808680ba0500700 - 000ee7fc0000000 -2024-09-06T11:00:20.419Z CNTRLR received API capabilities: - firmware version: 7.22 - manufacturer ID: 0x00 - product type: 0x04 - product ID: 0x04 - supported functions: - · GetSerialApiInitData (0x02) - · SetApplicationNodeInformation (0x03) - · GetControllerCapabilities (0x05) - · SetSerialApiTimeouts (0x06) - · GetSerialApiCapabilities (0x07) - · SoftReset (0x08) - · GetProtocolVersion (0x09) - · SerialAPIStarted (0x0a) - · SerialAPISetup (0x0b) - · SetRFReceiveMode (0x10) - · SendNodeInformation (0x12) - · SendData (0x13) - · SendDataMulticast (0x14) - · GetControllerVersion (0x15) - · SendDataAbort (0x16) - · FUNC_ID_ZW_GET_RANDOM (0x1c) - · GetControllerId (0x20) - · UNKNOWN_FUNC_MEMORY_GET_BYTE (0x21) - · UNKNOWN_FUNC_MEMORY_PUT_BYTE (0x22) - · UNKNOWN_FUNC_MEMORY_GET_BUFFER (0x23) - · UNKNOWN_FUNC_MEMORY_PUT_BUFFER (0x24) - · EnterBootloader (0x27) - · UNKNOWN_FUNC_UNKNOWN_0x28 (0x28) - · GetNVMId (0x29) - · ExtNVMReadLongBuffer (0x2a) - · ExtNVMReadLongByte (0x2c) - · NVMOperations (0x2e) - · ClearTxTimers (0x37) - · GetTxTimers (0x38) - · ClearNetworkStats (0x39) - · GetNetworkStats (0x3a) - · GetBackgroundRSSI (0x3b) - · SetListenBeforeTalkThreshold (0x3c) - · ExtendedNVMOperations (0x3d) - · RemoveSpecificNodeIdFromNetwork (0x3f) - · GetNodeProtocolInfo (0x41) - · HardReset (0x42) - · FUNC_ID_ZW_REPLICATION_COMMAND_COMPLETE (0x44) - · FUNC_ID_ZW_REPLICATION_SEND_DATA (0x45) - · AssignReturnRoute (0x46) - · DeleteReturnRoute (0x47) - · RequestNodeNeighborUpdate (0x48) - · ApplicationUpdateRequest (0x49) - · AddNodeToNetwork (0x4a) - · RemoveNodeFromNetwork (0x4b) - · AddPrimaryController (0x4d) - · AssignPriorityReturnRoute (0x4f) - · SetLearnMode (0x50) - · AssignSUCReturnRoute (0x51) - · RequestNetworkUpdate (0x53) - · SetSUCNodeId (0x54) - · DeleteSUCReturnRoute (0x55) - · GetSUCNodeId (0x56) - · SendSUCNodeId (0x57) - · AssignPrioritySUCReturnRoute (0x58) - · ExploreRequestInclusion (0x5e) - · ExploreRequestExclusion (0x5f) - · RequestNodeInfo (0x60) - · RemoveFailedNode (0x61) - · IsFailedNode (0x62) - · ReplaceFailedNode (0x63) - · undefined (0x65) - · RequestProtocolCCEncryption (0x68) - · GetRoutingInfo (0x80) - · LockUnlockLastRoute (0x90) - · GetPriorityRoute (0x92) - · SetPriorityRoute (0x93) - · UNKNOWN_FUNC_UNKNOWN_0x98 (0x98) - · VirtualNodeSetNodeInfo (0xa0) - · VirtualNodeSendNodeInfo (0xa2) - · VirtualNodeSetLearnMode (0xa4) - · GetVirtualNodes (0xa5) - · IsVirtualNode (0xa6) - · BridgeApplicationCommand (0xa8) - · SendDataBridge (0xa9) - · SendDataMulticastBridge (0xab) - · GetLibrary (0xbd) - · SendTestFrame (0xbe) - · GetProtocolStatus (0xbf) - · StartWatchdog (0xd2) - · StopWatchdog (0xd3) - · SetMaximumRoutingAttempts (0xd4) - · SetMaxSmartStartInclusionRequestInterval (0xd6) - · undefined (0xd7) - · undefined (0xd8) - · Shutdown (0xd9) - · GetLongRangeNodes (0xda) - · GetLongRangeChannel (0xdb) - · SetLongRangeChannel (0xdc) - · SetLongRangeShadowNodeIDs (0xdd) - · Proprietary_DE (0xde) - · Proprietary_DF (0xdf) - · Proprietary_E7 (0xe7) - · Proprietary_E8 (0xe8) -2024-09-06T11:00:20.419Z CNTRLR querying additional controller information... -2024-09-06T11:00:20.421Z SERIAL » 0x01030002fe (5 bytes) -2024-09-06T11:00:20.421Z DRIVER » [REQ] [GetSerialApiInitData] -2024-09-06T11:00:20.431Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:20.432Z SERIAL « 0x012501020a001d010000000000000000000000000000000000000000000000000 (39 bytes) - 00000000800c7 -2024-09-06T11:00:20.433Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:20.434Z DRIVER « [RES] [GetSerialApiInitData] - payload: 0x0a001d01000000000000000000000000000000000000000000000000000000000 - 800 -2024-09-06T11:00:20.435Z CNTRLR received additional controller information: - Z-Wave API version: 1 (official) - Z-Wave chip type: EFR32ZG23 / ZGM230S - node type Controller - controller role: primary - controller is the SIS: false - controller supports timers: false - Z-Wave Classic nodes: 1 -2024-09-06T11:00:20.436Z CNTRLR querying version info... -2024-09-06T11:00:20.437Z SERIAL » 0x01030015e9 (5 bytes) -2024-09-06T11:00:20.438Z DRIVER » [REQ] [GetControllerVersion] -2024-09-06T11:00:20.443Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:20.444Z SERIAL « 0x011001155a2d5761766520372e3232000797 (18 bytes) -2024-09-06T11:00:20.444Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:20.445Z DRIVER « [RES] [GetControllerVersion] - payload: 0x5a2d5761766520372e32320007 -2024-09-06T11:00:20.446Z CNTRLR received version info: - controller type: Bridge Controller - library version: Z-Wave 7.22 -2024-09-06T11:00:20.446Z CNTRLR querying protocol version info... -2024-09-06T11:00:20.447Z SERIAL » 0x01030009f5 (5 bytes) -2024-09-06T11:00:20.447Z DRIVER » [REQ] [GetProtocolVersion] -2024-09-06T11:00:20.453Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:20.454Z SERIAL « 0x0119010900071601abcd63636639623665613165616566313162c3 (27 bytes) -2024-09-06T11:00:20.454Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:20.455Z DRIVER « [RES] [GetProtocolVersion] - payload: 0x00071601abcd63636639623665613165616566313162 -2024-09-06T11:00:20.456Z CNTRLR received protocol version info: - protocol type: Z-Wave - protocol version: 7.22.1 - appl. framework build no.: 43981 - git commit hash: 63636639623665613165616566313162 -2024-09-06T11:00:20.456Z CNTRLR querying controller capabilities... -2024-09-06T11:00:20.457Z SERIAL » 0x01030005f9 (5 bytes) -2024-09-06T11:00:20.457Z DRIVER » [REQ] [GetControllerCapabilities] -2024-09-06T11:00:20.463Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:20.463Z SERIAL « 0x0104010528d7 (6 bytes) -2024-09-06T11:00:20.464Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:20.464Z DRIVER « [RES] [GetControllerCapabilities] - payload: 0x28 -2024-09-06T11:00:20.465Z CNTRLR received controller capabilities: - controller role: Primary - is the SUC: false - started this network: true - SIS is present: false - was real primary: true -2024-09-06T11:00:20.465Z CNTRLR querying serial API setup capabilities... -2024-09-06T11:00:20.466Z SERIAL » 0x0104000b01f1 (6 bytes) -2024-09-06T11:00:20.466Z DRIVER » [REQ] [SerialAPISetup] - command: GetSupportedCommands - payload: 0x01 -2024-09-06T11:00:20.473Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:20.474Z SERIAL « 0x0116010b01ff9f8007800000008000000000000000800085 (24 bytes) -2024-09-06T11:00:20.474Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:20.475Z DRIVER « [RES] [SerialAPISetup] - command: GetSupportedCommands - payload: 0xff9f80078000000080000000000000008000 -2024-09-06T11:00:20.475Z CNTRLR supported serial API setup commands: - · GetSupportedCommands - · SetTxStatusReport - · SetLongRangeMaximumTxPower - · SetPowerlevel - · GetLongRangeMaximumTxPower - · GetPowerlevel - · GetMaximumPayloadSize - · GetLongRangeMaximumPayloadSize - · SetPowerlevel16Bit - · GetPowerlevel16Bit - · GetRFRegion - · SetRFRegion - · SetNodeIDType -2024-09-06T11:00:20.476Z CNTRLR querying max. payload size... -2024-09-06T11:00:20.476Z SERIAL » 0x0104000b10e0 (6 bytes) -2024-09-06T11:00:20.477Z DRIVER » [REQ] [SerialAPISetup] - command: GetMaximumPayloadSize - payload: 0x10 -2024-09-06T11:00:20.482Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:20.483Z SERIAL « 0x0105010b102ece (7 bytes) -2024-09-06T11:00:20.483Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:20.484Z DRIVER « [RES] [SerialAPISetup] - command: GetMaximumPayloadSize - maximum payload size: 46 bytes -2024-09-06T11:00:20.484Z CNTRLR maximum payload size: 46 bytes -2024-09-06T11:00:20.485Z CNTRLR supported Z-Wave features: - · SmartStart -2024-09-06T11:00:20.485Z CNTRLR Querying configured RF region... -2024-09-06T11:00:20.485Z SERIAL » 0x0104000b20d0 (6 bytes) -2024-09-06T11:00:20.486Z DRIVER » [REQ] [SerialAPISetup] - command: GetRFRegion - payload: 0x20 -2024-09-06T11:00:20.491Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:20.491Z SERIAL « 0x0105010b2000d0 (7 bytes) -2024-09-06T11:00:20.491Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:20.492Z DRIVER « [RES] [SerialAPISetup] - command: GetRFRegion - region: Europe -2024-09-06T11:00:20.492Z CNTRLR The controller is using RF region Europe -2024-09-06T11:00:20.492Z CNTRLR Querying configured max. Long Range powerlevel... -2024-09-06T11:00:20.493Z SERIAL » 0x0104000b05f5 (6 bytes) -2024-09-06T11:00:20.493Z DRIVER » [REQ] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - payload: 0x05 -2024-09-06T11:00:20.499Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:20.499Z SERIAL « 0x0106010b05008c7a (8 bytes) -2024-09-06T11:00:20.500Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:20.500Z DRIVER « [RES] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - max. TX power (LR): 14.0 dBm -2024-09-06T11:00:20.501Z CNTRLR The max. LR powerlevel is 14.0 dBm -2024-09-06T11:00:20.501Z CNTRLR Querying configured Long Range channel information... -2024-09-06T11:00:20.502Z SERIAL » 0x010300db27 (5 bytes) -2024-09-06T11:00:20.502Z DRIVER » [REQ] [GetLongRangeChannel] -2024-09-06T11:00:20.508Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:20.509Z SERIAL « 0x010501db001030 (7 bytes) -2024-09-06T11:00:20.509Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:20.509Z DRIVER « [RES] [GetLongRangeChannel] - payload: 0x0010 -2024-09-06T11:00:20.510Z CNTRLR received Z-Wave Long Range channel information: - channel: Unsupported - supports auto channel selection: true -2024-09-06T11:00:20.511Z CNTRLR Performing soft reset... -2024-09-06T11:00:20.511Z SERIAL » 0x01030008f4 (5 bytes) -2024-09-06T11:00:20.512Z DRIVER » [REQ] [SoftReset] -2024-09-06T11:00:20.516Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:20.517Z CNTRLR Waiting for the controller to reconnect... -2024-09-06T11:00:20.517Z DRIVER all queues idle -2024-09-06T11:00:20.629Z SERIAL « 0x0116000a0700010100085e989f556c568f7400031d00003f (24 bytes) -2024-09-06T11:00:20.630Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:20.632Z DRIVER « [REQ] [SerialAPIStarted] - wake up reason: SoftwareReset - watchdog enabled: false - generic device class: 0x01 - specific device class: 0x00 - always listening: false - supports Long Range: false -2024-09-06T11:00:20.632Z CNTRLR reconnected and restarted -2024-09-06T11:00:20.632Z CNTRLR Starting hardware watchdog... -2024-09-06T11:00:20.633Z CNTRLR Switching serial API to 16-bit node IDs... -2024-09-06T11:00:20.633Z CNTRLR Switching serial API to 8-bit node IDs... -2024-09-06T11:00:20.634Z DRIVER all queues busy -2024-09-06T11:00:20.635Z SERIAL » 0x010300d22e (5 bytes) -2024-09-06T11:00:20.635Z DRIVER » [REQ] [StartWatchdog] -2024-09-06T11:00:20.637Z SERIAL » 0x0105000b800273 (7 bytes) -2024-09-06T11:00:20.637Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 16 bit -2024-09-06T11:00:20.639Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:20.647Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:20.647Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T11:00:20.648Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:20.650Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T11:00:20.651Z CNTRLR Switching to 16-bit node IDs successful -2024-09-06T11:00:20.652Z SERIAL » 0x0105000b800170 (7 bytes) -2024-09-06T11:00:20.652Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 8 bit -2024-09-06T11:00:20.660Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:20.660Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T11:00:20.661Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:20.664Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T11:00:20.665Z CNTRLR Switching to 8-bit node IDs successful -2024-09-06T11:00:20.665Z CNTRLR querying controller IDs... -2024-09-06T11:00:20.666Z SERIAL » 0x01030020dc (5 bytes) -2024-09-06T11:00:20.668Z DRIVER » [REQ] [GetControllerId] -2024-09-06T11:00:20.675Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:20.676Z SERIAL « 0x01080120cf5c814c0189 (10 bytes) -2024-09-06T11:00:20.677Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:20.679Z DRIVER « [RES] [GetControllerId] - home ID: 0xcf5c814c - own node ID: 1 -2024-09-06T11:00:20.680Z CNTRLR received controller IDs: - home ID: 0xcf5c814c - own node ID: 1 -2024-09-06T11:00:20.681Z CNTRLR Enabling TX status report... -2024-09-06T11:00:20.681Z SERIAL » 0x0105000b02ff0c (7 bytes) -2024-09-06T11:00:20.682Z DRIVER » [REQ] [SerialAPISetup] - command: SetTxStatusReport - enabled: true -2024-09-06T11:00:20.689Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:20.690Z SERIAL « 0x0105010b0201f3 (7 bytes) -2024-09-06T11:00:20.690Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:20.691Z DRIVER « [RES] [SerialAPISetup] - command: SetTxStatusReport - success: true -2024-09-06T11:00:20.692Z CNTRLR Enabling TX status report successful... -2024-09-06T11:00:20.692Z CNTRLR finding SUC... -2024-09-06T11:00:20.693Z SERIAL » 0x01030056aa (5 bytes) -2024-09-06T11:00:20.693Z DRIVER » [REQ] [GetSUCNodeId] -2024-09-06T11:00:20.698Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:20.699Z SERIAL « 0x0104015600ac (6 bytes) -2024-09-06T11:00:20.699Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:20.700Z DRIVER « [RES] [GetSUCNodeId] - payload: 0x00 -2024-09-06T11:00:20.700Z CNTRLR No SUC present in the network -2024-09-06T11:00:20.700Z CNTRLR There is no SUC/SIS in the network - promoting ourselves... -2024-09-06T11:00:20.701Z SERIAL » 0x01080054010125010384 (10 bytes) -2024-09-06T11:00:20.702Z DRIVER » [REQ] [SetSUCNodeId] - payload: 0x0101250103 -2024-09-06T11:00:20.713Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:20.715Z SERIAL « 0x0104015401af (6 bytes) -2024-09-06T11:00:20.715Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:20.720Z DRIVER « [RES] [SetSUCNodeId] - was executed: true -2024-09-06T11:00:20.722Z CNTRLR Promotion to SUC/SIS succeeded. -2024-09-06T11:00:20.722Z DRIVER all queues idle -2024-09-06T11:00:20.731Z CNTRLR [Node 001] [Manufacturer Specific] manufacturerId: metadata updated -2024-09-06T11:00:20.732Z CNTRLR [Node 001] [Manufacturer Specific] productType: metadata updated -2024-09-06T11:00:20.732Z CNTRLR [Node 001] [Manufacturer Specific] productId: metadata updated -2024-09-06T11:00:20.732Z CNTRLR [Node 001] [+] [Manufacturer Specific] manufacturerId: 0 -2024-09-06T11:00:20.732Z CNTRLR [Node 001] [+] [Manufacturer Specific] productType: 4 -2024-09-06T11:00:20.732Z CNTRLR [Node 001] [+] [Manufacturer Specific] productId: 4 -2024-09-06T11:00:20.732Z CNTRLR [Node 001] [Version] firmwareVersions: metadata updated -2024-09-06T11:00:20.732Z CNTRLR [Node 001] [+] [Version] firmwareVersions: 7.22 -2024-09-06T11:00:20.732Z CNTRLR [Node 001] [Version] zWaveProtocolVersion: metadata updated -2024-09-06T11:00:20.732Z CNTRLR [Node 001] [+] [Version] zWaveProtocolVersion: "7.22.1" -2024-09-06T11:00:20.732Z CNTRLR [Node 001] [Version] sdkVersion: metadata updated -2024-09-06T11:00:20.733Z CNTRLR [Node 001] [+] [Version] sdkVersion: "7.22.1" -2024-09-06T11:00:20.733Z CNTRLR Interview completed -2024-09-06T11:00:20.733Z DRIVER Network key for S0 configured, enabling S0 security manager... -2024-09-06T11:00:20.733Z DRIVER At least one network key for S2 configured, enabling S2 security manager... -2024-09-06T11:00:20.733Z DRIVER At least one network key for Z-Wave Long Range configured, enabling security m - anager... -2024-09-06T11:00:20.734Z DRIVER driver ready -2024-09-06T11:00:20.734Z CNTRLR [Node 001] Beginning interview - last completed stage: None -2024-09-06T11:00:20.734Z CNTRLR [Node 001] new node, doing a full interview... -2024-09-06T11:00:20.734Z CNTRLR » [Node 001] querying protocol info... -2024-09-06T11:00:20.735Z DRIVER all queues busy -2024-09-06T11:00:20.735Z SERIAL » 0x0104004101bb (6 bytes) -2024-09-06T11:00:20.735Z DRIVER » [REQ] [GetNodeProtocolInfo] - payload: 0x01 -2024-09-06T11:00:20.741Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:20.742Z SERIAL « 0x010a0141d3960102010000f2 (12 bytes) -2024-09-06T11:00:20.742Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:20.743Z DRIVER « [RES] [GetNodeProtocolInfo] - payload: 0xd3960102010000 -2024-09-06T11:00:20.744Z CNTRLR « [Node 001] received response for protocol info: - basic device class: Static Controller - generic device class: Remote Controller - specific device class: Unused - node type: Controller - is always listening: true - is frequent listening: false - can route messages: true - supports security: false - supports beaming: true - maximum data rate: 100000 kbps - protocol version: 3 -2024-09-06T11:00:20.744Z CNTRLR [Node 001] Interview stage completed: ProtocolInfo -2024-09-06T11:00:20.745Z DRIVER all queues idle -2024-09-06T11:00:20.748Z CNTRLR [Node 001] Embedded device config loaded -2024-09-06T11:00:20.748Z CNTRLR [Node 001] Interview stage completed: OverwriteConfig -2024-09-06T11:00:20.749Z CNTRLR [Node 001] Interview completed -2024-09-06T11:00:20.749Z CNTRLR [Node 001] The node is ready to be used -2024-09-06T11:00:20.749Z CNTRLR All nodes are ready to be used -2024-09-06T11:00:20.750Z CNTRLR [Node 001] The node is alive. -2024-09-06T11:00:25.406Z DRIVER all queues busy -2024-09-06T11:00:25.407Z SERIAL » 0x0105005081042f (7 bytes) -2024-09-06T11:00:25.408Z DRIVER » [REQ] [SetLearnMode] - callback id: 4 - intent: Inclusion -2024-09-06T11:00:25.415Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:25.416Z SERIAL « 0x0104015001ab (6 bytes) -2024-09-06T11:00:25.416Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:25.418Z DRIVER « [RES] [SetLearnMode] - success: true -2024-09-06T11:00:25.419Z DRIVER all queues idle -2024-09-06T11:00:25.592Z SERIAL « 0x0107005004010200af (9 bytes) -2024-09-06T11:00:25.592Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:25.593Z DRIVER « [REQ] [SetLearnMode] - callback id: 4 - status: Started - assigned node id: 2 -2024-09-06T11:00:25.593Z DRIVER handling request SetLearnMode (80) -2024-09-06T11:00:25.593Z DRIVER 1 handler registered! -2024-09-06T11:00:25.593Z DRIVER invoking handler #0 -2024-09-06T11:00:25.593Z DRIVER the message was handled -2024-09-06T11:00:25.747Z DRIVER all queues busy -2024-09-06T11:00:25.749Z SERIAL » 0x0103003bc7 (5 bytes) -2024-09-06T11:00:25.750Z DRIVER » [REQ] [GetBackgroundRSSI] -2024-09-06T11:00:25.756Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:25.757Z SERIAL « 0x0107013ba3c1c17f1e (9 bytes) -2024-09-06T11:00:25.758Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:25.759Z DRIVER « [RES] [GetBackgroundRSSI] - channel 0: -93 dBm - channel 1: -63 dBm - channel 2: -63 dBm - channel 3: N/A -2024-09-06T11:00:25.761Z DRIVER all queues idle -2024-09-06T11:00:26.116Z SERIAL « 0x01060049100100a1 (8 bytes) -2024-09-06T11:00:26.117Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:26.118Z DRIVER « [REQ] [ApplicationUpdateRequest] - type: SUC_IdChanged - SUC node ID: 1 -2024-09-06T11:00:26.132Z SERIAL « 0x0107005004050200ab (9 bytes) -2024-09-06T11:00:26.133Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:26.134Z DRIVER « [REQ] [SetLearnMode] - callback id: 4 - status: ProtocolDone - assigned node id: 2 -2024-09-06T11:00:26.134Z DRIVER handling request SetLearnMode (80) -2024-09-06T11:00:26.134Z DRIVER 1 handler registered! -2024-09-06T11:00:26.134Z DRIVER invoking handler #0 -2024-09-06T11:00:26.134Z DRIVER the message was handled -2024-09-06T11:00:26.135Z DRIVER waiting for security bootstrapping... -2024-09-06T11:00:26.135Z CNTRLR querying controller IDs... -2024-09-06T11:00:26.135Z DRIVER all queues busy -2024-09-06T11:00:26.136Z SERIAL » 0x01030020dc (5 bytes) -2024-09-06T11:00:26.136Z DRIVER » [REQ] [GetControllerId] -2024-09-06T11:00:26.141Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:26.141Z SERIAL « 0x01080120d188a45e0277 (10 bytes) -2024-09-06T11:00:26.142Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:26.142Z DRIVER « [RES] [GetControllerId] - home ID: 0xd188a45e - own node ID: 2 -2024-09-06T11:00:26.142Z CNTRLR received controller IDs: - home ID: 0xd188a45e - own node ID: 2 -2024-09-06T11:00:26.143Z DRIVER Joined network with home ID 0xd188a45e, switching to new network cache... -2024-09-06T11:00:26.143Z CNTRLR querying controller capabilities... -2024-09-06T11:00:26.144Z SERIAL » 0x01030005f9 (5 bytes) -2024-09-06T11:00:26.144Z DRIVER » [REQ] [GetControllerCapabilities] -2024-09-06T11:00:26.149Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:26.150Z SERIAL « 0x0104010506f9 (6 bytes) -2024-09-06T11:00:26.150Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:26.150Z DRIVER « [RES] [GetControllerCapabilities] - payload: 0x06 -2024-09-06T11:00:26.151Z CNTRLR received controller capabilities: - controller role: Inclusion - is the SUC: false - started this network: false - SIS is present: true - was real primary: false -2024-09-06T11:00:26.151Z CNTRLR querying additional controller information... -2024-09-06T11:00:26.152Z SERIAL » 0x01030002fe (5 bytes) -2024-09-06T11:00:26.152Z DRIVER » [REQ] [GetSerialApiInitData] -2024-09-06T11:00:26.160Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:26.161Z SERIAL « 0x012501020a001d030000000000000000000000000000000000000000000000000 (39 bytes) - 00000000800c5 -2024-09-06T11:00:26.161Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:26.161Z DRIVER « [RES] [GetSerialApiInitData] - payload: 0x0a001d03000000000000000000000000000000000000000000000000000000000 - 800 -2024-09-06T11:00:26.162Z CNTRLR received additional controller information: - Z-Wave API version: 1 (official) - Z-Wave chip type: EFR32ZG23 / ZGM230S - node type Controller - controller role: primary - controller is the SIS: false - controller supports timers: false - Z-Wave Classic nodes: 1, 2 -2024-09-06T11:00:26.162Z CNTRLR [Node 002] [Manufacturer Specific] manufacturerId: metadata updated -2024-09-06T11:00:26.163Z CNTRLR [Node 002] [Manufacturer Specific] productType: metadata updated -2024-09-06T11:00:26.163Z CNTRLR [Node 002] [Manufacturer Specific] productId: metadata updated -2024-09-06T11:00:26.163Z CNTRLR [Node 002] [+] [Manufacturer Specific] manufacturerId: 0 -2024-09-06T11:00:26.163Z CNTRLR [Node 002] [+] [Manufacturer Specific] productType: 4 -2024-09-06T11:00:26.163Z CNTRLR [Node 002] [+] [Manufacturer Specific] productId: 4 -2024-09-06T11:00:26.163Z CNTRLR [Node 002] [Version] firmwareVersions: metadata updated -2024-09-06T11:00:26.163Z CNTRLR [Node 002] [+] [Version] firmwareVersions: 7.22 -2024-09-06T11:00:26.163Z CNTRLR [Node 002] [Version] zWaveProtocolVersion: metadata updated -2024-09-06T11:00:26.163Z CNTRLR [Node 002] [+] [Version] zWaveProtocolVersion: "7.22.1" -2024-09-06T11:00:26.163Z CNTRLR [Node 002] [Version] sdkVersion: metadata updated -2024-09-06T11:00:26.163Z CNTRLR [Node 002] [+] [Version] sdkVersion: "7.22.1" -2024-09-06T11:00:26.163Z CNTRLR Interview completed -2024-09-06T11:00:26.164Z DRIVER all queues idle -2024-09-06T11:00:26.345Z SERIAL « 0x010b00a8000201029f0400d81e (13 bytes) -2024-09-06T11:00:26.346Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:26.347Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -40 dBm - └─[Security2CCKEXGet] -2024-09-06T11:00:30.338Z CNTRLR [Node 001] Received S2 bootstrap initiation, requesting keys: - · S2_AccessControl - · S2_Authenticated - · S2_Unauthenticated - · S0_Legacy - client-side auth: false -2024-09-06T11:00:30.343Z DRIVER all queues busy -2024-09-06T11:00:30.346Z SERIAL » 0x011200a90201069f05000201872500000000057f (20 bytes) -2024-09-06T11:00:30.348Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 5 - └─[Security2CCKEXReport] - echo: false - supported schemes: - · KEXScheme1 - supported ECDH profiles: - · Curve25519 - CSA requested: false - requested security classes: - · S2_AccessControl - · S2_Authenticated - · S2_Unauthenticated - · S0_Legacy -2024-09-06T11:00:30.386Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:30.387Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:00:30.387Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:30.389Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:00:30.396Z SERIAL « 0x011d00a90500000100d77f7f7f7f00000300000000030100007f7f7f7f7fe6 (31 bytes) -2024-09-06T11:00:30.397Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:30.397Z DRIVER « [REQ] [SendDataBridge] - callback id: 5 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -41 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:00:30.398Z DRIVER all queues idle -2024-09-06T11:00:30.418Z SERIAL « 0x010f00a8000201069f060002018700d797 (17 bytes) -2024-09-06T11:00:30.419Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:30.420Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -41 dBm - └─[Security2CCKEXSet] - echo: false - selected scheme: KEXScheme1 - selected ECDH profile: Curve25519 - CSA permitted: false - granted security classes: - · S2_Unauthenticated - · S2_Authenticated - · S2_AccessControl - · S0_Legacy -2024-09-06T11:00:34.781Z DRIVER all queues busy -2024-09-06T11:00:34.783Z SERIAL » 0x012f00a90201239f0800000014c50b50c3c8563c3ef70eb85ae61d38f0749c66b (49 bytes) - 7e65f0dc109c0d2194c25000000000612 -2024-09-06T11:00:34.784Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 6 - └─[Security2CCPublicKeyReport] - is including node: false - public key: 0x000014c50b50c3c8563c3ef70eb85ae61d38f0749c66b7e65f0dc - 109c0d2194c -2024-09-06T11:00:34.803Z SERIAL « [ACK] (0x06) -2024-09-06T11:00:34.803Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:00:34.804Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:34.806Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:00:34.822Z SERIAL « 0x011d00a90600000100d87f7f7f7f00000300000000030100007f7f7f7f7fea (31 bytes) -2024-09-06T11:00:34.822Z SERIAL » [ACK] (0x06) -2024-09-06T11:00:34.823Z DRIVER « [REQ] [SendDataBridge] - callback id: 6 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -40 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:00:34.824Z DRIVER all queues idle -2024-09-06T11:00:34.852Z SERIAL « 0x012c00a8000201239f0801d3955c17b8339bf458e7dd0c7dece81bd981ccca919 (46 bytes) - 877ce3cc9ddd90c2d5e1c00d88c -2024-09-06T11:00:34.853Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:28.976Z DRIVER ███████╗ ██╗ ██╗ █████╗ ██╗ ██╗ ███████╗ ██╗ ███████╗ - ╚══███╔╝ ██║ ██║ ██╔══██╗ ██║ ██║ ██╔════╝ ██║ ██╔════╝ - ███╔╝ █████╗ ██║ █╗ ██║ ███████║ ██║ ██║ █████╗ ██║ ███████╗ - ███╔╝ ╚════╝ ██║███╗██║ ██╔══██║ ╚██╗ ██╔╝ ██╔══╝ ██ ██║ ╚════██║ - ███████╗ ╚███╔███╔╝ ██║ ██║ ╚████╔╝ ███████╗ ╚█████╔╝ ███████║ - ╚══════╝ ╚══╝╚══╝ ╚═╝ ╚═╝ ╚═══╝ ╚══════╝ ╚════╝ ╚══════╝ -2024-09-06T11:03:28.976Z DRIVER version 13.2.0 -2024-09-06T11:03:28.976Z DRIVER -2024-09-06T11:03:28.976Z DRIVER starting driver... -2024-09-06T11:03:28.977Z DRIVER opening serial port /dev/serial/by-id/usb-Silicon_Labs_CP2102N_USB_to_UART_Bri - dge_Controller_ca4d95064355ee118d4d1294de9da576-if00-port0 -2024-09-06T11:03:28.985Z DRIVER serial port opened -2024-09-06T11:03:28.985Z SERIAL » 0x15 (1 bytes) -2024-09-06T11:03:29.988Z DRIVER loading configuration... -2024-09-06T11:03:29.990Z CONFIG version 13.2.0 -2024-09-06T11:03:30.295Z DRIVER beginning interview... -2024-09-06T11:03:30.296Z DRIVER added request handler for AddNodeToNetwork (0x4a)... - 1 registered -2024-09-06T11:03:30.297Z DRIVER added request handler for RemoveNodeFromNetwork (0x4b)... - 1 registered -2024-09-06T11:03:30.297Z DRIVER added request handler for ReplaceFailedNode (0x63)... - 1 registered -2024-09-06T11:03:30.297Z DRIVER added request handler for SetLearnMode (0x50)... - 1 registered -2024-09-06T11:03:30.297Z CNTRLR querying Serial API capabilities... -2024-09-06T11:03:30.305Z SERIAL » 0x01030007fb (5 bytes) -2024-09-06T11:03:30.306Z DRIVER » [REQ] [GetSerialApiCapabilities] -2024-09-06T11:03:30.314Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:30.314Z SERIAL « 0x012b01070716000000040004f6873e88cf2bc05ffbd7fde09700008000808680b (45 bytes) - a0500700000ee7fc000000041 -2024-09-06T11:03:30.315Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:30.316Z DRIVER « [RES] [GetSerialApiCapabilities] - payload: 0x0716000000040004f6873e88cf2bc05ffbd7fde09700008000808680ba0500700 - 000ee7fc0000000 -2024-09-06T11:03:30.317Z CNTRLR received API capabilities: - firmware version: 7.22 - manufacturer ID: 0x00 - product type: 0x04 - product ID: 0x04 - supported functions: - · GetSerialApiInitData (0x02) - · SetApplicationNodeInformation (0x03) - · GetControllerCapabilities (0x05) - · SetSerialApiTimeouts (0x06) - · GetSerialApiCapabilities (0x07) - · SoftReset (0x08) - · GetProtocolVersion (0x09) - · SerialAPIStarted (0x0a) - · SerialAPISetup (0x0b) - · SetRFReceiveMode (0x10) - · SendNodeInformation (0x12) - · SendData (0x13) - · SendDataMulticast (0x14) - · GetControllerVersion (0x15) - · SendDataAbort (0x16) - · FUNC_ID_ZW_GET_RANDOM (0x1c) - · GetControllerId (0x20) - · UNKNOWN_FUNC_MEMORY_GET_BYTE (0x21) - · UNKNOWN_FUNC_MEMORY_PUT_BYTE (0x22) - · UNKNOWN_FUNC_MEMORY_GET_BUFFER (0x23) - · UNKNOWN_FUNC_MEMORY_PUT_BUFFER (0x24) - · EnterBootloader (0x27) - · UNKNOWN_FUNC_UNKNOWN_0x28 (0x28) - · GetNVMId (0x29) - · ExtNVMReadLongBuffer (0x2a) - · ExtNVMReadLongByte (0x2c) - · NVMOperations (0x2e) - · ClearTxTimers (0x37) - · GetTxTimers (0x38) - · ClearNetworkStats (0x39) - · GetNetworkStats (0x3a) - · GetBackgroundRSSI (0x3b) - · SetListenBeforeTalkThreshold (0x3c) - · ExtendedNVMOperations (0x3d) - · RemoveSpecificNodeIdFromNetwork (0x3f) - · GetNodeProtocolInfo (0x41) - · HardReset (0x42) - · FUNC_ID_ZW_REPLICATION_COMMAND_COMPLETE (0x44) - · FUNC_ID_ZW_REPLICATION_SEND_DATA (0x45) - · AssignReturnRoute (0x46) - · DeleteReturnRoute (0x47) - · RequestNodeNeighborUpdate (0x48) - · ApplicationUpdateRequest (0x49) - · AddNodeToNetwork (0x4a) - · RemoveNodeFromNetwork (0x4b) - · AddPrimaryController (0x4d) - · AssignPriorityReturnRoute (0x4f) - · SetLearnMode (0x50) - · AssignSUCReturnRoute (0x51) - · RequestNetworkUpdate (0x53) - · SetSUCNodeId (0x54) - · DeleteSUCReturnRoute (0x55) - · GetSUCNodeId (0x56) - · SendSUCNodeId (0x57) - · AssignPrioritySUCReturnRoute (0x58) - · ExploreRequestInclusion (0x5e) - · ExploreRequestExclusion (0x5f) - · RequestNodeInfo (0x60) - · RemoveFailedNode (0x61) - · IsFailedNode (0x62) - · ReplaceFailedNode (0x63) - · undefined (0x65) - · RequestProtocolCCEncryption (0x68) - · GetRoutingInfo (0x80) - · LockUnlockLastRoute (0x90) - · GetPriorityRoute (0x92) - · SetPriorityRoute (0x93) - · UNKNOWN_FUNC_UNKNOWN_0x98 (0x98) - · VirtualNodeSetNodeInfo (0xa0) - · VirtualNodeSendNodeInfo (0xa2) - · VirtualNodeSetLearnMode (0xa4) - · GetVirtualNodes (0xa5) - · IsVirtualNode (0xa6) - · BridgeApplicationCommand (0xa8) - · SendDataBridge (0xa9) - · SendDataMulticastBridge (0xab) - · GetLibrary (0xbd) - · SendTestFrame (0xbe) - · GetProtocolStatus (0xbf) - · StartWatchdog (0xd2) - · StopWatchdog (0xd3) - · SetMaximumRoutingAttempts (0xd4) - · SetMaxSmartStartInclusionRequestInterval (0xd6) - · undefined (0xd7) - · undefined (0xd8) - · Shutdown (0xd9) - · GetLongRangeNodes (0xda) - · GetLongRangeChannel (0xdb) - · SetLongRangeChannel (0xdc) - · SetLongRangeShadowNodeIDs (0xdd) - · Proprietary_DE (0xde) - · Proprietary_DF (0xdf) - · Proprietary_E7 (0xe7) - · Proprietary_E8 (0xe8) -2024-09-06T11:03:30.317Z CNTRLR querying additional controller information... -2024-09-06T11:03:30.318Z SERIAL » 0x01030002fe (5 bytes) -2024-09-06T11:03:30.319Z DRIVER » [REQ] [GetSerialApiInitData] -2024-09-06T11:03:30.327Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:30.328Z SERIAL « 0x012501020a001d030000000000000000000000000000000000000000000000000 (39 bytes) - 00000000800c5 -2024-09-06T11:03:30.328Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:30.329Z DRIVER « [RES] [GetSerialApiInitData] - payload: 0x0a001d03000000000000000000000000000000000000000000000000000000000 - 800 -2024-09-06T11:03:30.329Z CNTRLR received additional controller information: - Z-Wave API version: 1 (official) - Z-Wave chip type: EFR32ZG23 / ZGM230S - node type Controller - controller role: primary - controller is the SIS: false - controller supports timers: false - Z-Wave Classic nodes: 1, 2 -2024-09-06T11:03:30.330Z CNTRLR querying version info... -2024-09-06T11:03:30.330Z SERIAL » 0x01030015e9 (5 bytes) -2024-09-06T11:03:30.331Z DRIVER » [REQ] [GetControllerVersion] -2024-09-06T11:03:30.338Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:30.339Z SERIAL « 0x011001155a2d5761766520372e3232000797 (18 bytes) -2024-09-06T11:03:30.339Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:30.340Z DRIVER « [RES] [GetControllerVersion] - payload: 0x5a2d5761766520372e32320007 -2024-09-06T11:03:30.341Z CNTRLR received version info: - controller type: Bridge Controller - library version: Z-Wave 7.22 -2024-09-06T11:03:30.341Z CNTRLR querying protocol version info... -2024-09-06T11:03:30.342Z SERIAL » 0x01030009f5 (5 bytes) -2024-09-06T11:03:30.343Z DRIVER » [REQ] [GetProtocolVersion] -2024-09-06T11:03:30.349Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:30.350Z SERIAL « 0x0119010900071601abcd63636639623665613165616566313162c3 (27 bytes) -2024-09-06T11:03:30.350Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:30.351Z DRIVER « [RES] [GetProtocolVersion] - payload: 0x00071601abcd63636639623665613165616566313162 -2024-09-06T11:03:30.352Z CNTRLR received protocol version info: - protocol type: Z-Wave - protocol version: 7.22.1 - appl. framework build no.: 43981 - git commit hash: 63636639623665613165616566313162 -2024-09-06T11:03:30.352Z CNTRLR querying controller capabilities... -2024-09-06T11:03:30.354Z SERIAL » 0x01030005f9 (5 bytes) -2024-09-06T11:03:30.354Z DRIVER » [REQ] [GetControllerCapabilities] -2024-09-06T11:03:30.360Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:30.361Z SERIAL « 0x0104010506f9 (6 bytes) -2024-09-06T11:03:30.361Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:30.362Z DRIVER « [RES] [GetControllerCapabilities] - payload: 0x06 -2024-09-06T11:03:30.363Z CNTRLR received controller capabilities: - controller role: Inclusion - is the SUC: false - started this network: false - SIS is present: true - was real primary: false -2024-09-06T11:03:30.363Z CNTRLR querying serial API setup capabilities... -2024-09-06T11:03:30.364Z SERIAL » 0x0104000b01f1 (6 bytes) -2024-09-06T11:03:30.364Z DRIVER » [REQ] [SerialAPISetup] - command: GetSupportedCommands - payload: 0x01 -2024-09-06T11:03:30.370Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:30.371Z SERIAL « 0x0116010b01ff9f8007800000008000000000000000800085 (24 bytes) -2024-09-06T11:03:30.372Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:30.372Z DRIVER « [RES] [SerialAPISetup] - command: GetSupportedCommands - payload: 0xff9f80078000000080000000000000008000 -2024-09-06T11:03:30.373Z CNTRLR supported serial API setup commands: - · GetSupportedCommands - · SetTxStatusReport - · SetLongRangeMaximumTxPower - · SetPowerlevel - · GetLongRangeMaximumTxPower - · GetPowerlevel - · GetMaximumPayloadSize - · GetLongRangeMaximumPayloadSize - · SetPowerlevel16Bit - · GetPowerlevel16Bit - · GetRFRegion - · SetRFRegion - · SetNodeIDType -2024-09-06T11:03:30.373Z CNTRLR querying max. payload size... -2024-09-06T11:03:30.374Z SERIAL » 0x0104000b10e0 (6 bytes) -2024-09-06T11:03:30.374Z DRIVER » [REQ] [SerialAPISetup] - command: GetMaximumPayloadSize - payload: 0x10 -2024-09-06T11:03:30.379Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:30.379Z SERIAL « 0x0105010b102ece (7 bytes) -2024-09-06T11:03:30.380Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:30.380Z DRIVER « [RES] [SerialAPISetup] - command: GetMaximumPayloadSize - maximum payload size: 46 bytes -2024-09-06T11:03:30.381Z CNTRLR maximum payload size: 46 bytes -2024-09-06T11:03:30.381Z CNTRLR supported Z-Wave features: - · SmartStart -2024-09-06T11:03:30.382Z CNTRLR Querying configured RF region... -2024-09-06T11:03:30.382Z SERIAL » 0x0104000b20d0 (6 bytes) -2024-09-06T11:03:30.383Z DRIVER » [REQ] [SerialAPISetup] - command: GetRFRegion - payload: 0x20 -2024-09-06T11:03:30.388Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:30.388Z SERIAL « 0x0105010b2000d0 (7 bytes) -2024-09-06T11:03:30.389Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:30.389Z DRIVER « [RES] [SerialAPISetup] - command: GetRFRegion - region: Europe -2024-09-06T11:03:30.390Z CNTRLR The controller is using RF region Europe -2024-09-06T11:03:30.390Z CNTRLR Querying configured max. Long Range powerlevel... -2024-09-06T11:03:30.391Z SERIAL » 0x0104000b05f5 (6 bytes) -2024-09-06T11:03:30.391Z DRIVER » [REQ] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - payload: 0x05 -2024-09-06T11:03:30.396Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:30.396Z SERIAL « 0x0106010b05008c7a (8 bytes) -2024-09-06T11:03:30.397Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:30.397Z DRIVER « [RES] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - max. TX power (LR): 14.0 dBm -2024-09-06T11:03:30.398Z CNTRLR The max. LR powerlevel is 14.0 dBm -2024-09-06T11:03:30.398Z CNTRLR Querying configured Long Range channel information... -2024-09-06T11:03:30.399Z SERIAL » 0x010300db27 (5 bytes) -2024-09-06T11:03:30.399Z DRIVER » [REQ] [GetLongRangeChannel] -2024-09-06T11:03:30.404Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:30.405Z SERIAL « 0x010501db001030 (7 bytes) -2024-09-06T11:03:30.405Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:30.405Z DRIVER « [RES] [GetLongRangeChannel] - payload: 0x0010 -2024-09-06T11:03:30.406Z CNTRLR received Z-Wave Long Range channel information: - channel: Unsupported - supports auto channel selection: true -2024-09-06T11:03:30.406Z CNTRLR Performing soft reset... -2024-09-06T11:03:30.407Z SERIAL » 0x01030008f4 (5 bytes) -2024-09-06T11:03:30.407Z DRIVER » [REQ] [SoftReset] -2024-09-06T11:03:30.411Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:30.412Z CNTRLR Waiting for the controller to reconnect... -2024-09-06T11:03:30.413Z DRIVER all queues idle -2024-09-06T11:03:30.532Z SERIAL « 0x0116000a0700010100085e989f556c568f7400031d00003f (24 bytes) -2024-09-06T11:03:30.533Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:30.537Z DRIVER « [REQ] [SerialAPIStarted] - wake up reason: SoftwareReset - watchdog enabled: false - generic device class: 0x01 - specific device class: 0x00 - always listening: false - supports Long Range: false -2024-09-06T11:03:30.538Z CNTRLR reconnected and restarted -2024-09-06T11:03:30.538Z CNTRLR Starting hardware watchdog... -2024-09-06T11:03:30.539Z CNTRLR Switching serial API to 16-bit node IDs... -2024-09-06T11:03:30.544Z CNTRLR Switching serial API to 8-bit node IDs... -2024-09-06T11:03:30.545Z DRIVER all queues busy -2024-09-06T11:03:30.545Z SERIAL » 0x010300d22e (5 bytes) -2024-09-06T11:03:30.546Z DRIVER » [REQ] [StartWatchdog] -2024-09-06T11:03:30.556Z SERIAL » 0x0105000b800273 (7 bytes) -2024-09-06T11:03:30.557Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 16 bit -2024-09-06T11:03:30.564Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:30.565Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:30.566Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T11:03:30.566Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:30.567Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T11:03:30.568Z CNTRLR Switching to 16-bit node IDs successful -2024-09-06T11:03:30.568Z SERIAL » 0x0105000b800170 (7 bytes) -2024-09-06T11:03:30.574Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 8 bit -2024-09-06T11:03:30.582Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:30.583Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T11:03:30.583Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:30.584Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T11:03:30.585Z CNTRLR Switching to 8-bit node IDs successful -2024-09-06T11:03:30.585Z CNTRLR querying controller IDs... -2024-09-06T11:03:30.588Z SERIAL » 0x01030020dc (5 bytes) -2024-09-06T11:03:30.588Z DRIVER » [REQ] [GetControllerId] -2024-09-06T11:03:30.593Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:30.594Z SERIAL « 0x01080120d188a45e0277 (10 bytes) -2024-09-06T11:03:30.595Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:30.595Z DRIVER « [RES] [GetControllerId] - home ID: 0xd188a45e - own node ID: 2 -2024-09-06T11:03:30.596Z CNTRLR received controller IDs: - home ID: 0xd188a45e - own node ID: 2 -2024-09-06T11:03:30.596Z CNTRLR Enabling TX status report... -2024-09-06T11:03:30.597Z SERIAL » 0x0105000b02ff0c (7 bytes) -2024-09-06T11:03:30.597Z DRIVER » [REQ] [SerialAPISetup] - command: SetTxStatusReport - enabled: true -2024-09-06T11:03:30.602Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:30.603Z SERIAL « 0x0105010b0201f3 (7 bytes) -2024-09-06T11:03:30.603Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:30.605Z DRIVER « [RES] [SerialAPISetup] - command: SetTxStatusReport - success: true -2024-09-06T11:03:30.606Z CNTRLR Enabling TX status report successful... -2024-09-06T11:03:30.606Z CNTRLR finding SUC... -2024-09-06T11:03:30.607Z SERIAL » 0x01030056aa (5 bytes) -2024-09-06T11:03:30.608Z DRIVER » [REQ] [GetSUCNodeId] -2024-09-06T11:03:30.614Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:30.615Z SERIAL « 0x0104015601ad (6 bytes) -2024-09-06T11:03:30.615Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:30.616Z DRIVER « [RES] [GetSUCNodeId] - payload: 0x01 -2024-09-06T11:03:30.617Z CNTRLR SUC has node ID 1 -2024-09-06T11:03:30.618Z DRIVER all queues idle -2024-09-06T11:03:30.630Z DRIVER Cache file for homeId 0xd188a45e found, attempting to restore the network from - cache... -2024-09-06T11:03:30.647Z CNTRLR [Node 002] Embedded device config loaded -2024-09-06T11:03:30.648Z DRIVER Restoring the network from cache was successful! -2024-09-06T11:03:30.649Z CNTRLR [Node 002] [Manufacturer Specific] manufacturerId: metadata updated -2024-09-06T11:03:30.650Z CNTRLR [Node 002] [Manufacturer Specific] productType: metadata updated -2024-09-06T11:03:30.650Z CNTRLR [Node 002] [Manufacturer Specific] productId: metadata updated -2024-09-06T11:03:30.650Z CNTRLR [Node 002] [~] [Manufacturer Specific] manufacturerId: 0 => 0 -2024-09-06T11:03:30.651Z CNTRLR [Node 002] [~] [Manufacturer Specific] productType: 4 => 4 -2024-09-06T11:03:30.651Z CNTRLR [Node 002] [~] [Manufacturer Specific] productId: 4 => 4 -2024-09-06T11:03:30.651Z CNTRLR [Node 002] [Version] firmwareVersions: metadata updated -2024-09-06T11:03:30.651Z CNTRLR [Node 002] [~] [Version] firmwareVersions: 7.22 => 7.22 -2024-09-06T11:03:30.652Z CNTRLR [Node 002] [Version] zWaveProtocolVersion: metadata updated -2024-09-06T11:03:30.652Z CNTRLR [Node 002] [~] [Version] zWaveProtocolVersion: "7.22.1" => "7.22.1" -2024-09-06T11:03:30.652Z CNTRLR [Node 002] [Version] sdkVersion: metadata updated -2024-09-06T11:03:30.652Z CNTRLR [Node 002] [~] [Version] sdkVersion: "7.22.1" => "7.22.1" -2024-09-06T11:03:30.652Z CNTRLR Interview completed -2024-09-06T11:03:30.652Z DRIVER No network key for S0 found in cache, communication with secure (S0) devices w - on't work! -2024-09-06T11:03:30.653Z DRIVER No network key for S2 found in cache, communication with secure (S2) devices w - on't work! -2024-09-06T11:03:30.653Z DRIVER driver ready -2024-09-06T11:03:30.654Z CNTRLR [Node 002] Beginning interview - last completed stage: None -2024-09-06T11:03:30.654Z CNTRLR [Node 002] new node, doing a full interview... -2024-09-06T11:03:30.654Z CNTRLR » [Node 002] querying protocol info... -2024-09-06T11:03:30.655Z DRIVER all queues busy -2024-09-06T11:03:30.656Z SERIAL » 0x0104004102b8 (6 bytes) -2024-09-06T11:03:30.656Z DRIVER » [REQ] [GetNodeProtocolInfo] - payload: 0x02 -2024-09-06T11:03:30.661Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:30.662Z SERIAL « 0x010a0141d3960102010000f2 (12 bytes) -2024-09-06T11:03:30.662Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:30.663Z DRIVER « [RES] [GetNodeProtocolInfo] - payload: 0xd3960102010000 -2024-09-06T11:03:30.664Z CNTRLR « [Node 002] received response for protocol info: - basic device class: Static Controller - generic device class: Remote Controller - specific device class: Unused - node type: Controller - is always listening: true - is frequent listening: false - can route messages: true - supports security: false - supports beaming: true - maximum data rate: 100000 kbps - protocol version: 3 -2024-09-06T11:03:30.664Z CNTRLR [Node 002] Interview stage completed: ProtocolInfo -2024-09-06T11:03:30.665Z DRIVER all queues idle -2024-09-06T11:03:30.672Z CNTRLR [Node 002] Embedded device config loaded -2024-09-06T11:03:30.673Z CNTRLR [Node 002] Interview stage completed: OverwriteConfig -2024-09-06T11:03:30.673Z CNTRLR [Node 002] Interview completed -2024-09-06T11:03:30.673Z CNTRLR [Node 002] The node is ready to be used -2024-09-06T11:03:30.674Z CNTRLR [Node 002] The node is alive. -2024-09-06T11:03:30.674Z CNTRLR » [Node 001] querying protocol info... -2024-09-06T11:03:30.674Z DRIVER all queues busy -2024-09-06T11:03:30.675Z SERIAL » 0x0104004101bb (6 bytes) -2024-09-06T11:03:30.675Z DRIVER » [REQ] [GetNodeProtocolInfo] - payload: 0x01 -2024-09-06T11:03:30.681Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:30.682Z SERIAL « 0x010a0141d3960102010000f2 (12 bytes) -2024-09-06T11:03:30.682Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:30.683Z DRIVER « [RES] [GetNodeProtocolInfo] - payload: 0xd3960102010000 -2024-09-06T11:03:30.683Z CNTRLR « [Node 001] received response for protocol info: - basic device class: Static Controller - generic device class: Remote Controller - specific device class: Unused - node type: Controller - is always listening: true - is frequent listening: false - can route messages: true - supports security: false - supports beaming: true - maximum data rate: 100000 kbps - protocol version: 3 -2024-09-06T11:03:30.684Z CNTRLR [Node 001] Interview stage completed: ProtocolInfo -2024-09-06T11:03:30.684Z CNTRLR Determining node status: 1 -2024-09-06T11:03:30.684Z CNTRLR » [Node 001] pinging the node... -2024-09-06T11:03:30.687Z SERIAL » 0x010d00a9020101002500000000017d (15 bytes) -2024-09-06T11:03:30.688Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 1 - └─[NoOperationCC] -2024-09-06T11:03:30.693Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:30.701Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:03:30.702Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:30.703Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:03:30.714Z SERIAL « 0x011d00a90100000100d87f7f7f7f00000300000000030100007f7f7f7f7fed (31 bytes) -2024-09-06T11:03:30.715Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:30.716Z DRIVER « [REQ] [SendDataBridge] - callback id: 1 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -40 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:03:30.718Z CNTRLR [Node 001] The node is alive. -2024-09-06T11:03:30.719Z CNTRLR « [Node 001] ping successful -2024-09-06T11:03:30.724Z DRIVER all queues idle -2024-09-06T11:03:35.653Z CNTRLR Updating the controller NIF... -2024-09-06T11:03:35.655Z DRIVER all queues busy -2024-09-06T11:03:35.656Z SERIAL » 0x010f0003010100085e989f556c568f7436 (17 bytes) -2024-09-06T11:03:35.657Z DRIVER » [REQ] [SetApplicationNodeInformation] - is listening: true - generic device class: 0x01 - specific device class: 0x00 - supported CCs: - · Z-Wave Plus Info - · Security - · Security 2 - · Transport Service - · Supervision - · CRC-16 Encapsulation - · Multi Command - · Inclusion Controller - controlled CCs: -2024-09-06T11:03:35.663Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:35.666Z CNTRLR performing hard reset... -2024-09-06T11:03:35.668Z SERIAL » 0x0104004202bb (6 bytes) -2024-09-06T11:03:35.668Z DRIVER » [REQ] [HardReset] - callback id: 2 -2024-09-06T11:03:35.672Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:35.694Z SERIAL « 0x0104004202bb (6 bytes) -2024-09-06T11:03:35.695Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:35.696Z DRIVER « [REQ] [HardReset] - callback id: 2 -2024-09-06T11:03:35.697Z CNTRLR hard reset succeeded -2024-09-06T11:03:35.698Z CNTRLR querying Serial API capabilities... -2024-09-06T11:03:35.699Z SERIAL » 0x01030007fb (5 bytes) -2024-09-06T11:03:35.700Z DRIVER » [REQ] [GetSerialApiCapabilities] -2024-09-06T11:03:35.709Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:35.710Z SERIAL « 0x012b01070716000000040004f6873e88cf2bc05ffbd7fde09700008000808680b (45 bytes) - a0500700000ee7fc000000041 -2024-09-06T11:03:35.711Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:35.712Z DRIVER « [RES] [GetSerialApiCapabilities] - payload: 0x0716000000040004f6873e88cf2bc05ffbd7fde09700008000808680ba0500700 - 000ee7fc0000000 -2024-09-06T11:03:35.714Z CNTRLR received API capabilities: - firmware version: 7.22 - manufacturer ID: 0x00 - product type: 0x04 - product ID: 0x04 - supported functions: - · GetSerialApiInitData (0x02) - · SetApplicationNodeInformation (0x03) - · GetControllerCapabilities (0x05) - · SetSerialApiTimeouts (0x06) - · GetSerialApiCapabilities (0x07) - · SoftReset (0x08) - · GetProtocolVersion (0x09) - · SerialAPIStarted (0x0a) - · SerialAPISetup (0x0b) - · SetRFReceiveMode (0x10) - · SendNodeInformation (0x12) - · SendData (0x13) - · SendDataMulticast (0x14) - · GetControllerVersion (0x15) - · SendDataAbort (0x16) - · FUNC_ID_ZW_GET_RANDOM (0x1c) - · GetControllerId (0x20) - · UNKNOWN_FUNC_MEMORY_GET_BYTE (0x21) - · UNKNOWN_FUNC_MEMORY_PUT_BYTE (0x22) - · UNKNOWN_FUNC_MEMORY_GET_BUFFER (0x23) - · UNKNOWN_FUNC_MEMORY_PUT_BUFFER (0x24) - · EnterBootloader (0x27) - · UNKNOWN_FUNC_UNKNOWN_0x28 (0x28) - · GetNVMId (0x29) - · ExtNVMReadLongBuffer (0x2a) - · ExtNVMReadLongByte (0x2c) - · NVMOperations (0x2e) - · ClearTxTimers (0x37) - · GetTxTimers (0x38) - · ClearNetworkStats (0x39) - · GetNetworkStats (0x3a) - · GetBackgroundRSSI (0x3b) - · SetListenBeforeTalkThreshold (0x3c) - · ExtendedNVMOperations (0x3d) - · RemoveSpecificNodeIdFromNetwork (0x3f) - · GetNodeProtocolInfo (0x41) - · HardReset (0x42) - · FUNC_ID_ZW_REPLICATION_COMMAND_COMPLETE (0x44) - · FUNC_ID_ZW_REPLICATION_SEND_DATA (0x45) - · AssignReturnRoute (0x46) - · DeleteReturnRoute (0x47) - · RequestNodeNeighborUpdate (0x48) - · ApplicationUpdateRequest (0x49) - · AddNodeToNetwork (0x4a) - · RemoveNodeFromNetwork (0x4b) - · AddPrimaryController (0x4d) - · AssignPriorityReturnRoute (0x4f) - · SetLearnMode (0x50) - · AssignSUCReturnRoute (0x51) - · RequestNetworkUpdate (0x53) - · SetSUCNodeId (0x54) - · DeleteSUCReturnRoute (0x55) - · GetSUCNodeId (0x56) - · SendSUCNodeId (0x57) - · AssignPrioritySUCReturnRoute (0x58) - · ExploreRequestInclusion (0x5e) - · ExploreRequestExclusion (0x5f) - · RequestNodeInfo (0x60) - · RemoveFailedNode (0x61) - · IsFailedNode (0x62) - · ReplaceFailedNode (0x63) - · undefined (0x65) - · RequestProtocolCCEncryption (0x68) - · GetRoutingInfo (0x80) - · LockUnlockLastRoute (0x90) - · GetPriorityRoute (0x92) - · SetPriorityRoute (0x93) - · UNKNOWN_FUNC_UNKNOWN_0x98 (0x98) - · VirtualNodeSetNodeInfo (0xa0) - · VirtualNodeSendNodeInfo (0xa2) - · VirtualNodeSetLearnMode (0xa4) - · GetVirtualNodes (0xa5) - · IsVirtualNode (0xa6) - · BridgeApplicationCommand (0xa8) - · SendDataBridge (0xa9) - · SendDataMulticastBridge (0xab) - · GetLibrary (0xbd) - · SendTestFrame (0xbe) - · GetProtocolStatus (0xbf) - · StartWatchdog (0xd2) - · StopWatchdog (0xd3) - · SetMaximumRoutingAttempts (0xd4) - · SetMaxSmartStartInclusionRequestInterval (0xd6) - · undefined (0xd7) - · undefined (0xd8) - · Shutdown (0xd9) - · GetLongRangeNodes (0xda) - · GetLongRangeChannel (0xdb) - · SetLongRangeChannel (0xdc) - · SetLongRangeShadowNodeIDs (0xdd) - · Proprietary_DE (0xde) - · Proprietary_DF (0xdf) - · Proprietary_E7 (0xe7) - · Proprietary_E8 (0xe8) -2024-09-06T11:03:35.714Z CNTRLR querying additional controller information... -2024-09-06T11:03:35.715Z SERIAL » 0x01030002fe (5 bytes) -2024-09-06T11:03:35.716Z DRIVER » [REQ] [GetSerialApiInitData] -2024-09-06T11:03:35.725Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:35.726Z SERIAL « 0x012501020a001d010000000000000000000000000000000000000000000000000 (39 bytes) - 00000000800c7 -2024-09-06T11:03:35.727Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:35.728Z DRIVER « [RES] [GetSerialApiInitData] - payload: 0x0a001d01000000000000000000000000000000000000000000000000000000000 - 800 -2024-09-06T11:03:35.729Z CNTRLR received additional controller information: - Z-Wave API version: 1 (official) - Z-Wave chip type: EFR32ZG23 / ZGM230S - node type Controller - controller role: primary - controller is the SIS: false - controller supports timers: false - Z-Wave Classic nodes: 1 -2024-09-06T11:03:35.729Z CNTRLR querying version info... -2024-09-06T11:03:35.731Z SERIAL » 0x01030015e9 (5 bytes) -2024-09-06T11:03:35.731Z DRIVER » [REQ] [GetControllerVersion] -2024-09-06T11:03:35.738Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:35.739Z SERIAL « 0x011001155a2d5761766520372e3232000797 (18 bytes) -2024-09-06T11:03:35.739Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:35.740Z DRIVER « [RES] [GetControllerVersion] - payload: 0x5a2d5761766520372e32320007 -2024-09-06T11:03:35.741Z CNTRLR received version info: - controller type: Bridge Controller - library version: Z-Wave 7.22 -2024-09-06T11:03:35.741Z CNTRLR querying protocol version info... -2024-09-06T11:03:35.742Z SERIAL » 0x01030009f5 (5 bytes) -2024-09-06T11:03:35.743Z DRIVER » [REQ] [GetProtocolVersion] -2024-09-06T11:03:35.750Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:35.751Z SERIAL « 0x0119010900071601abcd63636639623665613165616566313162c3 (27 bytes) -2024-09-06T11:03:35.751Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:35.752Z DRIVER « [RES] [GetProtocolVersion] - payload: 0x00071601abcd63636639623665613165616566313162 -2024-09-06T11:03:35.753Z CNTRLR received protocol version info: - protocol type: Z-Wave - protocol version: 7.22.1 - appl. framework build no.: 43981 - git commit hash: 63636639623665613165616566313162 -2024-09-06T11:03:35.753Z CNTRLR querying controller capabilities... -2024-09-06T11:03:35.754Z SERIAL » 0x01030005f9 (5 bytes) -2024-09-06T11:03:35.755Z DRIVER » [REQ] [GetControllerCapabilities] -2024-09-06T11:03:35.760Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:35.761Z SERIAL « 0x0104010528d7 (6 bytes) -2024-09-06T11:03:35.761Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:35.762Z DRIVER « [RES] [GetControllerCapabilities] - payload: 0x28 -2024-09-06T11:03:35.762Z CNTRLR received controller capabilities: - controller role: Primary - is the SUC: false - started this network: true - SIS is present: false - was real primary: true -2024-09-06T11:03:35.763Z CNTRLR querying serial API setup capabilities... -2024-09-06T11:03:35.763Z SERIAL » 0x0104000b01f1 (6 bytes) -2024-09-06T11:03:35.764Z DRIVER » [REQ] [SerialAPISetup] - command: GetSupportedCommands - payload: 0x01 -2024-09-06T11:03:35.771Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:35.771Z SERIAL « 0x0116010b01ff9f8007800000008000000000000000800085 (24 bytes) -2024-09-06T11:03:35.772Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:35.772Z DRIVER « [RES] [SerialAPISetup] - command: GetSupportedCommands - payload: 0xff9f80078000000080000000000000008000 -2024-09-06T11:03:35.774Z CNTRLR supported serial API setup commands: - · GetSupportedCommands - · SetTxStatusReport - · SetLongRangeMaximumTxPower - · SetPowerlevel - · GetLongRangeMaximumTxPower - · GetPowerlevel - · GetMaximumPayloadSize - · GetLongRangeMaximumPayloadSize - · SetPowerlevel16Bit - · GetPowerlevel16Bit - · GetRFRegion - · SetRFRegion - · SetNodeIDType -2024-09-06T11:03:35.774Z CNTRLR querying max. payload size... -2024-09-06T11:03:35.775Z SERIAL » 0x0104000b10e0 (6 bytes) -2024-09-06T11:03:35.776Z DRIVER » [REQ] [SerialAPISetup] - command: GetMaximumPayloadSize - payload: 0x10 -2024-09-06T11:03:35.781Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:35.783Z SERIAL « 0x0105010b102ece (7 bytes) -2024-09-06T11:03:35.783Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:35.784Z DRIVER « [RES] [SerialAPISetup] - command: GetMaximumPayloadSize - maximum payload size: 46 bytes -2024-09-06T11:03:35.786Z CNTRLR maximum payload size: 46 bytes -2024-09-06T11:03:35.786Z CNTRLR supported Z-Wave features: - · SmartStart -2024-09-06T11:03:35.786Z CNTRLR Querying configured RF region... -2024-09-06T11:03:35.788Z SERIAL » 0x0104000b20d0 (6 bytes) -2024-09-06T11:03:35.788Z DRIVER » [REQ] [SerialAPISetup] - command: GetRFRegion - payload: 0x20 -2024-09-06T11:03:35.794Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:35.795Z SERIAL « 0x0105010b2000d0 (7 bytes) -2024-09-06T11:03:35.795Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:35.796Z DRIVER « [RES] [SerialAPISetup] - command: GetRFRegion - region: Europe -2024-09-06T11:03:35.797Z CNTRLR The controller is using RF region Europe -2024-09-06T11:03:35.798Z CNTRLR Querying configured max. Long Range powerlevel... -2024-09-06T11:03:35.799Z SERIAL » 0x0104000b05f5 (6 bytes) -2024-09-06T11:03:35.799Z DRIVER » [REQ] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - payload: 0x05 -2024-09-06T11:03:35.805Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:35.806Z SERIAL « 0x0106010b05008c7a (8 bytes) -2024-09-06T11:03:35.806Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:35.807Z DRIVER « [RES] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - max. TX power (LR): 14.0 dBm -2024-09-06T11:03:35.808Z CNTRLR The max. LR powerlevel is 14.0 dBm -2024-09-06T11:03:35.808Z CNTRLR Querying configured Long Range channel information... -2024-09-06T11:03:35.809Z SERIAL » 0x010300db27 (5 bytes) -2024-09-06T11:03:35.809Z DRIVER » [REQ] [GetLongRangeChannel] -2024-09-06T11:03:35.814Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:35.815Z SERIAL « 0x010501db001030 (7 bytes) -2024-09-06T11:03:35.815Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:35.816Z DRIVER « [RES] [GetLongRangeChannel] - payload: 0x0010 -2024-09-06T11:03:35.817Z CNTRLR received Z-Wave Long Range channel information: - channel: Unsupported - supports auto channel selection: true -2024-09-06T11:03:35.817Z CNTRLR Performing soft reset... -2024-09-06T11:03:35.818Z SERIAL » 0x01030008f4 (5 bytes) -2024-09-06T11:03:35.818Z DRIVER » [REQ] [SoftReset] -2024-09-06T11:03:35.822Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:35.823Z CNTRLR Waiting for the controller to reconnect... -2024-09-06T11:03:35.823Z DRIVER all queues idle -2024-09-06T11:03:35.928Z SERIAL « 0x0116000a0700010100085e989f556c568f7400031d00003f (24 bytes) -2024-09-06T11:03:35.929Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:35.931Z DRIVER « [REQ] [SerialAPIStarted] - wake up reason: SoftwareReset - watchdog enabled: false - generic device class: 0x01 - specific device class: 0x00 - always listening: false - supports Long Range: false -2024-09-06T11:03:35.931Z CNTRLR reconnected and restarted -2024-09-06T11:03:35.931Z CNTRLR Starting hardware watchdog... -2024-09-06T11:03:35.932Z CNTRLR Switching serial API to 16-bit node IDs... -2024-09-06T11:03:35.933Z CNTRLR Switching serial API to 8-bit node IDs... -2024-09-06T11:03:35.933Z DRIVER all queues busy -2024-09-06T11:03:35.934Z SERIAL » 0x010300d22e (5 bytes) -2024-09-06T11:03:35.935Z DRIVER » [REQ] [StartWatchdog] -2024-09-06T11:03:35.937Z SERIAL » 0x0105000b800273 (7 bytes) -2024-09-06T11:03:35.938Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 16 bit -2024-09-06T11:03:35.940Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:35.944Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:35.945Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T11:03:35.945Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:35.946Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T11:03:35.947Z CNTRLR Switching to 16-bit node IDs successful -2024-09-06T11:03:35.948Z SERIAL » 0x0105000b800170 (7 bytes) -2024-09-06T11:03:35.949Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 8 bit -2024-09-06T11:03:35.955Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:35.956Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T11:03:35.956Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:35.957Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T11:03:35.958Z CNTRLR Switching to 8-bit node IDs successful -2024-09-06T11:03:35.958Z CNTRLR querying controller IDs... -2024-09-06T11:03:35.959Z SERIAL » 0x01030020dc (5 bytes) -2024-09-06T11:03:35.959Z DRIVER » [REQ] [GetControllerId] -2024-09-06T11:03:35.965Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:35.965Z SERIAL « 0x01080120f234f82c01c5 (10 bytes) -2024-09-06T11:03:35.965Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:35.966Z DRIVER « [RES] [GetControllerId] - home ID: 0xf234f82c - own node ID: 1 -2024-09-06T11:03:35.966Z CNTRLR received controller IDs: - home ID: 0xf234f82c - own node ID: 1 -2024-09-06T11:03:35.966Z CNTRLR Enabling TX status report... -2024-09-06T11:03:35.967Z SERIAL » 0x0105000b02ff0c (7 bytes) -2024-09-06T11:03:35.967Z DRIVER » [REQ] [SerialAPISetup] - command: SetTxStatusReport - enabled: true -2024-09-06T11:03:35.972Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:35.972Z SERIAL « 0x0105010b0201f3 (7 bytes) -2024-09-06T11:03:35.973Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:35.973Z DRIVER « [RES] [SerialAPISetup] - command: SetTxStatusReport - success: true -2024-09-06T11:03:35.973Z CNTRLR Enabling TX status report successful... -2024-09-06T11:03:35.973Z CNTRLR finding SUC... -2024-09-06T11:03:35.974Z SERIAL » 0x01030056aa (5 bytes) -2024-09-06T11:03:35.974Z DRIVER » [REQ] [GetSUCNodeId] -2024-09-06T11:03:35.979Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:35.979Z SERIAL « 0x0104015600ac (6 bytes) -2024-09-06T11:03:35.979Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:35.980Z DRIVER « [RES] [GetSUCNodeId] - payload: 0x00 -2024-09-06T11:03:35.980Z CNTRLR No SUC present in the network -2024-09-06T11:03:35.980Z CNTRLR There is no SUC/SIS in the network - promoting ourselves... -2024-09-06T11:03:35.981Z SERIAL » 0x01080054010125010384 (10 bytes) -2024-09-06T11:03:35.981Z DRIVER » [REQ] [SetSUCNodeId] - payload: 0x0101250103 -2024-09-06T11:03:35.988Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:35.988Z SERIAL « 0x0104015401af (6 bytes) -2024-09-06T11:03:35.989Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:35.989Z DRIVER « [RES] [SetSUCNodeId] - was executed: true -2024-09-06T11:03:35.990Z CNTRLR Promotion to SUC/SIS succeeded. -2024-09-06T11:03:35.990Z DRIVER all queues idle -2024-09-06T11:03:35.994Z CNTRLR [Node 001] [Manufacturer Specific] manufacturerId: metadata updated -2024-09-06T11:03:35.994Z CNTRLR [Node 001] [Manufacturer Specific] productType: metadata updated -2024-09-06T11:03:35.994Z CNTRLR [Node 001] [Manufacturer Specific] productId: metadata updated -2024-09-06T11:03:35.995Z CNTRLR [Node 001] [+] [Manufacturer Specific] manufacturerId: 0 -2024-09-06T11:03:35.995Z CNTRLR [Node 001] [+] [Manufacturer Specific] productType: 4 -2024-09-06T11:03:35.995Z CNTRLR [Node 001] [+] [Manufacturer Specific] productId: 4 -2024-09-06T11:03:35.995Z CNTRLR [Node 001] [Version] firmwareVersions: metadata updated -2024-09-06T11:03:35.995Z CNTRLR [Node 001] [+] [Version] firmwareVersions: 7.22 -2024-09-06T11:03:35.995Z CNTRLR [Node 001] [Version] zWaveProtocolVersion: metadata updated -2024-09-06T11:03:35.995Z CNTRLR [Node 001] [+] [Version] zWaveProtocolVersion: "7.22.1" -2024-09-06T11:03:35.995Z CNTRLR [Node 001] [Version] sdkVersion: metadata updated -2024-09-06T11:03:35.995Z CNTRLR [Node 001] [+] [Version] sdkVersion: "7.22.1" -2024-09-06T11:03:35.995Z CNTRLR Interview completed -2024-09-06T11:03:35.995Z DRIVER Network key for S0 configured, enabling S0 security manager... -2024-09-06T11:03:35.996Z DRIVER At least one network key for S2 configured, enabling S2 security manager... -2024-09-06T11:03:35.996Z DRIVER At least one network key for Z-Wave Long Range configured, enabling security m - anager... -2024-09-06T11:03:35.997Z DRIVER driver ready -2024-09-06T11:03:35.997Z CNTRLR [Node 001] Beginning interview - last completed stage: None -2024-09-06T11:03:35.997Z CNTRLR [Node 001] new node, doing a full interview... -2024-09-06T11:03:35.997Z CNTRLR » [Node 001] querying protocol info... -2024-09-06T11:03:35.998Z DRIVER all queues busy -2024-09-06T11:03:35.998Z SERIAL » 0x0104004101bb (6 bytes) -2024-09-06T11:03:35.998Z DRIVER » [REQ] [GetNodeProtocolInfo] - payload: 0x01 -2024-09-06T11:03:36.004Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:36.004Z SERIAL « 0x010a0141d3960102010000f2 (12 bytes) -2024-09-06T11:03:36.004Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:36.004Z DRIVER « [RES] [GetNodeProtocolInfo] - payload: 0xd3960102010000 -2024-09-06T11:03:36.005Z CNTRLR « [Node 001] received response for protocol info: - basic device class: Static Controller - generic device class: Remote Controller - specific device class: Unused - node type: Controller - is always listening: true - is frequent listening: false - can route messages: true - supports security: false - supports beaming: true - maximum data rate: 100000 kbps - protocol version: 3 -2024-09-06T11:03:36.005Z CNTRLR [Node 001] Interview stage completed: ProtocolInfo -2024-09-06T11:03:36.006Z DRIVER all queues idle -2024-09-06T11:03:36.007Z CNTRLR [Node 001] Embedded device config loaded -2024-09-06T11:03:36.007Z CNTRLR [Node 001] Interview stage completed: OverwriteConfig -2024-09-06T11:03:36.007Z CNTRLR [Node 001] Interview completed -2024-09-06T11:03:36.008Z CNTRLR [Node 001] The node is ready to be used -2024-09-06T11:03:36.008Z CNTRLR All nodes are ready to be used -2024-09-06T11:03:36.008Z CNTRLR [Node 001] The node is alive. -2024-09-06T11:03:40.700Z DRIVER all queues busy -2024-09-06T11:03:40.702Z SERIAL » 0x0105005081042f (7 bytes) -2024-09-06T11:03:40.703Z DRIVER » [REQ] [SetLearnMode] - callback id: 4 - intent: Inclusion -2024-09-06T11:03:40.709Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:40.710Z SERIAL « 0x0104015001ab (6 bytes) -2024-09-06T11:03:40.711Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:40.712Z DRIVER « [RES] [SetLearnMode] - success: true -2024-09-06T11:03:40.714Z DRIVER all queues idle -2024-09-06T11:03:40.869Z SERIAL « 0x0107005004010200af (9 bytes) -2024-09-06T11:03:40.870Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:40.870Z DRIVER « [REQ] [SetLearnMode] - callback id: 4 - status: Started - assigned node id: 2 -2024-09-06T11:03:40.870Z DRIVER handling request SetLearnMode (80) -2024-09-06T11:03:40.870Z DRIVER 1 handler registered! -2024-09-06T11:03:40.870Z DRIVER invoking handler #0 -2024-09-06T11:03:40.871Z DRIVER the message was handled -2024-09-06T11:03:41.007Z DRIVER all queues busy -2024-09-06T11:03:41.008Z SERIAL » 0x0103003bc7 (5 bytes) -2024-09-06T11:03:41.008Z DRIVER » [REQ] [GetBackgroundRSSI] -2024-09-06T11:03:41.014Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:41.015Z SERIAL « 0x0107013befb9b97f52 (9 bytes) -2024-09-06T11:03:41.016Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:41.017Z DRIVER « [RES] [GetBackgroundRSSI] - channel 0: -17 dBm - channel 1: -71 dBm - channel 2: -71 dBm - channel 3: N/A -2024-09-06T11:03:41.019Z DRIVER all queues idle -2024-09-06T11:03:41.391Z SERIAL « 0x01060049100100a1 (8 bytes) -2024-09-06T11:03:41.391Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:41.392Z DRIVER « [REQ] [ApplicationUpdateRequest] - type: SUC_IdChanged - SUC node ID: 1 -2024-09-06T11:03:41.407Z SERIAL « 0x0107005004050200ab (9 bytes) -2024-09-06T11:03:41.408Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:41.408Z DRIVER « [REQ] [SetLearnMode] - callback id: 4 - status: ProtocolDone - assigned node id: 2 -2024-09-06T11:03:41.408Z DRIVER handling request SetLearnMode (80) -2024-09-06T11:03:41.408Z DRIVER 1 handler registered! -2024-09-06T11:03:41.409Z DRIVER invoking handler #0 -2024-09-06T11:03:41.409Z DRIVER the message was handled -2024-09-06T11:03:41.409Z DRIVER waiting for security bootstrapping... -2024-09-06T11:03:41.410Z CNTRLR querying controller IDs... -2024-09-06T11:03:41.410Z DRIVER all queues busy -2024-09-06T11:03:41.411Z SERIAL » 0x01030020dc (5 bytes) -2024-09-06T11:03:41.411Z DRIVER » [REQ] [GetControllerId] -2024-09-06T11:03:41.416Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:41.417Z SERIAL « 0x01080120cab0fedc028c (10 bytes) -2024-09-06T11:03:41.417Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:41.418Z DRIVER « [RES] [GetControllerId] - home ID: 0xcab0fedc - own node ID: 2 -2024-09-06T11:03:41.418Z CNTRLR received controller IDs: - home ID: 0xcab0fedc - own node ID: 2 -2024-09-06T11:03:41.418Z DRIVER Joined network with home ID 0xcab0fedc, switching to new network cache... -2024-09-06T11:03:41.419Z CNTRLR querying controller capabilities... -2024-09-06T11:03:41.419Z SERIAL » 0x01030005f9 (5 bytes) -2024-09-06T11:03:41.419Z DRIVER » [REQ] [GetControllerCapabilities] -2024-09-06T11:03:41.425Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:41.426Z SERIAL « 0x0104010506f9 (6 bytes) -2024-09-06T11:03:41.426Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:41.426Z DRIVER « [RES] [GetControllerCapabilities] - payload: 0x06 -2024-09-06T11:03:41.427Z CNTRLR received controller capabilities: - controller role: Inclusion - is the SUC: false - started this network: false - SIS is present: true - was real primary: false -2024-09-06T11:03:41.427Z CNTRLR querying additional controller information... -2024-09-06T11:03:41.428Z SERIAL » 0x01030002fe (5 bytes) -2024-09-06T11:03:41.429Z DRIVER » [REQ] [GetSerialApiInitData] -2024-09-06T11:03:41.437Z SERIAL « [ACK] (0x06) -2024-09-06T11:03:41.438Z SERIAL « 0x012501020a001d030000000000000000000000000000000000000000000000000 (39 bytes) - 00000000800c5 -2024-09-06T11:03:41.438Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:41.439Z DRIVER « [RES] [GetSerialApiInitData] - payload: 0x0a001d03000000000000000000000000000000000000000000000000000000000 - 800 -2024-09-06T11:03:41.439Z CNTRLR received additional controller information: - Z-Wave API version: 1 (official) - Z-Wave chip type: EFR32ZG23 / ZGM230S - node type Controller - controller role: primary - controller is the SIS: false - controller supports timers: false - Z-Wave Classic nodes: 1, 2 -2024-09-06T11:03:41.440Z DRIVER all queues idle -2024-09-06T11:03:41.619Z SERIAL « 0x010b00a8000201029f0400d91f (13 bytes) -2024-09-06T11:03:41.620Z SERIAL » [ACK] (0x06) -2024-09-06T11:03:41.621Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -39 dBm - └─[Security2CCKEXGet] -2024-09-06T11:04:11.007Z DRIVER all queues busy -2024-09-06T11:04:11.008Z SERIAL » 0x0103003bc7 (5 bytes) -2024-09-06T11:04:11.008Z DRIVER » [REQ] [GetBackgroundRSSI] -2024-09-06T11:04:11.014Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:11.014Z SERIAL « 0x0107013b9896967f25 (9 bytes) -2024-09-06T11:04:11.014Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:11.015Z DRIVER « [RES] [GetBackgroundRSSI] - channel 0: -104 dBm - channel 1: -106 dBm - channel 2: -106 dBm - channel 3: N/A -2024-09-06T11:04:11.016Z DRIVER all queues idle -2024-09-06T11:04:18.610Z DRIVER ███████╗ ██╗ ██╗ █████╗ ██╗ ██╗ ███████╗ ██╗ ███████╗ - ╚══███╔╝ ██║ ██║ ██╔══██╗ ██║ ██║ ██╔════╝ ██║ ██╔════╝ - ███╔╝ █████╗ ██║ █╗ ██║ ███████║ ██║ ██║ █████╗ ██║ ███████╗ - ███╔╝ ╚════╝ ██║███╗██║ ██╔══██║ ╚██╗ ██╔╝ ██╔══╝ ██ ██║ ╚════██║ - ███████╗ ╚███╔███╔╝ ██║ ██║ ╚████╔╝ ███████╗ ╚█████╔╝ ███████║ - ╚══════╝ ╚══╝╚══╝ ╚═╝ ╚═╝ ╚═══╝ ╚══════╝ ╚════╝ ╚══════╝ -2024-09-06T11:04:18.610Z DRIVER version 13.2.0 -2024-09-06T11:04:18.610Z DRIVER -2024-09-06T11:04:18.610Z DRIVER starting driver... -2024-09-06T11:04:18.611Z DRIVER opening serial port /dev/serial/by-id/usb-Silicon_Labs_CP2102N_USB_to_UART_Bri - dge_Controller_ca4d95064355ee118d4d1294de9da576-if00-port0 -2024-09-06T11:04:18.619Z DRIVER serial port opened -2024-09-06T11:04:18.619Z SERIAL » 0x15 (1 bytes) -2024-09-06T11:04:19.626Z DRIVER loading configuration... -2024-09-06T11:04:19.628Z CONFIG version 13.2.0 -2024-09-06T11:04:19.945Z DRIVER beginning interview... -2024-09-06T11:04:19.946Z DRIVER added request handler for AddNodeToNetwork (0x4a)... - 1 registered -2024-09-06T11:04:19.946Z DRIVER added request handler for RemoveNodeFromNetwork (0x4b)... - 1 registered -2024-09-06T11:04:19.946Z DRIVER added request handler for ReplaceFailedNode (0x63)... - 1 registered -2024-09-06T11:04:19.947Z DRIVER added request handler for SetLearnMode (0x50)... - 1 registered -2024-09-06T11:04:19.947Z CNTRLR querying Serial API capabilities... -2024-09-06T11:04:19.955Z SERIAL » 0x01030007fb (5 bytes) -2024-09-06T11:04:19.955Z DRIVER » [REQ] [GetSerialApiCapabilities] -2024-09-06T11:04:19.965Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:19.966Z SERIAL « 0x012b01070716000000040004f6873e88cf2bc05ffbd7fde09700008000808680b (45 bytes) - a0500700000ee7fc000000041 -2024-09-06T11:04:19.967Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:19.967Z DRIVER « [RES] [GetSerialApiCapabilities] - payload: 0x0716000000040004f6873e88cf2bc05ffbd7fde09700008000808680ba0500700 - 000ee7fc0000000 -2024-09-06T11:04:19.970Z CNTRLR received API capabilities: - firmware version: 7.22 - manufacturer ID: 0x00 - product type: 0x04 - product ID: 0x04 - supported functions: - · GetSerialApiInitData (0x02) - · SetApplicationNodeInformation (0x03) - · GetControllerCapabilities (0x05) - · SetSerialApiTimeouts (0x06) - · GetSerialApiCapabilities (0x07) - · SoftReset (0x08) - · GetProtocolVersion (0x09) - · SerialAPIStarted (0x0a) - · SerialAPISetup (0x0b) - · SetRFReceiveMode (0x10) - · SendNodeInformation (0x12) - · SendData (0x13) - · SendDataMulticast (0x14) - · GetControllerVersion (0x15) - · SendDataAbort (0x16) - · FUNC_ID_ZW_GET_RANDOM (0x1c) - · GetControllerId (0x20) - · UNKNOWN_FUNC_MEMORY_GET_BYTE (0x21) - · UNKNOWN_FUNC_MEMORY_PUT_BYTE (0x22) - · UNKNOWN_FUNC_MEMORY_GET_BUFFER (0x23) - · UNKNOWN_FUNC_MEMORY_PUT_BUFFER (0x24) - · EnterBootloader (0x27) - · UNKNOWN_FUNC_UNKNOWN_0x28 (0x28) - · GetNVMId (0x29) - · ExtNVMReadLongBuffer (0x2a) - · ExtNVMReadLongByte (0x2c) - · NVMOperations (0x2e) - · ClearTxTimers (0x37) - · GetTxTimers (0x38) - · ClearNetworkStats (0x39) - · GetNetworkStats (0x3a) - · GetBackgroundRSSI (0x3b) - · SetListenBeforeTalkThreshold (0x3c) - · ExtendedNVMOperations (0x3d) - · RemoveSpecificNodeIdFromNetwork (0x3f) - · GetNodeProtocolInfo (0x41) - · HardReset (0x42) - · FUNC_ID_ZW_REPLICATION_COMMAND_COMPLETE (0x44) - · FUNC_ID_ZW_REPLICATION_SEND_DATA (0x45) - · AssignReturnRoute (0x46) - · DeleteReturnRoute (0x47) - · RequestNodeNeighborUpdate (0x48) - · ApplicationUpdateRequest (0x49) - · AddNodeToNetwork (0x4a) - · RemoveNodeFromNetwork (0x4b) - · AddPrimaryController (0x4d) - · AssignPriorityReturnRoute (0x4f) - · SetLearnMode (0x50) - · AssignSUCReturnRoute (0x51) - · RequestNetworkUpdate (0x53) - · SetSUCNodeId (0x54) - · DeleteSUCReturnRoute (0x55) - · GetSUCNodeId (0x56) - · SendSUCNodeId (0x57) - · AssignPrioritySUCReturnRoute (0x58) - · ExploreRequestInclusion (0x5e) - · ExploreRequestExclusion (0x5f) - · RequestNodeInfo (0x60) - · RemoveFailedNode (0x61) - · IsFailedNode (0x62) - · ReplaceFailedNode (0x63) - · undefined (0x65) - · RequestProtocolCCEncryption (0x68) - · GetRoutingInfo (0x80) - · LockUnlockLastRoute (0x90) - · GetPriorityRoute (0x92) - · SetPriorityRoute (0x93) - · UNKNOWN_FUNC_UNKNOWN_0x98 (0x98) - · VirtualNodeSetNodeInfo (0xa0) - · VirtualNodeSendNodeInfo (0xa2) - · VirtualNodeSetLearnMode (0xa4) - · GetVirtualNodes (0xa5) - · IsVirtualNode (0xa6) - · BridgeApplicationCommand (0xa8) - · SendDataBridge (0xa9) - · SendDataMulticastBridge (0xab) - · GetLibrary (0xbd) - · SendTestFrame (0xbe) - · GetProtocolStatus (0xbf) - · StartWatchdog (0xd2) - · StopWatchdog (0xd3) - · SetMaximumRoutingAttempts (0xd4) - · SetMaxSmartStartInclusionRequestInterval (0xd6) - · undefined (0xd7) - · undefined (0xd8) - · Shutdown (0xd9) - · GetLongRangeNodes (0xda) - · GetLongRangeChannel (0xdb) - · SetLongRangeChannel (0xdc) - · SetLongRangeShadowNodeIDs (0xdd) - · Proprietary_DE (0xde) - · Proprietary_DF (0xdf) - · Proprietary_E7 (0xe7) - · Proprietary_E8 (0xe8) -2024-09-06T11:04:19.970Z CNTRLR querying additional controller information... -2024-09-06T11:04:19.972Z SERIAL » 0x01030002fe (5 bytes) -2024-09-06T11:04:19.972Z DRIVER » [REQ] [GetSerialApiInitData] -2024-09-06T11:04:19.981Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:19.981Z SERIAL « 0x012501020a001d030000000000000000000000000000000000000000000000000 (39 bytes) - 00000000800c5 -2024-09-06T11:04:19.982Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:19.982Z DRIVER « [RES] [GetSerialApiInitData] - payload: 0x0a001d03000000000000000000000000000000000000000000000000000000000 - 800 -2024-09-06T11:04:19.983Z CNTRLR received additional controller information: - Z-Wave API version: 1 (official) - Z-Wave chip type: EFR32ZG23 / ZGM230S - node type Controller - controller role: primary - controller is the SIS: false - controller supports timers: false - Z-Wave Classic nodes: 1, 2 -2024-09-06T11:04:19.983Z CNTRLR querying version info... -2024-09-06T11:04:19.984Z SERIAL » 0x01030015e9 (5 bytes) -2024-09-06T11:04:19.984Z DRIVER » [REQ] [GetControllerVersion] -2024-09-06T11:04:19.992Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:19.992Z SERIAL « 0x011001155a2d5761766520372e3232000797 (18 bytes) -2024-09-06T11:04:19.993Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:19.994Z DRIVER « [RES] [GetControllerVersion] - payload: 0x5a2d5761766520372e32320007 -2024-09-06T11:04:19.994Z CNTRLR received version info: - controller type: Bridge Controller - library version: Z-Wave 7.22 -2024-09-06T11:04:19.995Z CNTRLR querying protocol version info... -2024-09-06T11:04:19.995Z SERIAL » 0x01030009f5 (5 bytes) -2024-09-06T11:04:19.996Z DRIVER » [REQ] [GetProtocolVersion] -2024-09-06T11:04:20.002Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:20.003Z SERIAL « 0x0119010900071601abcd63636639623665613165616566313162c3 (27 bytes) -2024-09-06T11:04:20.003Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:20.003Z DRIVER « [RES] [GetProtocolVersion] - payload: 0x00071601abcd63636639623665613165616566313162 -2024-09-06T11:04:20.004Z CNTRLR received protocol version info: - protocol type: Z-Wave - protocol version: 7.22.1 - appl. framework build no.: 43981 - git commit hash: 63636639623665613165616566313162 -2024-09-06T11:04:20.004Z CNTRLR querying controller capabilities... -2024-09-06T11:04:20.005Z SERIAL » 0x01030005f9 (5 bytes) -2024-09-06T11:04:20.006Z DRIVER » [REQ] [GetControllerCapabilities] -2024-09-06T11:04:20.011Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:20.011Z SERIAL « 0x0104010506f9 (6 bytes) -2024-09-06T11:04:20.012Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:20.012Z DRIVER « [RES] [GetControllerCapabilities] - payload: 0x06 -2024-09-06T11:04:20.013Z CNTRLR received controller capabilities: - controller role: Inclusion - is the SUC: false - started this network: false - SIS is present: true - was real primary: false -2024-09-06T11:04:20.013Z CNTRLR querying serial API setup capabilities... -2024-09-06T11:04:20.014Z SERIAL » 0x0104000b01f1 (6 bytes) -2024-09-06T11:04:20.015Z DRIVER » [REQ] [SerialAPISetup] - command: GetSupportedCommands - payload: 0x01 -2024-09-06T11:04:20.021Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:20.021Z SERIAL « 0x0116010b01ff9f8007800000008000000000000000800085 (24 bytes) -2024-09-06T11:04:20.022Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:20.022Z DRIVER « [RES] [SerialAPISetup] - command: GetSupportedCommands - payload: 0xff9f80078000000080000000000000008000 -2024-09-06T11:04:20.023Z CNTRLR supported serial API setup commands: - · GetSupportedCommands - · SetTxStatusReport - · SetLongRangeMaximumTxPower - · SetPowerlevel - · GetLongRangeMaximumTxPower - · GetPowerlevel - · GetMaximumPayloadSize - · GetLongRangeMaximumPayloadSize - · SetPowerlevel16Bit - · GetPowerlevel16Bit - · GetRFRegion - · SetRFRegion - · SetNodeIDType -2024-09-06T11:04:20.023Z CNTRLR querying max. payload size... -2024-09-06T11:04:20.024Z SERIAL » 0x0104000b10e0 (6 bytes) -2024-09-06T11:04:20.024Z DRIVER » [REQ] [SerialAPISetup] - command: GetMaximumPayloadSize - payload: 0x10 -2024-09-06T11:04:20.029Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:20.029Z SERIAL « 0x0105010b102ece (7 bytes) -2024-09-06T11:04:20.030Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:20.030Z DRIVER « [RES] [SerialAPISetup] - command: GetMaximumPayloadSize - maximum payload size: 46 bytes -2024-09-06T11:04:20.031Z CNTRLR maximum payload size: 46 bytes -2024-09-06T11:04:20.031Z CNTRLR supported Z-Wave features: - · SmartStart -2024-09-06T11:04:20.032Z CNTRLR Querying configured RF region... -2024-09-06T11:04:20.032Z SERIAL » 0x0104000b20d0 (6 bytes) -2024-09-06T11:04:20.033Z DRIVER » [REQ] [SerialAPISetup] - command: GetRFRegion - payload: 0x20 -2024-09-06T11:04:20.038Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:20.039Z SERIAL « 0x0105010b2000d0 (7 bytes) -2024-09-06T11:04:20.039Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:20.040Z DRIVER « [RES] [SerialAPISetup] - command: GetRFRegion - region: Europe -2024-09-06T11:04:20.040Z CNTRLR The controller is using RF region Europe -2024-09-06T11:04:20.040Z CNTRLR Querying configured max. Long Range powerlevel... -2024-09-06T11:04:20.041Z SERIAL » 0x0104000b05f5 (6 bytes) -2024-09-06T11:04:20.041Z DRIVER » [REQ] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - payload: 0x05 -2024-09-06T11:04:20.046Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:20.047Z SERIAL « 0x0106010b05008c7a (8 bytes) -2024-09-06T11:04:20.047Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:20.047Z DRIVER « [RES] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - max. TX power (LR): 14.0 dBm -2024-09-06T11:04:20.048Z CNTRLR The max. LR powerlevel is 14.0 dBm -2024-09-06T11:04:20.048Z CNTRLR Querying configured Long Range channel information... -2024-09-06T11:04:20.049Z SERIAL » 0x010300db27 (5 bytes) -2024-09-06T11:04:20.049Z DRIVER » [REQ] [GetLongRangeChannel] -2024-09-06T11:04:20.054Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:20.054Z SERIAL « 0x010501db001030 (7 bytes) -2024-09-06T11:04:20.055Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:20.055Z DRIVER « [RES] [GetLongRangeChannel] - payload: 0x0010 -2024-09-06T11:04:20.056Z CNTRLR received Z-Wave Long Range channel information: - channel: Unsupported - supports auto channel selection: true -2024-09-06T11:04:20.056Z CNTRLR Performing soft reset... -2024-09-06T11:04:20.057Z SERIAL » 0x01030008f4 (5 bytes) -2024-09-06T11:04:20.057Z DRIVER » [REQ] [SoftReset] -2024-09-06T11:04:20.062Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:20.062Z CNTRLR Waiting for the controller to reconnect... -2024-09-06T11:04:20.063Z DRIVER all queues idle -2024-09-06T11:04:20.170Z SERIAL « 0x0116000a0700010100085e989f556c568f7400031d00003f (24 bytes) -2024-09-06T11:04:20.172Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:20.174Z DRIVER « [REQ] [SerialAPIStarted] - wake up reason: SoftwareReset - watchdog enabled: false - generic device class: 0x01 - specific device class: 0x00 - always listening: false - supports Long Range: false -2024-09-06T11:04:20.176Z CNTRLR reconnected and restarted -2024-09-06T11:04:20.176Z CNTRLR Starting hardware watchdog... -2024-09-06T11:04:20.177Z CNTRLR Switching serial API to 16-bit node IDs... -2024-09-06T11:04:20.178Z CNTRLR Switching serial API to 8-bit node IDs... -2024-09-06T11:04:20.180Z DRIVER all queues busy -2024-09-06T11:04:20.181Z SERIAL » 0x010300d22e (5 bytes) -2024-09-06T11:04:20.181Z DRIVER » [REQ] [StartWatchdog] -2024-09-06T11:04:20.183Z SERIAL » 0x0105000b800273 (7 bytes) -2024-09-06T11:04:20.184Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 16 bit -2024-09-06T11:04:20.185Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:20.189Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:20.190Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T11:04:20.190Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:20.191Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T11:04:20.192Z CNTRLR Switching to 16-bit node IDs successful -2024-09-06T11:04:20.193Z SERIAL » 0x0105000b800170 (7 bytes) -2024-09-06T11:04:20.193Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 8 bit -2024-09-06T11:04:20.198Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:20.199Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T11:04:20.199Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:20.199Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T11:04:20.200Z CNTRLR Switching to 8-bit node IDs successful -2024-09-06T11:04:20.200Z CNTRLR querying controller IDs... -2024-09-06T11:04:20.201Z SERIAL » 0x01030020dc (5 bytes) -2024-09-06T11:04:20.201Z DRIVER » [REQ] [GetControllerId] -2024-09-06T11:04:20.206Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:20.207Z SERIAL « 0x01080120cab0fedc028c (10 bytes) -2024-09-06T11:04:20.207Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:20.208Z DRIVER « [RES] [GetControllerId] - home ID: 0xcab0fedc - own node ID: 2 -2024-09-06T11:04:20.208Z CNTRLR received controller IDs: - home ID: 0xcab0fedc - own node ID: 2 -2024-09-06T11:04:20.208Z CNTRLR Enabling TX status report... -2024-09-06T11:04:20.209Z SERIAL » 0x0105000b02ff0c (7 bytes) -2024-09-06T11:04:20.210Z DRIVER » [REQ] [SerialAPISetup] - command: SetTxStatusReport - enabled: true -2024-09-06T11:04:20.214Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:20.215Z SERIAL « 0x0105010b0201f3 (7 bytes) -2024-09-06T11:04:20.215Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:20.216Z DRIVER « [RES] [SerialAPISetup] - command: SetTxStatusReport - success: true -2024-09-06T11:04:20.216Z CNTRLR Enabling TX status report successful... -2024-09-06T11:04:20.216Z CNTRLR finding SUC... -2024-09-06T11:04:20.217Z SERIAL » 0x01030056aa (5 bytes) -2024-09-06T11:04:20.217Z DRIVER » [REQ] [GetSUCNodeId] -2024-09-06T11:04:20.222Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:20.222Z SERIAL « 0x0104015601ad (6 bytes) -2024-09-06T11:04:20.222Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:20.223Z DRIVER « [RES] [GetSUCNodeId] - payload: 0x01 -2024-09-06T11:04:20.223Z CNTRLR SUC has node ID 1 -2024-09-06T11:04:20.224Z DRIVER all queues idle -2024-09-06T11:04:20.234Z DRIVER Cache file for homeId 0xcab0fedc found, attempting to restore the network from - cache... -2024-09-06T11:04:20.235Z DRIVER Restoring the network from cache was successful! -2024-09-06T11:04:20.236Z CNTRLR [Node 002] [Manufacturer Specific] manufacturerId: metadata updated -2024-09-06T11:04:20.237Z CNTRLR [Node 002] [Manufacturer Specific] productType: metadata updated -2024-09-06T11:04:20.237Z CNTRLR [Node 002] [Manufacturer Specific] productId: metadata updated -2024-09-06T11:04:20.238Z CNTRLR [Node 002] [+] [Manufacturer Specific] manufacturerId: 0 -2024-09-06T11:04:20.238Z CNTRLR [Node 002] [+] [Manufacturer Specific] productType: 4 -2024-09-06T11:04:20.238Z CNTRLR [Node 002] [+] [Manufacturer Specific] productId: 4 -2024-09-06T11:04:20.238Z CNTRLR [Node 002] [Version] firmwareVersions: metadata updated -2024-09-06T11:04:20.239Z CNTRLR [Node 002] [+] [Version] firmwareVersions: 7.22 -2024-09-06T11:04:20.239Z CNTRLR [Node 002] [Version] zWaveProtocolVersion: metadata updated -2024-09-06T11:04:20.239Z CNTRLR [Node 002] [+] [Version] zWaveProtocolVersion: "7.22.1" -2024-09-06T11:04:20.239Z CNTRLR [Node 002] [Version] sdkVersion: metadata updated -2024-09-06T11:04:20.239Z CNTRLR [Node 002] [+] [Version] sdkVersion: "7.22.1" -2024-09-06T11:04:20.239Z CNTRLR Interview completed -2024-09-06T11:04:20.239Z DRIVER No network key for S0 found in cache, communication with secure (S0) devices w - on't work! -2024-09-06T11:04:20.240Z DRIVER No network key for S2 found in cache, communication with secure (S2) devices w - on't work! -2024-09-06T11:04:20.240Z DRIVER driver ready -2024-09-06T11:04:20.241Z CNTRLR [Node 002] Beginning interview - last completed stage: None -2024-09-06T11:04:20.241Z CNTRLR [Node 002] new node, doing a full interview... -2024-09-06T11:04:20.241Z CNTRLR » [Node 002] querying protocol info... -2024-09-06T11:04:20.242Z DRIVER all queues busy -2024-09-06T11:04:20.243Z SERIAL » 0x0104004102b8 (6 bytes) -2024-09-06T11:04:20.243Z DRIVER » [REQ] [GetNodeProtocolInfo] - payload: 0x02 -2024-09-06T11:04:20.249Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:20.249Z SERIAL « 0x010a0141d3960102010000f2 (12 bytes) -2024-09-06T11:04:20.249Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:20.250Z DRIVER « [RES] [GetNodeProtocolInfo] - payload: 0xd3960102010000 -2024-09-06T11:04:20.250Z CNTRLR « [Node 002] received response for protocol info: - basic device class: Static Controller - generic device class: Remote Controller - specific device class: Unused - node type: Controller - is always listening: true - is frequent listening: false - can route messages: true - supports security: false - supports beaming: true - maximum data rate: 100000 kbps - protocol version: 3 -2024-09-06T11:04:20.251Z CNTRLR [Node 002] Interview stage completed: ProtocolInfo -2024-09-06T11:04:20.252Z DRIVER all queues idle -2024-09-06T11:04:20.258Z CNTRLR [Node 002] Embedded device config loaded -2024-09-06T11:04:20.258Z CNTRLR [Node 002] Interview stage completed: OverwriteConfig -2024-09-06T11:04:20.259Z CNTRLR [Node 002] Interview completed -2024-09-06T11:04:20.259Z CNTRLR [Node 002] The node is ready to be used -2024-09-06T11:04:20.260Z CNTRLR [Node 002] The node is alive. -2024-09-06T11:04:20.260Z CNTRLR » [Node 001] querying protocol info... -2024-09-06T11:04:20.260Z DRIVER all queues busy -2024-09-06T11:04:20.261Z SERIAL » 0x0104004101bb (6 bytes) -2024-09-06T11:04:20.261Z DRIVER » [REQ] [GetNodeProtocolInfo] - payload: 0x01 -2024-09-06T11:04:20.267Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:20.267Z SERIAL « 0x010a0141d3960102010000f2 (12 bytes) -2024-09-06T11:04:20.267Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:20.268Z DRIVER « [RES] [GetNodeProtocolInfo] - payload: 0xd3960102010000 -2024-09-06T11:04:20.268Z CNTRLR « [Node 001] received response for protocol info: - basic device class: Static Controller - generic device class: Remote Controller - specific device class: Unused - node type: Controller - is always listening: true - is frequent listening: false - can route messages: true - supports security: false - supports beaming: true - maximum data rate: 100000 kbps - protocol version: 3 -2024-09-06T11:04:20.268Z CNTRLR [Node 001] Interview stage completed: ProtocolInfo -2024-09-06T11:04:20.269Z CNTRLR Determining node status: 1 -2024-09-06T11:04:20.269Z CNTRLR » [Node 001] pinging the node... -2024-09-06T11:04:20.271Z SERIAL » 0x010d00a9020101002500000000017d (15 bytes) -2024-09-06T11:04:20.271Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 1 - └─[NoOperationCC] -2024-09-06T11:04:20.276Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:20.279Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:04:20.279Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:20.280Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:04:20.297Z SERIAL « 0x011d00a90100000100d87f7f7f7f00000300000000030100007f7f7f7f7fed (31 bytes) -2024-09-06T11:04:20.298Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:20.299Z DRIVER « [REQ] [SendDataBridge] - callback id: 1 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -40 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:04:20.300Z CNTRLR [Node 001] The node is alive. -2024-09-06T11:04:20.300Z CNTRLR « [Node 001] ping successful -2024-09-06T11:04:20.300Z DRIVER all queues idle -2024-09-06T11:04:25.240Z CNTRLR Updating the controller NIF... -2024-09-06T11:04:25.241Z DRIVER all queues busy -2024-09-06T11:04:25.243Z SERIAL » 0x010f0003010100085e989f556c568f7436 (17 bytes) -2024-09-06T11:04:25.244Z DRIVER » [REQ] [SetApplicationNodeInformation] - is listening: true - generic device class: 0x01 - specific device class: 0x00 - supported CCs: - · Z-Wave Plus Info - · Security - · Security 2 - · Transport Service - · Supervision - · CRC-16 Encapsulation - · Multi Command - · Inclusion Controller - controlled CCs: -2024-09-06T11:04:25.252Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:25.255Z CNTRLR performing hard reset... -2024-09-06T11:04:25.256Z SERIAL » 0x0104004202bb (6 bytes) -2024-09-06T11:04:25.257Z DRIVER » [REQ] [HardReset] - callback id: 2 -2024-09-06T11:04:25.260Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:25.302Z SERIAL « 0x0104004202bb (6 bytes) -2024-09-06T11:04:25.303Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:25.304Z DRIVER « [REQ] [HardReset] - callback id: 2 -2024-09-06T11:04:25.306Z CNTRLR hard reset succeeded -2024-09-06T11:04:25.306Z CNTRLR querying Serial API capabilities... -2024-09-06T11:04:25.308Z SERIAL » 0x01030007fb (5 bytes) -2024-09-06T11:04:25.309Z DRIVER » [REQ] [GetSerialApiCapabilities] -2024-09-06T11:04:25.318Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:25.319Z SERIAL « 0x012b01070716000000040004f6873e88cf2bc05ffbd7fde09700008000808680b (45 bytes) - a0500700000ee7fc000000041 -2024-09-06T11:04:25.319Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:25.320Z DRIVER « [RES] [GetSerialApiCapabilities] - payload: 0x0716000000040004f6873e88cf2bc05ffbd7fde09700008000808680ba0500700 - 000ee7fc0000000 -2024-09-06T11:04:25.322Z CNTRLR received API capabilities: - firmware version: 7.22 - manufacturer ID: 0x00 - product type: 0x04 - product ID: 0x04 - supported functions: - · GetSerialApiInitData (0x02) - · SetApplicationNodeInformation (0x03) - · GetControllerCapabilities (0x05) - · SetSerialApiTimeouts (0x06) - · GetSerialApiCapabilities (0x07) - · SoftReset (0x08) - · GetProtocolVersion (0x09) - · SerialAPIStarted (0x0a) - · SerialAPISetup (0x0b) - · SetRFReceiveMode (0x10) - · SendNodeInformation (0x12) - · SendData (0x13) - · SendDataMulticast (0x14) - · GetControllerVersion (0x15) - · SendDataAbort (0x16) - · FUNC_ID_ZW_GET_RANDOM (0x1c) - · GetControllerId (0x20) - · UNKNOWN_FUNC_MEMORY_GET_BYTE (0x21) - · UNKNOWN_FUNC_MEMORY_PUT_BYTE (0x22) - · UNKNOWN_FUNC_MEMORY_GET_BUFFER (0x23) - · UNKNOWN_FUNC_MEMORY_PUT_BUFFER (0x24) - · EnterBootloader (0x27) - · UNKNOWN_FUNC_UNKNOWN_0x28 (0x28) - · GetNVMId (0x29) - · ExtNVMReadLongBuffer (0x2a) - · ExtNVMReadLongByte (0x2c) - · NVMOperations (0x2e) - · ClearTxTimers (0x37) - · GetTxTimers (0x38) - · ClearNetworkStats (0x39) - · GetNetworkStats (0x3a) - · GetBackgroundRSSI (0x3b) - · SetListenBeforeTalkThreshold (0x3c) - · ExtendedNVMOperations (0x3d) - · RemoveSpecificNodeIdFromNetwork (0x3f) - · GetNodeProtocolInfo (0x41) - · HardReset (0x42) - · FUNC_ID_ZW_REPLICATION_COMMAND_COMPLETE (0x44) - · FUNC_ID_ZW_REPLICATION_SEND_DATA (0x45) - · AssignReturnRoute (0x46) - · DeleteReturnRoute (0x47) - · RequestNodeNeighborUpdate (0x48) - · ApplicationUpdateRequest (0x49) - · AddNodeToNetwork (0x4a) - · RemoveNodeFromNetwork (0x4b) - · AddPrimaryController (0x4d) - · AssignPriorityReturnRoute (0x4f) - · SetLearnMode (0x50) - · AssignSUCReturnRoute (0x51) - · RequestNetworkUpdate (0x53) - · SetSUCNodeId (0x54) - · DeleteSUCReturnRoute (0x55) - · GetSUCNodeId (0x56) - · SendSUCNodeId (0x57) - · AssignPrioritySUCReturnRoute (0x58) - · ExploreRequestInclusion (0x5e) - · ExploreRequestExclusion (0x5f) - · RequestNodeInfo (0x60) - · RemoveFailedNode (0x61) - · IsFailedNode (0x62) - · ReplaceFailedNode (0x63) - · undefined (0x65) - · RequestProtocolCCEncryption (0x68) - · GetRoutingInfo (0x80) - · LockUnlockLastRoute (0x90) - · GetPriorityRoute (0x92) - · SetPriorityRoute (0x93) - · UNKNOWN_FUNC_UNKNOWN_0x98 (0x98) - · VirtualNodeSetNodeInfo (0xa0) - · VirtualNodeSendNodeInfo (0xa2) - · VirtualNodeSetLearnMode (0xa4) - · GetVirtualNodes (0xa5) - · IsVirtualNode (0xa6) - · BridgeApplicationCommand (0xa8) - · SendDataBridge (0xa9) - · SendDataMulticastBridge (0xab) - · GetLibrary (0xbd) - · SendTestFrame (0xbe) - · GetProtocolStatus (0xbf) - · StartWatchdog (0xd2) - · StopWatchdog (0xd3) - · SetMaximumRoutingAttempts (0xd4) - · SetMaxSmartStartInclusionRequestInterval (0xd6) - · undefined (0xd7) - · undefined (0xd8) - · Shutdown (0xd9) - · GetLongRangeNodes (0xda) - · GetLongRangeChannel (0xdb) - · SetLongRangeChannel (0xdc) - · SetLongRangeShadowNodeIDs (0xdd) - · Proprietary_DE (0xde) - · Proprietary_DF (0xdf) - · Proprietary_E7 (0xe7) - · Proprietary_E8 (0xe8) -2024-09-06T11:04:25.322Z CNTRLR querying additional controller information... -2024-09-06T11:04:25.324Z SERIAL » 0x01030002fe (5 bytes) -2024-09-06T11:04:25.325Z DRIVER » [REQ] [GetSerialApiInitData] -2024-09-06T11:04:25.333Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:25.335Z SERIAL « 0x012501020a001d010000000000000000000000000000000000000000000000000 (39 bytes) - 00000000800c7 -2024-09-06T11:04:25.335Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:25.337Z DRIVER « [RES] [GetSerialApiInitData] - payload: 0x0a001d01000000000000000000000000000000000000000000000000000000000 - 800 -2024-09-06T11:04:25.338Z CNTRLR received additional controller information: - Z-Wave API version: 1 (official) - Z-Wave chip type: EFR32ZG23 / ZGM230S - node type Controller - controller role: primary - controller is the SIS: false - controller supports timers: false - Z-Wave Classic nodes: 1 -2024-09-06T11:04:25.338Z CNTRLR querying version info... -2024-09-06T11:04:25.339Z SERIAL » 0x01030015e9 (5 bytes) -2024-09-06T11:04:25.340Z DRIVER » [REQ] [GetControllerVersion] -2024-09-06T11:04:25.346Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:25.347Z SERIAL « 0x011001155a2d5761766520372e3232000797 (18 bytes) -2024-09-06T11:04:25.347Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:25.348Z DRIVER « [RES] [GetControllerVersion] - payload: 0x5a2d5761766520372e32320007 -2024-09-06T11:04:25.349Z CNTRLR received version info: - controller type: Bridge Controller - library version: Z-Wave 7.22 -2024-09-06T11:04:25.349Z CNTRLR querying protocol version info... -2024-09-06T11:04:25.350Z SERIAL » 0x01030009f5 (5 bytes) -2024-09-06T11:04:25.350Z DRIVER » [REQ] [GetProtocolVersion] -2024-09-06T11:04:25.357Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:25.357Z SERIAL « 0x0119010900071601abcd63636639623665613165616566313162c3 (27 bytes) -2024-09-06T11:04:25.358Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:25.358Z DRIVER « [RES] [GetProtocolVersion] - payload: 0x00071601abcd63636639623665613165616566313162 -2024-09-06T11:04:25.359Z CNTRLR received protocol version info: - protocol type: Z-Wave - protocol version: 7.22.1 - appl. framework build no.: 43981 - git commit hash: 63636639623665613165616566313162 -2024-09-06T11:04:25.359Z CNTRLR querying controller capabilities... -2024-09-06T11:04:25.360Z SERIAL » 0x01030005f9 (5 bytes) -2024-09-06T11:04:25.361Z DRIVER » [REQ] [GetControllerCapabilities] -2024-09-06T11:04:25.366Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:25.366Z SERIAL « 0x0104010528d7 (6 bytes) -2024-09-06T11:04:25.366Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:25.367Z DRIVER « [RES] [GetControllerCapabilities] - payload: 0x28 -2024-09-06T11:04:25.368Z CNTRLR received controller capabilities: - controller role: Primary - is the SUC: false - started this network: true - SIS is present: false - was real primary: true -2024-09-06T11:04:25.368Z CNTRLR querying serial API setup capabilities... -2024-09-06T11:04:25.368Z SERIAL » 0x0104000b01f1 (6 bytes) -2024-09-06T11:04:25.369Z DRIVER » [REQ] [SerialAPISetup] - command: GetSupportedCommands - payload: 0x01 -2024-09-06T11:04:25.375Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:25.376Z SERIAL « 0x0116010b01ff9f8007800000008000000000000000800085 (24 bytes) -2024-09-06T11:04:25.376Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:25.377Z DRIVER « [RES] [SerialAPISetup] - command: GetSupportedCommands - payload: 0xff9f80078000000080000000000000008000 -2024-09-06T11:04:25.377Z CNTRLR supported serial API setup commands: - · GetSupportedCommands - · SetTxStatusReport - · SetLongRangeMaximumTxPower - · SetPowerlevel - · GetLongRangeMaximumTxPower - · GetPowerlevel - · GetMaximumPayloadSize - · GetLongRangeMaximumPayloadSize - · SetPowerlevel16Bit - · GetPowerlevel16Bit - · GetRFRegion - · SetRFRegion - · SetNodeIDType -2024-09-06T11:04:25.377Z CNTRLR querying max. payload size... -2024-09-06T11:04:25.378Z SERIAL » 0x0104000b10e0 (6 bytes) -2024-09-06T11:04:25.379Z DRIVER » [REQ] [SerialAPISetup] - command: GetMaximumPayloadSize - payload: 0x10 -2024-09-06T11:04:25.384Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:25.384Z SERIAL « 0x0105010b102ece (7 bytes) -2024-09-06T11:04:25.384Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:25.385Z DRIVER « [RES] [SerialAPISetup] - command: GetMaximumPayloadSize - maximum payload size: 46 bytes -2024-09-06T11:04:25.386Z CNTRLR maximum payload size: 46 bytes -2024-09-06T11:04:25.386Z CNTRLR supported Z-Wave features: - · SmartStart -2024-09-06T11:04:25.386Z CNTRLR Querying configured RF region... -2024-09-06T11:04:25.387Z SERIAL » 0x0104000b20d0 (6 bytes) -2024-09-06T11:04:25.387Z DRIVER » [REQ] [SerialAPISetup] - command: GetRFRegion - payload: 0x20 -2024-09-06T11:04:25.393Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:25.394Z SERIAL « 0x0105010b2000d0 (7 bytes) -2024-09-06T11:04:25.394Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:25.395Z DRIVER « [RES] [SerialAPISetup] - command: GetRFRegion - region: Europe -2024-09-06T11:04:25.396Z CNTRLR The controller is using RF region Europe -2024-09-06T11:04:25.396Z CNTRLR Querying configured max. Long Range powerlevel... -2024-09-06T11:04:25.397Z SERIAL » 0x0104000b05f5 (6 bytes) -2024-09-06T11:04:25.397Z DRIVER » [REQ] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - payload: 0x05 -2024-09-06T11:04:25.402Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:25.402Z SERIAL « 0x0106010b05008c7a (8 bytes) -2024-09-06T11:04:25.403Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:25.403Z DRIVER « [RES] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - max. TX power (LR): 14.0 dBm -2024-09-06T11:04:25.404Z CNTRLR The max. LR powerlevel is 14.0 dBm -2024-09-06T11:04:25.404Z CNTRLR Querying configured Long Range channel information... -2024-09-06T11:04:25.405Z SERIAL » 0x010300db27 (5 bytes) -2024-09-06T11:04:25.405Z DRIVER » [REQ] [GetLongRangeChannel] -2024-09-06T11:04:25.410Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:25.411Z SERIAL « 0x010501db001030 (7 bytes) -2024-09-06T11:04:25.411Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:25.411Z DRIVER « [RES] [GetLongRangeChannel] - payload: 0x0010 -2024-09-06T11:04:25.412Z CNTRLR received Z-Wave Long Range channel information: - channel: Unsupported - supports auto channel selection: true -2024-09-06T11:04:25.412Z CNTRLR Performing soft reset... -2024-09-06T11:04:25.413Z SERIAL » 0x01030008f4 (5 bytes) -2024-09-06T11:04:25.413Z DRIVER » [REQ] [SoftReset] -2024-09-06T11:04:25.417Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:25.418Z CNTRLR Waiting for the controller to reconnect... -2024-09-06T11:04:25.418Z DRIVER all queues idle -2024-09-06T11:04:25.530Z SERIAL « 0x0116000a0700010100085e989f556c568f7400031d00003f (24 bytes) -2024-09-06T11:04:25.531Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:25.533Z DRIVER « [REQ] [SerialAPIStarted] - wake up reason: SoftwareReset - watchdog enabled: false - generic device class: 0x01 - specific device class: 0x00 - always listening: false - supports Long Range: false -2024-09-06T11:04:25.533Z CNTRLR reconnected and restarted -2024-09-06T11:04:25.534Z CNTRLR Starting hardware watchdog... -2024-09-06T11:04:25.534Z CNTRLR Switching serial API to 16-bit node IDs... -2024-09-06T11:04:25.535Z CNTRLR Switching serial API to 8-bit node IDs... -2024-09-06T11:04:25.535Z DRIVER all queues busy -2024-09-06T11:04:25.536Z SERIAL » 0x010300d22e (5 bytes) -2024-09-06T11:04:25.537Z DRIVER » [REQ] [StartWatchdog] -2024-09-06T11:04:25.539Z SERIAL » 0x0105000b800273 (7 bytes) -2024-09-06T11:04:25.540Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 16 bit -2024-09-06T11:04:25.542Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:25.545Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:25.546Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T11:04:25.546Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:25.547Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T11:04:25.549Z CNTRLR Switching to 16-bit node IDs successful -2024-09-06T11:04:25.550Z SERIAL » 0x0105000b800170 (7 bytes) -2024-09-06T11:04:25.551Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 8 bit -2024-09-06T11:04:25.556Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:25.556Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T11:04:25.557Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:25.557Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T11:04:25.558Z CNTRLR Switching to 8-bit node IDs successful -2024-09-06T11:04:25.558Z CNTRLR querying controller IDs... -2024-09-06T11:04:25.558Z SERIAL » 0x01030020dc (5 bytes) -2024-09-06T11:04:25.559Z DRIVER » [REQ] [GetControllerId] -2024-09-06T11:04:25.564Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:25.564Z SERIAL « 0x01080120f4d01c2701c8 (10 bytes) -2024-09-06T11:04:25.564Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:25.565Z DRIVER « [RES] [GetControllerId] - home ID: 0xf4d01c27 - own node ID: 1 -2024-09-06T11:04:25.565Z CNTRLR received controller IDs: - home ID: 0xf4d01c27 - own node ID: 1 -2024-09-06T11:04:25.566Z CNTRLR Enabling TX status report... -2024-09-06T11:04:25.566Z SERIAL » 0x0105000b02ff0c (7 bytes) -2024-09-06T11:04:25.567Z DRIVER » [REQ] [SerialAPISetup] - command: SetTxStatusReport - enabled: true -2024-09-06T11:04:25.572Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:25.573Z SERIAL « 0x0105010b0201f3 (7 bytes) -2024-09-06T11:04:25.573Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:25.573Z DRIVER « [RES] [SerialAPISetup] - command: SetTxStatusReport - success: true -2024-09-06T11:04:25.574Z CNTRLR Enabling TX status report successful... -2024-09-06T11:04:25.574Z CNTRLR finding SUC... -2024-09-06T11:04:25.575Z SERIAL » 0x01030056aa (5 bytes) -2024-09-06T11:04:25.575Z DRIVER » [REQ] [GetSUCNodeId] -2024-09-06T11:04:25.580Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:25.581Z SERIAL « 0x0104015600ac (6 bytes) -2024-09-06T11:04:25.581Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:25.582Z DRIVER « [RES] [GetSUCNodeId] - payload: 0x00 -2024-09-06T11:04:25.583Z CNTRLR No SUC present in the network -2024-09-06T11:04:25.583Z CNTRLR There is no SUC/SIS in the network - promoting ourselves... -2024-09-06T11:04:25.583Z SERIAL » 0x01080054010125010384 (10 bytes) -2024-09-06T11:04:25.584Z DRIVER » [REQ] [SetSUCNodeId] - payload: 0x0101250103 -2024-09-06T11:04:25.590Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:25.591Z SERIAL « 0x0104015401af (6 bytes) -2024-09-06T11:04:25.591Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:25.592Z DRIVER « [RES] [SetSUCNodeId] - was executed: true -2024-09-06T11:04:25.592Z CNTRLR Promotion to SUC/SIS succeeded. -2024-09-06T11:04:25.593Z DRIVER all queues idle -2024-09-06T11:04:25.597Z CNTRLR [Node 001] [Manufacturer Specific] manufacturerId: metadata updated -2024-09-06T11:04:25.597Z CNTRLR [Node 001] [Manufacturer Specific] productType: metadata updated -2024-09-06T11:04:25.597Z CNTRLR [Node 001] [Manufacturer Specific] productId: metadata updated -2024-09-06T11:04:25.597Z CNTRLR [Node 001] [+] [Manufacturer Specific] manufacturerId: 0 -2024-09-06T11:04:25.597Z CNTRLR [Node 001] [+] [Manufacturer Specific] productType: 4 -2024-09-06T11:04:25.597Z CNTRLR [Node 001] [+] [Manufacturer Specific] productId: 4 -2024-09-06T11:04:25.597Z CNTRLR [Node 001] [Version] firmwareVersions: metadata updated -2024-09-06T11:04:25.597Z CNTRLR [Node 001] [+] [Version] firmwareVersions: 7.22 -2024-09-06T11:04:25.597Z CNTRLR [Node 001] [Version] zWaveProtocolVersion: metadata updated -2024-09-06T11:04:25.598Z CNTRLR [Node 001] [+] [Version] zWaveProtocolVersion: "7.22.1" -2024-09-06T11:04:25.598Z CNTRLR [Node 001] [Version] sdkVersion: metadata updated -2024-09-06T11:04:25.598Z CNTRLR [Node 001] [+] [Version] sdkVersion: "7.22.1" -2024-09-06T11:04:25.598Z CNTRLR Interview completed -2024-09-06T11:04:25.598Z DRIVER Network key for S0 configured, enabling S0 security manager... -2024-09-06T11:04:25.598Z DRIVER At least one network key for S2 configured, enabling S2 security manager... -2024-09-06T11:04:25.599Z DRIVER At least one network key for Z-Wave Long Range configured, enabling security m - anager... -2024-09-06T11:04:25.599Z DRIVER driver ready -2024-09-06T11:04:25.599Z CNTRLR [Node 001] Beginning interview - last completed stage: None -2024-09-06T11:04:25.599Z CNTRLR [Node 001] new node, doing a full interview... -2024-09-06T11:04:25.599Z CNTRLR » [Node 001] querying protocol info... -2024-09-06T11:04:25.599Z DRIVER all queues busy -2024-09-06T11:04:25.600Z SERIAL » 0x0104004101bb (6 bytes) -2024-09-06T11:04:25.600Z DRIVER » [REQ] [GetNodeProtocolInfo] - payload: 0x01 -2024-09-06T11:04:25.606Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:25.606Z SERIAL « 0x010a0141d3960102010000f2 (12 bytes) -2024-09-06T11:04:25.606Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:25.607Z DRIVER « [RES] [GetNodeProtocolInfo] - payload: 0xd3960102010000 -2024-09-06T11:04:25.607Z CNTRLR « [Node 001] received response for protocol info: - basic device class: Static Controller - generic device class: Remote Controller - specific device class: Unused - node type: Controller - is always listening: true - is frequent listening: false - can route messages: true - supports security: false - supports beaming: true - maximum data rate: 100000 kbps - protocol version: 3 -2024-09-06T11:04:25.607Z CNTRLR [Node 001] Interview stage completed: ProtocolInfo -2024-09-06T11:04:25.610Z DRIVER all queues idle -2024-09-06T11:04:25.612Z CNTRLR [Node 001] Embedded device config loaded -2024-09-06T11:04:25.612Z CNTRLR [Node 001] Interview stage completed: OverwriteConfig -2024-09-06T11:04:25.612Z CNTRLR [Node 001] Interview completed -2024-09-06T11:04:25.613Z CNTRLR [Node 001] The node is ready to be used -2024-09-06T11:04:25.613Z CNTRLR All nodes are ready to be used -2024-09-06T11:04:25.613Z CNTRLR [Node 001] The node is alive. -2024-09-06T11:04:30.308Z DRIVER all queues busy -2024-09-06T11:04:30.310Z SERIAL » 0x0105005081042f (7 bytes) -2024-09-06T11:04:30.311Z DRIVER » [REQ] [SetLearnMode] - callback id: 4 - intent: Inclusion -2024-09-06T11:04:30.316Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:30.318Z SERIAL « 0x0104015001ab (6 bytes) -2024-09-06T11:04:30.318Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:30.319Z DRIVER « [RES] [SetLearnMode] - success: true -2024-09-06T11:04:30.321Z DRIVER all queues idle -2024-09-06T11:04:30.530Z SERIAL « 0x0107005004010200af (9 bytes) -2024-09-06T11:04:30.531Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:30.532Z DRIVER « [REQ] [SetLearnMode] - callback id: 4 - status: Started - assigned node id: 2 -2024-09-06T11:04:30.532Z DRIVER handling request SetLearnMode (80) -2024-09-06T11:04:30.532Z DRIVER 1 handler registered! -2024-09-06T11:04:30.532Z DRIVER invoking handler #0 -2024-09-06T11:04:30.532Z DRIVER the message was handled -2024-09-06T11:04:30.617Z DRIVER all queues busy -2024-09-06T11:04:30.619Z SERIAL » 0x0103003bc7 (5 bytes) -2024-09-06T11:04:30.620Z DRIVER » [REQ] [GetBackgroundRSSI] -2024-09-06T11:04:30.625Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:30.625Z SERIAL « 0x0107013b9a96967f27 (9 bytes) -2024-09-06T11:04:30.626Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:30.627Z DRIVER « [RES] [GetBackgroundRSSI] - channel 0: -102 dBm - channel 1: -106 dBm - channel 2: -106 dBm - channel 3: N/A -2024-09-06T11:04:30.628Z DRIVER all queues idle -2024-09-06T11:04:31.054Z SERIAL « 0x01060049100100a1 (8 bytes) -2024-09-06T11:04:31.056Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:31.057Z DRIVER « [REQ] [ApplicationUpdateRequest] - type: SUC_IdChanged - SUC node ID: 1 -2024-09-06T11:04:31.071Z SERIAL « 0x0107005004050200ab (9 bytes) -2024-09-06T11:04:31.072Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:31.073Z DRIVER « [REQ] [SetLearnMode] - callback id: 4 - status: ProtocolDone - assigned node id: 2 -2024-09-06T11:04:31.074Z DRIVER handling request SetLearnMode (80) -2024-09-06T11:04:31.074Z DRIVER 1 handler registered! -2024-09-06T11:04:31.074Z DRIVER invoking handler #0 -2024-09-06T11:04:31.075Z DRIVER the message was handled -2024-09-06T11:04:31.075Z DRIVER waiting for security bootstrapping... -2024-09-06T11:04:31.076Z CNTRLR querying controller IDs... -2024-09-06T11:04:31.077Z DRIVER all queues busy -2024-09-06T11:04:31.079Z SERIAL » 0x01030020dc (5 bytes) -2024-09-06T11:04:31.079Z DRIVER » [REQ] [GetControllerId] -2024-09-06T11:04:31.091Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:31.092Z SERIAL « 0x01080120e18c5695027a (10 bytes) -2024-09-06T11:04:31.093Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:31.094Z DRIVER « [RES] [GetControllerId] - home ID: 0xe18c5695 - own node ID: 2 -2024-09-06T11:04:31.096Z CNTRLR received controller IDs: - home ID: 0xe18c5695 - own node ID: 2 -2024-09-06T11:04:31.096Z DRIVER Joined network with home ID 0xe18c5695, switching to new network cache... -2024-09-06T11:04:31.097Z CNTRLR querying controller capabilities... -2024-09-06T11:04:31.099Z SERIAL » 0x01030005f9 (5 bytes) -2024-09-06T11:04:31.100Z DRIVER » [REQ] [GetControllerCapabilities] -2024-09-06T11:04:31.112Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:31.112Z SERIAL « 0x0104010506f9 (6 bytes) -2024-09-06T11:04:31.113Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:31.113Z DRIVER « [RES] [GetControllerCapabilities] - payload: 0x06 -2024-09-06T11:04:31.114Z CNTRLR received controller capabilities: - controller role: Inclusion - is the SUC: false - started this network: false - SIS is present: true - was real primary: false -2024-09-06T11:04:31.115Z CNTRLR querying additional controller information... -2024-09-06T11:04:31.116Z SERIAL » 0x01030002fe (5 bytes) -2024-09-06T11:04:31.117Z DRIVER » [REQ] [GetSerialApiInitData] -2024-09-06T11:04:31.125Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:31.125Z SERIAL « 0x012501020a001d030000000000000000000000000000000000000000000000000 (39 bytes) - 00000000800c5 -2024-09-06T11:04:31.125Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:31.126Z DRIVER « [RES] [GetSerialApiInitData] - payload: 0x0a001d03000000000000000000000000000000000000000000000000000000000 - 800 -2024-09-06T11:04:31.126Z CNTRLR received additional controller information: - Z-Wave API version: 1 (official) - Z-Wave chip type: EFR32ZG23 / ZGM230S - node type Controller - controller role: primary - controller is the SIS: false - controller supports timers: false - Z-Wave Classic nodes: 1, 2 -2024-09-06T11:04:31.128Z DRIVER all queues idle -2024-09-06T11:04:31.293Z SERIAL « 0x010b00a8000201029f0400d81e (13 bytes) -2024-09-06T11:04:31.294Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:31.295Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -40 dBm - └─[Security2CCKEXGet] -2024-09-06T11:04:56.870Z DRIVER ███████╗ ██╗ ██╗ █████╗ ██╗ ██╗ ███████╗ ██╗ ███████╗ - ╚══███╔╝ ██║ ██║ ██╔══██╗ ██║ ██║ ██╔════╝ ██║ ██╔════╝ - ███╔╝ █████╗ ██║ █╗ ██║ ███████║ ██║ ██║ █████╗ ██║ ███████╗ - ███╔╝ ╚════╝ ██║███╗██║ ██╔══██║ ╚██╗ ██╔╝ ██╔══╝ ██ ██║ ╚════██║ - ███████╗ ╚███╔███╔╝ ██║ ██║ ╚████╔╝ ███████╗ ╚█████╔╝ ███████║ - ╚══════╝ ╚══╝╚══╝ ╚═╝ ╚═╝ ╚═══╝ ╚══════╝ ╚════╝ ╚══════╝ -2024-09-06T11:04:56.870Z DRIVER version 13.2.0 -2024-09-06T11:04:56.871Z DRIVER -2024-09-06T11:04:56.871Z DRIVER starting driver... -2024-09-06T11:04:56.871Z DRIVER opening serial port /dev/serial/by-id/usb-Silicon_Labs_CP2102N_USB_to_UART_Bri - dge_Controller_ca4d95064355ee118d4d1294de9da576-if00-port0 -2024-09-06T11:04:56.879Z DRIVER serial port opened -2024-09-06T11:04:56.879Z SERIAL » 0x15 (1 bytes) -2024-09-06T11:04:57.886Z DRIVER loading configuration... -2024-09-06T11:04:57.891Z CONFIG version 13.2.0 -2024-09-06T11:04:58.227Z DRIVER beginning interview... -2024-09-06T11:04:58.227Z DRIVER added request handler for AddNodeToNetwork (0x4a)... - 1 registered -2024-09-06T11:04:58.227Z DRIVER added request handler for RemoveNodeFromNetwork (0x4b)... - 1 registered -2024-09-06T11:04:58.227Z DRIVER added request handler for ReplaceFailedNode (0x63)... - 1 registered -2024-09-06T11:04:58.227Z DRIVER added request handler for SetLearnMode (0x50)... - 1 registered -2024-09-06T11:04:58.228Z CNTRLR querying Serial API capabilities... -2024-09-06T11:04:58.229Z SERIAL » 0x01030007fb (5 bytes) -2024-09-06T11:04:58.229Z DRIVER » [REQ] [GetSerialApiCapabilities] -2024-09-06T11:04:58.241Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:58.241Z SERIAL « 0x012b01070716000000040004f6873e88cf2bc05ffbd7fde09700008000808680b (45 bytes) - a0500700000ee7fc000000041 -2024-09-06T11:04:58.241Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:58.243Z DRIVER « [RES] [GetSerialApiCapabilities] - payload: 0x0716000000040004f6873e88cf2bc05ffbd7fde09700008000808680ba0500700 - 000ee7fc0000000 -2024-09-06T11:04:58.244Z CNTRLR received API capabilities: - firmware version: 7.22 - manufacturer ID: 0x00 - product type: 0x04 - product ID: 0x04 - supported functions: - · GetSerialApiInitData (0x02) - · SetApplicationNodeInformation (0x03) - · GetControllerCapabilities (0x05) - · SetSerialApiTimeouts (0x06) - · GetSerialApiCapabilities (0x07) - · SoftReset (0x08) - · GetProtocolVersion (0x09) - · SerialAPIStarted (0x0a) - · SerialAPISetup (0x0b) - · SetRFReceiveMode (0x10) - · SendNodeInformation (0x12) - · SendData (0x13) - · SendDataMulticast (0x14) - · GetControllerVersion (0x15) - · SendDataAbort (0x16) - · FUNC_ID_ZW_GET_RANDOM (0x1c) - · GetControllerId (0x20) - · UNKNOWN_FUNC_MEMORY_GET_BYTE (0x21) - · UNKNOWN_FUNC_MEMORY_PUT_BYTE (0x22) - · UNKNOWN_FUNC_MEMORY_GET_BUFFER (0x23) - · UNKNOWN_FUNC_MEMORY_PUT_BUFFER (0x24) - · EnterBootloader (0x27) - · UNKNOWN_FUNC_UNKNOWN_0x28 (0x28) - · GetNVMId (0x29) - · ExtNVMReadLongBuffer (0x2a) - · ExtNVMReadLongByte (0x2c) - · NVMOperations (0x2e) - · ClearTxTimers (0x37) - · GetTxTimers (0x38) - · ClearNetworkStats (0x39) - · GetNetworkStats (0x3a) - · GetBackgroundRSSI (0x3b) - · SetListenBeforeTalkThreshold (0x3c) - · ExtendedNVMOperations (0x3d) - · RemoveSpecificNodeIdFromNetwork (0x3f) - · GetNodeProtocolInfo (0x41) - · HardReset (0x42) - · FUNC_ID_ZW_REPLICATION_COMMAND_COMPLETE (0x44) - · FUNC_ID_ZW_REPLICATION_SEND_DATA (0x45) - · AssignReturnRoute (0x46) - · DeleteReturnRoute (0x47) - · RequestNodeNeighborUpdate (0x48) - · ApplicationUpdateRequest (0x49) - · AddNodeToNetwork (0x4a) - · RemoveNodeFromNetwork (0x4b) - · AddPrimaryController (0x4d) - · AssignPriorityReturnRoute (0x4f) - · SetLearnMode (0x50) - · AssignSUCReturnRoute (0x51) - · RequestNetworkUpdate (0x53) - · SetSUCNodeId (0x54) - · DeleteSUCReturnRoute (0x55) - · GetSUCNodeId (0x56) - · SendSUCNodeId (0x57) - · AssignPrioritySUCReturnRoute (0x58) - · ExploreRequestInclusion (0x5e) - · ExploreRequestExclusion (0x5f) - · RequestNodeInfo (0x60) - · RemoveFailedNode (0x61) - · IsFailedNode (0x62) - · ReplaceFailedNode (0x63) - · undefined (0x65) - · RequestProtocolCCEncryption (0x68) - · GetRoutingInfo (0x80) - · LockUnlockLastRoute (0x90) - · GetPriorityRoute (0x92) - · SetPriorityRoute (0x93) - · UNKNOWN_FUNC_UNKNOWN_0x98 (0x98) - · VirtualNodeSetNodeInfo (0xa0) - · VirtualNodeSendNodeInfo (0xa2) - · VirtualNodeSetLearnMode (0xa4) - · GetVirtualNodes (0xa5) - · IsVirtualNode (0xa6) - · BridgeApplicationCommand (0xa8) - · SendDataBridge (0xa9) - · SendDataMulticastBridge (0xab) - · GetLibrary (0xbd) - · SendTestFrame (0xbe) - · GetProtocolStatus (0xbf) - · StartWatchdog (0xd2) - · StopWatchdog (0xd3) - · SetMaximumRoutingAttempts (0xd4) - · SetMaxSmartStartInclusionRequestInterval (0xd6) - · undefined (0xd7) - · undefined (0xd8) - · Shutdown (0xd9) - · GetLongRangeNodes (0xda) - · GetLongRangeChannel (0xdb) - · SetLongRangeChannel (0xdc) - · SetLongRangeShadowNodeIDs (0xdd) - · Proprietary_DE (0xde) - · Proprietary_DF (0xdf) - · Proprietary_E7 (0xe7) - · Proprietary_E8 (0xe8) -2024-09-06T11:04:58.244Z CNTRLR querying additional controller information... -2024-09-06T11:04:58.245Z SERIAL » 0x01030002fe (5 bytes) -2024-09-06T11:04:58.246Z DRIVER » [REQ] [GetSerialApiInitData] -2024-09-06T11:04:58.254Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:58.255Z SERIAL « 0x012501020a001d030000000000000000000000000000000000000000000000000 (39 bytes) - 00000000800c5 -2024-09-06T11:04:58.255Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:58.255Z DRIVER « [RES] [GetSerialApiInitData] - payload: 0x0a001d03000000000000000000000000000000000000000000000000000000000 - 800 -2024-09-06T11:04:58.256Z CNTRLR received additional controller information: - Z-Wave API version: 1 (official) - Z-Wave chip type: EFR32ZG23 / ZGM230S - node type Controller - controller role: primary - controller is the SIS: false - controller supports timers: false - Z-Wave Classic nodes: 1, 2 -2024-09-06T11:04:58.256Z CNTRLR querying version info... -2024-09-06T11:04:58.257Z SERIAL » 0x01030015e9 (5 bytes) -2024-09-06T11:04:58.257Z DRIVER » [REQ] [GetControllerVersion] -2024-09-06T11:04:58.264Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:58.265Z SERIAL « 0x011001155a2d5761766520372e3232000797 (18 bytes) -2024-09-06T11:04:58.265Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:58.266Z DRIVER « [RES] [GetControllerVersion] - payload: 0x5a2d5761766520372e32320007 -2024-09-06T11:04:58.267Z CNTRLR received version info: - controller type: Bridge Controller - library version: Z-Wave 7.22 -2024-09-06T11:04:58.267Z CNTRLR querying protocol version info... -2024-09-06T11:04:58.268Z SERIAL » 0x01030009f5 (5 bytes) -2024-09-06T11:04:58.268Z DRIVER » [REQ] [GetProtocolVersion] -2024-09-06T11:04:58.274Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:58.274Z SERIAL « 0x0119010900071601abcd63636639623665613165616566313162c3 (27 bytes) -2024-09-06T11:04:58.275Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:58.275Z DRIVER « [RES] [GetProtocolVersion] - payload: 0x00071601abcd63636639623665613165616566313162 -2024-09-06T11:04:58.276Z CNTRLR received protocol version info: - protocol type: Z-Wave - protocol version: 7.22.1 - appl. framework build no.: 43981 - git commit hash: 63636639623665613165616566313162 -2024-09-06T11:04:58.276Z CNTRLR querying controller capabilities... -2024-09-06T11:04:58.277Z SERIAL » 0x01030005f9 (5 bytes) -2024-09-06T11:04:58.277Z DRIVER » [REQ] [GetControllerCapabilities] -2024-09-06T11:04:58.283Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:58.283Z SERIAL « 0x0104010506f9 (6 bytes) -2024-09-06T11:04:58.283Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:58.284Z DRIVER « [RES] [GetControllerCapabilities] - payload: 0x06 -2024-09-06T11:04:58.285Z CNTRLR received controller capabilities: - controller role: Inclusion - is the SUC: false - started this network: false - SIS is present: true - was real primary: false -2024-09-06T11:04:58.285Z CNTRLR querying serial API setup capabilities... -2024-09-06T11:04:58.286Z SERIAL » 0x0104000b01f1 (6 bytes) -2024-09-06T11:04:58.286Z DRIVER » [REQ] [SerialAPISetup] - command: GetSupportedCommands - payload: 0x01 -2024-09-06T11:04:58.292Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:58.293Z SERIAL « 0x0116010b01ff9f8007800000008000000000000000800085 (24 bytes) -2024-09-06T11:04:58.293Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:58.294Z DRIVER « [RES] [SerialAPISetup] - command: GetSupportedCommands - payload: 0xff9f80078000000080000000000000008000 -2024-09-06T11:04:58.294Z CNTRLR supported serial API setup commands: - · GetSupportedCommands - · SetTxStatusReport - · SetLongRangeMaximumTxPower - · SetPowerlevel - · GetLongRangeMaximumTxPower - · GetPowerlevel - · GetMaximumPayloadSize - · GetLongRangeMaximumPayloadSize - · SetPowerlevel16Bit - · GetPowerlevel16Bit - · GetRFRegion - · SetRFRegion - · SetNodeIDType -2024-09-06T11:04:58.294Z CNTRLR querying max. payload size... -2024-09-06T11:04:58.295Z SERIAL » 0x0104000b10e0 (6 bytes) -2024-09-06T11:04:58.295Z DRIVER » [REQ] [SerialAPISetup] - command: GetMaximumPayloadSize - payload: 0x10 -2024-09-06T11:04:58.301Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:58.301Z SERIAL « 0x0105010b102ece (7 bytes) -2024-09-06T11:04:58.301Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:58.302Z DRIVER « [RES] [SerialAPISetup] - command: GetMaximumPayloadSize - maximum payload size: 46 bytes -2024-09-06T11:04:58.302Z CNTRLR maximum payload size: 46 bytes -2024-09-06T11:04:58.303Z CNTRLR supported Z-Wave features: - · SmartStart -2024-09-06T11:04:58.303Z CNTRLR Querying configured RF region... -2024-09-06T11:04:58.303Z SERIAL » 0x0104000b20d0 (6 bytes) -2024-09-06T11:04:58.304Z DRIVER » [REQ] [SerialAPISetup] - command: GetRFRegion - payload: 0x20 -2024-09-06T11:04:58.308Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:58.309Z SERIAL « 0x0105010b2000d0 (7 bytes) -2024-09-06T11:04:58.309Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:58.309Z DRIVER « [RES] [SerialAPISetup] - command: GetRFRegion - region: Europe -2024-09-06T11:04:58.310Z CNTRLR The controller is using RF region Europe -2024-09-06T11:04:58.310Z CNTRLR Querying configured max. Long Range powerlevel... -2024-09-06T11:04:58.311Z SERIAL » 0x0104000b05f5 (6 bytes) -2024-09-06T11:04:58.311Z DRIVER » [REQ] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - payload: 0x05 -2024-09-06T11:04:58.316Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:58.316Z SERIAL « 0x0106010b05008c7a (8 bytes) -2024-09-06T11:04:58.317Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:58.317Z DRIVER « [RES] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - max. TX power (LR): 14.0 dBm -2024-09-06T11:04:58.317Z CNTRLR The max. LR powerlevel is 14.0 dBm -2024-09-06T11:04:58.318Z CNTRLR Querying configured Long Range channel information... -2024-09-06T11:04:58.318Z SERIAL » 0x010300db27 (5 bytes) -2024-09-06T11:04:58.319Z DRIVER » [REQ] [GetLongRangeChannel] -2024-09-06T11:04:58.323Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:58.324Z SERIAL « 0x010501db001030 (7 bytes) -2024-09-06T11:04:58.324Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:58.324Z DRIVER « [RES] [GetLongRangeChannel] - payload: 0x0010 -2024-09-06T11:04:58.325Z CNTRLR received Z-Wave Long Range channel information: - channel: Unsupported - supports auto channel selection: true -2024-09-06T11:04:58.325Z CNTRLR Performing soft reset... -2024-09-06T11:04:58.325Z SERIAL » 0x01030008f4 (5 bytes) -2024-09-06T11:04:58.325Z DRIVER » [REQ] [SoftReset] -2024-09-06T11:04:58.329Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:58.330Z CNTRLR Waiting for the controller to reconnect... -2024-09-06T11:04:58.330Z DRIVER all queues idle -2024-09-06T11:04:58.445Z SERIAL « 0x0116000a0700010100085e989f556c568f7400031d00003f (24 bytes) -2024-09-06T11:04:58.446Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:58.448Z DRIVER « [REQ] [SerialAPIStarted] - wake up reason: SoftwareReset - watchdog enabled: false - generic device class: 0x01 - specific device class: 0x00 - always listening: false - supports Long Range: false -2024-09-06T11:04:58.449Z CNTRLR reconnected and restarted -2024-09-06T11:04:58.450Z CNTRLR Starting hardware watchdog... -2024-09-06T11:04:58.451Z CNTRLR Switching serial API to 16-bit node IDs... -2024-09-06T11:04:58.452Z CNTRLR Switching serial API to 8-bit node IDs... -2024-09-06T11:04:58.453Z DRIVER all queues busy -2024-09-06T11:04:58.454Z SERIAL » 0x010300d22e (5 bytes) -2024-09-06T11:04:58.455Z DRIVER » [REQ] [StartWatchdog] -2024-09-06T11:04:58.461Z SERIAL » 0x0105000b800273 (7 bytes) -2024-09-06T11:04:58.462Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 16 bit -2024-09-06T11:04:58.463Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:58.467Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:58.468Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T11:04:58.468Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:58.469Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T11:04:58.470Z CNTRLR Switching to 16-bit node IDs successful -2024-09-06T11:04:58.470Z SERIAL » 0x0105000b800170 (7 bytes) -2024-09-06T11:04:58.471Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 8 bit -2024-09-06T11:04:58.477Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:58.477Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T11:04:58.478Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:58.478Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T11:04:58.479Z CNTRLR Switching to 8-bit node IDs successful -2024-09-06T11:04:58.479Z CNTRLR querying controller IDs... -2024-09-06T11:04:58.480Z SERIAL » 0x01030020dc (5 bytes) -2024-09-06T11:04:58.481Z DRIVER » [REQ] [GetControllerId] -2024-09-06T11:04:58.486Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:58.486Z SERIAL « 0x01080120e18c5695027a (10 bytes) -2024-09-06T11:04:58.487Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:58.487Z DRIVER « [RES] [GetControllerId] - home ID: 0xe18c5695 - own node ID: 2 -2024-09-06T11:04:58.488Z CNTRLR received controller IDs: - home ID: 0xe18c5695 - own node ID: 2 -2024-09-06T11:04:58.488Z CNTRLR Enabling TX status report... -2024-09-06T11:04:58.489Z SERIAL » 0x0105000b02ff0c (7 bytes) -2024-09-06T11:04:58.490Z DRIVER » [REQ] [SerialAPISetup] - command: SetTxStatusReport - enabled: true -2024-09-06T11:04:58.495Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:58.495Z SERIAL « 0x0105010b0201f3 (7 bytes) -2024-09-06T11:04:58.495Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:58.496Z DRIVER « [RES] [SerialAPISetup] - command: SetTxStatusReport - success: true -2024-09-06T11:04:58.496Z CNTRLR Enabling TX status report successful... -2024-09-06T11:04:58.497Z CNTRLR finding SUC... -2024-09-06T11:04:58.497Z SERIAL » 0x01030056aa (5 bytes) -2024-09-06T11:04:58.498Z DRIVER » [REQ] [GetSUCNodeId] -2024-09-06T11:04:58.503Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:58.504Z SERIAL « 0x0104015601ad (6 bytes) -2024-09-06T11:04:58.504Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:58.505Z DRIVER « [RES] [GetSUCNodeId] - payload: 0x01 -2024-09-06T11:04:58.505Z CNTRLR SUC has node ID 1 -2024-09-06T11:04:58.506Z DRIVER all queues idle -2024-09-06T11:04:58.516Z DRIVER Cache file for homeId 0xe18c5695 found, attempting to restore the network from - cache... -2024-09-06T11:04:58.517Z DRIVER Restoring the network from cache was successful! -2024-09-06T11:04:58.518Z CNTRLR [Node 002] [Manufacturer Specific] manufacturerId: metadata updated -2024-09-06T11:04:58.518Z CNTRLR [Node 002] [Manufacturer Specific] productType: metadata updated -2024-09-06T11:04:58.518Z CNTRLR [Node 002] [Manufacturer Specific] productId: metadata updated -2024-09-06T11:04:58.518Z CNTRLR [Node 002] [+] [Manufacturer Specific] manufacturerId: 0 -2024-09-06T11:04:58.519Z CNTRLR [Node 002] [+] [Manufacturer Specific] productType: 4 -2024-09-06T11:04:58.519Z CNTRLR [Node 002] [+] [Manufacturer Specific] productId: 4 -2024-09-06T11:04:58.519Z CNTRLR [Node 002] [Version] firmwareVersions: metadata updated -2024-09-06T11:04:58.519Z CNTRLR [Node 002] [+] [Version] firmwareVersions: 7.22 -2024-09-06T11:04:58.519Z CNTRLR [Node 002] [Version] zWaveProtocolVersion: metadata updated -2024-09-06T11:04:58.520Z CNTRLR [Node 002] [+] [Version] zWaveProtocolVersion: "7.22.1" -2024-09-06T11:04:58.520Z CNTRLR [Node 002] [Version] sdkVersion: metadata updated -2024-09-06T11:04:58.520Z CNTRLR [Node 002] [+] [Version] sdkVersion: "7.22.1" -2024-09-06T11:04:58.520Z CNTRLR Interview completed -2024-09-06T11:04:58.520Z DRIVER No network key for S0 found in cache, communication with secure (S0) devices w - on't work! -2024-09-06T11:04:58.520Z DRIVER No network key for S2 found in cache, communication with secure (S2) devices w - on't work! -2024-09-06T11:04:58.520Z DRIVER driver ready -2024-09-06T11:04:58.521Z CNTRLR [Node 002] Beginning interview - last completed stage: None -2024-09-06T11:04:58.521Z CNTRLR [Node 002] new node, doing a full interview... -2024-09-06T11:04:58.521Z CNTRLR » [Node 002] querying protocol info... -2024-09-06T11:04:58.522Z DRIVER all queues busy -2024-09-06T11:04:58.523Z SERIAL » 0x0104004102b8 (6 bytes) -2024-09-06T11:04:58.523Z DRIVER » [REQ] [GetNodeProtocolInfo] - payload: 0x02 -2024-09-06T11:04:58.529Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:58.529Z SERIAL « 0x010a0141d3960102010000f2 (12 bytes) -2024-09-06T11:04:58.529Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:58.530Z DRIVER « [RES] [GetNodeProtocolInfo] - payload: 0xd3960102010000 -2024-09-06T11:04:58.531Z CNTRLR « [Node 002] received response for protocol info: - basic device class: Static Controller - generic device class: Remote Controller - specific device class: Unused - node type: Controller - is always listening: true - is frequent listening: false - can route messages: true - supports security: false - supports beaming: true - maximum data rate: 100000 kbps - protocol version: 3 -2024-09-06T11:04:58.531Z CNTRLR [Node 002] Interview stage completed: ProtocolInfo -2024-09-06T11:04:58.532Z DRIVER all queues idle -2024-09-06T11:04:58.538Z CNTRLR [Node 002] Embedded device config loaded -2024-09-06T11:04:58.539Z CNTRLR [Node 002] Interview stage completed: OverwriteConfig -2024-09-06T11:04:58.539Z CNTRLR [Node 002] Interview completed -2024-09-06T11:04:58.539Z CNTRLR [Node 002] The node is ready to be used -2024-09-06T11:04:58.540Z CNTRLR [Node 002] The node is alive. -2024-09-06T11:04:58.540Z CNTRLR » [Node 001] querying protocol info... -2024-09-06T11:04:58.540Z DRIVER all queues busy -2024-09-06T11:04:58.541Z SERIAL » 0x0104004101bb (6 bytes) -2024-09-06T11:04:58.541Z DRIVER » [REQ] [GetNodeProtocolInfo] - payload: 0x01 -2024-09-06T11:04:58.547Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:58.548Z SERIAL « 0x010a0141d3960102010000f2 (12 bytes) -2024-09-06T11:04:58.548Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:58.548Z DRIVER « [RES] [GetNodeProtocolInfo] - payload: 0xd3960102010000 -2024-09-06T11:04:58.549Z CNTRLR « [Node 001] received response for protocol info: - basic device class: Static Controller - generic device class: Remote Controller - specific device class: Unused - node type: Controller - is always listening: true - is frequent listening: false - can route messages: true - supports security: false - supports beaming: true - maximum data rate: 100000 kbps - protocol version: 3 -2024-09-06T11:04:58.549Z CNTRLR [Node 001] Interview stage completed: ProtocolInfo -2024-09-06T11:04:58.549Z CNTRLR Determining node status: 1 -2024-09-06T11:04:58.549Z CNTRLR » [Node 001] pinging the node... -2024-09-06T11:04:58.551Z SERIAL » 0x010d00a9020101002500000000017d (15 bytes) -2024-09-06T11:04:58.552Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 1 - └─[NoOperationCC] -2024-09-06T11:04:58.557Z SERIAL « [ACK] (0x06) -2024-09-06T11:04:58.560Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:04:58.560Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:58.560Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:04:58.579Z SERIAL « 0x011d00a90100000100d87f7f7f7f00000300000000030100007f7f7f7f7fed (31 bytes) -2024-09-06T11:04:58.580Z SERIAL » [ACK] (0x06) -2024-09-06T11:04:58.581Z DRIVER « [REQ] [SendDataBridge] - callback id: 1 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -40 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:04:58.581Z CNTRLR [Node 001] The node is alive. -2024-09-06T11:04:58.582Z CNTRLR « [Node 001] ping successful -2024-09-06T11:04:58.582Z DRIVER all queues idle -2024-09-06T11:05:03.520Z CNTRLR Updating the controller NIF... -2024-09-06T11:05:03.522Z DRIVER all queues busy -2024-09-06T11:05:03.523Z SERIAL » 0x010f0003010100085e989f556c568f7436 (17 bytes) -2024-09-06T11:05:03.524Z DRIVER » [REQ] [SetApplicationNodeInformation] - is listening: true - generic device class: 0x01 - specific device class: 0x00 - supported CCs: - · Z-Wave Plus Info - · Security - · Security 2 - · Transport Service - · Supervision - · CRC-16 Encapsulation - · Multi Command - · Inclusion Controller - controlled CCs: -2024-09-06T11:05:03.530Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:03.532Z CNTRLR performing hard reset... -2024-09-06T11:05:03.534Z SERIAL » 0x0104004202bb (6 bytes) -2024-09-06T11:05:03.535Z DRIVER » [REQ] [HardReset] - callback id: 2 -2024-09-06T11:05:03.539Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:03.559Z SERIAL « 0x0104004202bb (6 bytes) -2024-09-06T11:05:03.560Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:03.561Z DRIVER « [REQ] [HardReset] - callback id: 2 -2024-09-06T11:05:03.562Z CNTRLR hard reset succeeded -2024-09-06T11:05:03.563Z CNTRLR querying Serial API capabilities... -2024-09-06T11:05:03.565Z SERIAL » 0x01030007fb (5 bytes) -2024-09-06T11:05:03.565Z DRIVER » [REQ] [GetSerialApiCapabilities] -2024-09-06T11:05:03.574Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:03.576Z SERIAL « 0x012b01070716000000040004f6873e88cf2bc05ffbd7fde09700008000808680b (45 bytes) - a0500700000ee7fc000000041 -2024-09-06T11:05:03.576Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:03.577Z DRIVER « [RES] [GetSerialApiCapabilities] - payload: 0x0716000000040004f6873e88cf2bc05ffbd7fde09700008000808680ba0500700 - 000ee7fc0000000 -2024-09-06T11:05:03.579Z CNTRLR received API capabilities: - firmware version: 7.22 - manufacturer ID: 0x00 - product type: 0x04 - product ID: 0x04 - supported functions: - · GetSerialApiInitData (0x02) - · SetApplicationNodeInformation (0x03) - · GetControllerCapabilities (0x05) - · SetSerialApiTimeouts (0x06) - · GetSerialApiCapabilities (0x07) - · SoftReset (0x08) - · GetProtocolVersion (0x09) - · SerialAPIStarted (0x0a) - · SerialAPISetup (0x0b) - · SetRFReceiveMode (0x10) - · SendNodeInformation (0x12) - · SendData (0x13) - · SendDataMulticast (0x14) - · GetControllerVersion (0x15) - · SendDataAbort (0x16) - · FUNC_ID_ZW_GET_RANDOM (0x1c) - · GetControllerId (0x20) - · UNKNOWN_FUNC_MEMORY_GET_BYTE (0x21) - · UNKNOWN_FUNC_MEMORY_PUT_BYTE (0x22) - · UNKNOWN_FUNC_MEMORY_GET_BUFFER (0x23) - · UNKNOWN_FUNC_MEMORY_PUT_BUFFER (0x24) - · EnterBootloader (0x27) - · UNKNOWN_FUNC_UNKNOWN_0x28 (0x28) - · GetNVMId (0x29) - · ExtNVMReadLongBuffer (0x2a) - · ExtNVMReadLongByte (0x2c) - · NVMOperations (0x2e) - · ClearTxTimers (0x37) - · GetTxTimers (0x38) - · ClearNetworkStats (0x39) - · GetNetworkStats (0x3a) - · GetBackgroundRSSI (0x3b) - · SetListenBeforeTalkThreshold (0x3c) - · ExtendedNVMOperations (0x3d) - · RemoveSpecificNodeIdFromNetwork (0x3f) - · GetNodeProtocolInfo (0x41) - · HardReset (0x42) - · FUNC_ID_ZW_REPLICATION_COMMAND_COMPLETE (0x44) - · FUNC_ID_ZW_REPLICATION_SEND_DATA (0x45) - · AssignReturnRoute (0x46) - · DeleteReturnRoute (0x47) - · RequestNodeNeighborUpdate (0x48) - · ApplicationUpdateRequest (0x49) - · AddNodeToNetwork (0x4a) - · RemoveNodeFromNetwork (0x4b) - · AddPrimaryController (0x4d) - · AssignPriorityReturnRoute (0x4f) - · SetLearnMode (0x50) - · AssignSUCReturnRoute (0x51) - · RequestNetworkUpdate (0x53) - · SetSUCNodeId (0x54) - · DeleteSUCReturnRoute (0x55) - · GetSUCNodeId (0x56) - · SendSUCNodeId (0x57) - · AssignPrioritySUCReturnRoute (0x58) - · ExploreRequestInclusion (0x5e) - · ExploreRequestExclusion (0x5f) - · RequestNodeInfo (0x60) - · RemoveFailedNode (0x61) - · IsFailedNode (0x62) - · ReplaceFailedNode (0x63) - · undefined (0x65) - · RequestProtocolCCEncryption (0x68) - · GetRoutingInfo (0x80) - · LockUnlockLastRoute (0x90) - · GetPriorityRoute (0x92) - · SetPriorityRoute (0x93) - · UNKNOWN_FUNC_UNKNOWN_0x98 (0x98) - · VirtualNodeSetNodeInfo (0xa0) - · VirtualNodeSendNodeInfo (0xa2) - · VirtualNodeSetLearnMode (0xa4) - · GetVirtualNodes (0xa5) - · IsVirtualNode (0xa6) - · BridgeApplicationCommand (0xa8) - · SendDataBridge (0xa9) - · SendDataMulticastBridge (0xab) - · GetLibrary (0xbd) - · SendTestFrame (0xbe) - · GetProtocolStatus (0xbf) - · StartWatchdog (0xd2) - · StopWatchdog (0xd3) - · SetMaximumRoutingAttempts (0xd4) - · SetMaxSmartStartInclusionRequestInterval (0xd6) - · undefined (0xd7) - · undefined (0xd8) - · Shutdown (0xd9) - · GetLongRangeNodes (0xda) - · GetLongRangeChannel (0xdb) - · SetLongRangeChannel (0xdc) - · SetLongRangeShadowNodeIDs (0xdd) - · Proprietary_DE (0xde) - · Proprietary_DF (0xdf) - · Proprietary_E7 (0xe7) - · Proprietary_E8 (0xe8) -2024-09-06T11:05:03.579Z CNTRLR querying additional controller information... -2024-09-06T11:05:03.581Z SERIAL » 0x01030002fe (5 bytes) -2024-09-06T11:05:03.581Z DRIVER » [REQ] [GetSerialApiInitData] -2024-09-06T11:05:03.590Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:03.591Z SERIAL « 0x012501020a001d010000000000000000000000000000000000000000000000000 (39 bytes) - 00000000800c7 -2024-09-06T11:05:03.592Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:03.593Z DRIVER « [RES] [GetSerialApiInitData] - payload: 0x0a001d01000000000000000000000000000000000000000000000000000000000 - 800 -2024-09-06T11:05:03.594Z CNTRLR received additional controller information: - Z-Wave API version: 1 (official) - Z-Wave chip type: EFR32ZG23 / ZGM230S - node type Controller - controller role: primary - controller is the SIS: false - controller supports timers: false - Z-Wave Classic nodes: 1 -2024-09-06T11:05:03.594Z CNTRLR querying version info... -2024-09-06T11:05:03.595Z SERIAL » 0x01030015e9 (5 bytes) -2024-09-06T11:05:03.596Z DRIVER » [REQ] [GetControllerVersion] -2024-09-06T11:05:03.602Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:03.603Z SERIAL « 0x011001155a2d5761766520372e3232000797 (18 bytes) -2024-09-06T11:05:03.603Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:03.604Z DRIVER « [RES] [GetControllerVersion] - payload: 0x5a2d5761766520372e32320007 -2024-09-06T11:05:03.606Z CNTRLR received version info: - controller type: Bridge Controller - library version: Z-Wave 7.22 -2024-09-06T11:05:03.606Z CNTRLR querying protocol version info... -2024-09-06T11:05:03.607Z SERIAL » 0x01030009f5 (5 bytes) -2024-09-06T11:05:03.607Z DRIVER » [REQ] [GetProtocolVersion] -2024-09-06T11:05:03.613Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:03.614Z SERIAL « 0x0119010900071601abcd63636639623665613165616566313162c3 (27 bytes) -2024-09-06T11:05:03.615Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:03.615Z DRIVER « [RES] [GetProtocolVersion] - payload: 0x00071601abcd63636639623665613165616566313162 -2024-09-06T11:05:03.616Z CNTRLR received protocol version info: - protocol type: Z-Wave - protocol version: 7.22.1 - appl. framework build no.: 43981 - git commit hash: 63636639623665613165616566313162 -2024-09-06T11:05:03.617Z CNTRLR querying controller capabilities... -2024-09-06T11:05:03.617Z SERIAL » 0x01030005f9 (5 bytes) -2024-09-06T11:05:03.618Z DRIVER » [REQ] [GetControllerCapabilities] -2024-09-06T11:05:03.623Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:03.623Z SERIAL « 0x0104010528d7 (6 bytes) -2024-09-06T11:05:03.624Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:03.624Z DRIVER « [RES] [GetControllerCapabilities] - payload: 0x28 -2024-09-06T11:05:03.625Z CNTRLR received controller capabilities: - controller role: Primary - is the SUC: false - started this network: true - SIS is present: false - was real primary: true -2024-09-06T11:05:03.625Z CNTRLR querying serial API setup capabilities... -2024-09-06T11:05:03.626Z SERIAL » 0x0104000b01f1 (6 bytes) -2024-09-06T11:05:03.626Z DRIVER » [REQ] [SerialAPISetup] - command: GetSupportedCommands - payload: 0x01 -2024-09-06T11:05:03.633Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:03.634Z SERIAL « 0x0116010b01ff9f8007800000008000000000000000800085 (24 bytes) -2024-09-06T11:05:03.634Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:03.635Z DRIVER « [RES] [SerialAPISetup] - command: GetSupportedCommands - payload: 0xff9f80078000000080000000000000008000 -2024-09-06T11:05:03.636Z CNTRLR supported serial API setup commands: - · GetSupportedCommands - · SetTxStatusReport - · SetLongRangeMaximumTxPower - · SetPowerlevel - · GetLongRangeMaximumTxPower - · GetPowerlevel - · GetMaximumPayloadSize - · GetLongRangeMaximumPayloadSize - · SetPowerlevel16Bit - · GetPowerlevel16Bit - · GetRFRegion - · SetRFRegion - · SetNodeIDType -2024-09-06T11:05:03.636Z CNTRLR querying max. payload size... -2024-09-06T11:05:03.636Z SERIAL » 0x0104000b10e0 (6 bytes) -2024-09-06T11:05:03.637Z DRIVER » [REQ] [SerialAPISetup] - command: GetMaximumPayloadSize - payload: 0x10 -2024-09-06T11:05:03.642Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:03.643Z SERIAL « 0x0105010b102ece (7 bytes) -2024-09-06T11:05:03.643Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:03.644Z DRIVER « [RES] [SerialAPISetup] - command: GetMaximumPayloadSize - maximum payload size: 46 bytes -2024-09-06T11:05:03.645Z CNTRLR maximum payload size: 46 bytes -2024-09-06T11:05:03.645Z CNTRLR supported Z-Wave features: - · SmartStart -2024-09-06T11:05:03.645Z CNTRLR Querying configured RF region... -2024-09-06T11:05:03.646Z SERIAL » 0x0104000b20d0 (6 bytes) -2024-09-06T11:05:03.646Z DRIVER » [REQ] [SerialAPISetup] - command: GetRFRegion - payload: 0x20 -2024-09-06T11:05:03.652Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:03.652Z SERIAL « 0x0105010b2000d0 (7 bytes) -2024-09-06T11:05:03.652Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:03.653Z DRIVER « [RES] [SerialAPISetup] - command: GetRFRegion - region: Europe -2024-09-06T11:05:03.654Z CNTRLR The controller is using RF region Europe -2024-09-06T11:05:03.654Z CNTRLR Querying configured max. Long Range powerlevel... -2024-09-06T11:05:03.655Z SERIAL » 0x0104000b05f5 (6 bytes) -2024-09-06T11:05:03.655Z DRIVER » [REQ] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - payload: 0x05 -2024-09-06T11:05:03.661Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:03.661Z SERIAL « 0x0106010b05008c7a (8 bytes) -2024-09-06T11:05:03.661Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:03.662Z DRIVER « [RES] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - max. TX power (LR): 14.0 dBm -2024-09-06T11:05:03.663Z CNTRLR The max. LR powerlevel is 14.0 dBm -2024-09-06T11:05:03.663Z CNTRLR Querying configured Long Range channel information... -2024-09-06T11:05:03.663Z SERIAL » 0x010300db27 (5 bytes) -2024-09-06T11:05:03.664Z DRIVER » [REQ] [GetLongRangeChannel] -2024-09-06T11:05:03.669Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:03.670Z SERIAL « 0x010501db001030 (7 bytes) -2024-09-06T11:05:03.670Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:03.670Z DRIVER « [RES] [GetLongRangeChannel] - payload: 0x0010 -2024-09-06T11:05:03.671Z CNTRLR received Z-Wave Long Range channel information: - channel: Unsupported - supports auto channel selection: true -2024-09-06T11:05:03.671Z CNTRLR Performing soft reset... -2024-09-06T11:05:03.672Z SERIAL » 0x01030008f4 (5 bytes) -2024-09-06T11:05:03.672Z DRIVER » [REQ] [SoftReset] -2024-09-06T11:05:03.676Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:03.676Z CNTRLR Waiting for the controller to reconnect... -2024-09-06T11:05:03.677Z DRIVER all queues idle -2024-09-06T11:05:03.782Z SERIAL « 0x0116000a0700010100085e989f556c568f7400031d00003f (24 bytes) -2024-09-06T11:05:03.783Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:03.785Z DRIVER « [REQ] [SerialAPIStarted] - wake up reason: SoftwareReset - watchdog enabled: false - generic device class: 0x01 - specific device class: 0x00 - always listening: false - supports Long Range: false -2024-09-06T11:05:03.785Z CNTRLR reconnected and restarted -2024-09-06T11:05:03.786Z CNTRLR Starting hardware watchdog... -2024-09-06T11:05:03.786Z CNTRLR Switching serial API to 16-bit node IDs... -2024-09-06T11:05:03.787Z CNTRLR Switching serial API to 8-bit node IDs... -2024-09-06T11:05:03.787Z DRIVER all queues busy -2024-09-06T11:05:03.789Z SERIAL » 0x010300d22e (5 bytes) -2024-09-06T11:05:03.789Z DRIVER » [REQ] [StartWatchdog] -2024-09-06T11:05:03.792Z SERIAL » 0x0105000b800273 (7 bytes) -2024-09-06T11:05:03.793Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 16 bit -2024-09-06T11:05:03.794Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:03.798Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:03.799Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T11:05:03.799Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:03.800Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T11:05:03.802Z CNTRLR Switching to 16-bit node IDs successful -2024-09-06T11:05:03.803Z SERIAL » 0x0105000b800170 (7 bytes) -2024-09-06T11:05:03.803Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 8 bit -2024-09-06T11:05:03.809Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:03.809Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T11:05:03.809Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:03.810Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T11:05:03.810Z CNTRLR Switching to 8-bit node IDs successful -2024-09-06T11:05:03.810Z CNTRLR querying controller IDs... -2024-09-06T11:05:03.811Z SERIAL » 0x01030020dc (5 bytes) -2024-09-06T11:05:03.811Z DRIVER » [REQ] [GetControllerId] -2024-09-06T11:05:03.816Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:03.817Z SERIAL « 0x01080120c4083e2b010e (10 bytes) -2024-09-06T11:05:03.817Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:03.817Z DRIVER « [RES] [GetControllerId] - home ID: 0xc4083e2b - own node ID: 1 -2024-09-06T11:05:03.818Z CNTRLR received controller IDs: - home ID: 0xc4083e2b - own node ID: 1 -2024-09-06T11:05:03.818Z CNTRLR Enabling TX status report... -2024-09-06T11:05:03.818Z SERIAL » 0x0105000b02ff0c (7 bytes) -2024-09-06T11:05:03.819Z DRIVER » [REQ] [SerialAPISetup] - command: SetTxStatusReport - enabled: true -2024-09-06T11:05:03.823Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:03.824Z SERIAL « 0x0105010b0201f3 (7 bytes) -2024-09-06T11:05:03.824Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:03.824Z DRIVER « [RES] [SerialAPISetup] - command: SetTxStatusReport - success: true -2024-09-06T11:05:03.825Z CNTRLR Enabling TX status report successful... -2024-09-06T11:05:03.825Z CNTRLR finding SUC... -2024-09-06T11:05:03.825Z SERIAL » 0x01030056aa (5 bytes) -2024-09-06T11:05:03.825Z DRIVER » [REQ] [GetSUCNodeId] -2024-09-06T11:05:03.830Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:03.830Z SERIAL « 0x0104015600ac (6 bytes) -2024-09-06T11:05:03.830Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:03.831Z DRIVER « [RES] [GetSUCNodeId] - payload: 0x00 -2024-09-06T11:05:03.831Z CNTRLR No SUC present in the network -2024-09-06T11:05:03.831Z CNTRLR There is no SUC/SIS in the network - promoting ourselves... -2024-09-06T11:05:03.832Z SERIAL » 0x01080054010125010384 (10 bytes) -2024-09-06T11:05:03.832Z DRIVER » [REQ] [SetSUCNodeId] - payload: 0x0101250103 -2024-09-06T11:05:03.839Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:03.839Z SERIAL « 0x0104015401af (6 bytes) -2024-09-06T11:05:03.839Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:03.840Z DRIVER « [RES] [SetSUCNodeId] - was executed: true -2024-09-06T11:05:03.840Z CNTRLR Promotion to SUC/SIS succeeded. -2024-09-06T11:05:03.841Z DRIVER all queues idle -2024-09-06T11:05:03.844Z CNTRLR [Node 001] [Manufacturer Specific] manufacturerId: metadata updated -2024-09-06T11:05:03.844Z CNTRLR [Node 001] [Manufacturer Specific] productType: metadata updated -2024-09-06T11:05:03.844Z CNTRLR [Node 001] [Manufacturer Specific] productId: metadata updated -2024-09-06T11:05:03.844Z CNTRLR [Node 001] [+] [Manufacturer Specific] manufacturerId: 0 -2024-09-06T11:05:03.844Z CNTRLR [Node 001] [+] [Manufacturer Specific] productType: 4 -2024-09-06T11:05:03.844Z CNTRLR [Node 001] [+] [Manufacturer Specific] productId: 4 -2024-09-06T11:05:03.845Z CNTRLR [Node 001] [Version] firmwareVersions: metadata updated -2024-09-06T11:05:03.845Z CNTRLR [Node 001] [+] [Version] firmwareVersions: 7.22 -2024-09-06T11:05:03.845Z CNTRLR [Node 001] [Version] zWaveProtocolVersion: metadata updated -2024-09-06T11:05:03.845Z CNTRLR [Node 001] [+] [Version] zWaveProtocolVersion: "7.22.1" -2024-09-06T11:05:03.845Z CNTRLR [Node 001] [Version] sdkVersion: metadata updated -2024-09-06T11:05:03.845Z CNTRLR [Node 001] [+] [Version] sdkVersion: "7.22.1" -2024-09-06T11:05:03.845Z CNTRLR Interview completed -2024-09-06T11:05:03.845Z DRIVER Network key for S0 configured, enabling S0 security manager... -2024-09-06T11:05:03.845Z DRIVER At least one network key for S2 configured, enabling S2 security manager... -2024-09-06T11:05:03.846Z DRIVER At least one network key for Z-Wave Long Range configured, enabling security m - anager... -2024-09-06T11:05:03.846Z DRIVER driver ready -2024-09-06T11:05:03.846Z CNTRLR [Node 001] Beginning interview - last completed stage: None -2024-09-06T11:05:03.846Z CNTRLR [Node 001] new node, doing a full interview... -2024-09-06T11:05:03.846Z CNTRLR » [Node 001] querying protocol info... -2024-09-06T11:05:03.847Z DRIVER all queues busy -2024-09-06T11:05:03.847Z SERIAL » 0x0104004101bb (6 bytes) -2024-09-06T11:05:03.847Z DRIVER » [REQ] [GetNodeProtocolInfo] - payload: 0x01 -2024-09-06T11:05:03.852Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:03.853Z SERIAL « 0x010a0141d3960102010000f2 (12 bytes) -2024-09-06T11:05:03.853Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:03.854Z DRIVER « [RES] [GetNodeProtocolInfo] - payload: 0xd3960102010000 -2024-09-06T11:05:03.854Z CNTRLR « [Node 001] received response for protocol info: - basic device class: Static Controller - generic device class: Remote Controller - specific device class: Unused - node type: Controller - is always listening: true - is frequent listening: false - can route messages: true - supports security: false - supports beaming: true - maximum data rate: 100000 kbps - protocol version: 3 -2024-09-06T11:05:03.854Z CNTRLR [Node 001] Interview stage completed: ProtocolInfo -2024-09-06T11:05:03.855Z DRIVER all queues idle -2024-09-06T11:05:03.857Z CNTRLR [Node 001] Embedded device config loaded -2024-09-06T11:05:03.857Z CNTRLR [Node 001] Interview stage completed: OverwriteConfig -2024-09-06T11:05:03.857Z CNTRLR [Node 001] Interview completed -2024-09-06T11:05:03.857Z CNTRLR [Node 001] The node is ready to be used -2024-09-06T11:05:03.857Z CNTRLR All nodes are ready to be used -2024-09-06T11:05:03.857Z CNTRLR [Node 001] The node is alive. -2024-09-06T11:05:08.565Z DRIVER all queues busy -2024-09-06T11:05:08.567Z SERIAL » 0x0105005081042f (7 bytes) -2024-09-06T11:05:08.568Z DRIVER » [REQ] [SetLearnMode] - callback id: 4 - intent: Inclusion -2024-09-06T11:05:08.574Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:08.575Z SERIAL « 0x0104015001ab (6 bytes) -2024-09-06T11:05:08.576Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:08.577Z DRIVER « [RES] [SetLearnMode] - success: true -2024-09-06T11:05:08.579Z DRIVER all queues idle -2024-09-06T11:05:08.748Z SERIAL « 0x0107005004010200af (9 bytes) -2024-09-06T11:05:08.749Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:08.749Z DRIVER « [REQ] [SetLearnMode] - callback id: 4 - status: Started - assigned node id: 2 -2024-09-06T11:05:08.749Z DRIVER handling request SetLearnMode (80) -2024-09-06T11:05:08.749Z DRIVER 1 handler registered! -2024-09-06T11:05:08.749Z DRIVER invoking handler #0 -2024-09-06T11:05:08.750Z DRIVER the message was handled -2024-09-06T11:05:08.856Z DRIVER all queues busy -2024-09-06T11:05:08.857Z SERIAL » 0x0103003bc7 (5 bytes) -2024-09-06T11:05:08.858Z DRIVER » [REQ] [GetBackgroundRSSI] -2024-09-06T11:05:08.863Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:08.863Z SERIAL « 0x0107013b97a7a77f2a (9 bytes) -2024-09-06T11:05:08.864Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:08.865Z DRIVER « [RES] [GetBackgroundRSSI] - channel 0: -105 dBm - channel 1: -89 dBm - channel 2: -89 dBm - channel 3: N/A -2024-09-06T11:05:08.866Z DRIVER all queues idle -2024-09-06T11:05:09.269Z SERIAL « 0x01060049100100a1 (8 bytes) -2024-09-06T11:05:09.269Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:09.270Z DRIVER « [REQ] [ApplicationUpdateRequest] - type: SUC_IdChanged - SUC node ID: 1 -2024-09-06T11:05:09.286Z SERIAL « 0x0107005004050200ab (9 bytes) -2024-09-06T11:05:09.286Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:09.287Z DRIVER « [REQ] [SetLearnMode] - callback id: 4 - status: ProtocolDone - assigned node id: 2 -2024-09-06T11:05:09.287Z DRIVER handling request SetLearnMode (80) -2024-09-06T11:05:09.287Z DRIVER 1 handler registered! -2024-09-06T11:05:09.287Z DRIVER invoking handler #0 -2024-09-06T11:05:09.288Z DRIVER the message was handled -2024-09-06T11:05:09.288Z DRIVER waiting for security bootstrapping... -2024-09-06T11:05:09.289Z CNTRLR querying controller IDs... -2024-09-06T11:05:09.289Z DRIVER all queues busy -2024-09-06T11:05:09.290Z SERIAL » 0x01030020dc (5 bytes) -2024-09-06T11:05:09.290Z DRIVER » [REQ] [GetControllerId] -2024-09-06T11:05:09.295Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:09.296Z SERIAL « 0x01080120c80a10c502c3 (10 bytes) -2024-09-06T11:05:09.296Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:09.296Z DRIVER « [RES] [GetControllerId] - home ID: 0xc80a10c5 - own node ID: 2 -2024-09-06T11:05:09.297Z CNTRLR received controller IDs: - home ID: 0xc80a10c5 - own node ID: 2 -2024-09-06T11:05:09.297Z DRIVER Joined network with home ID 0xc80a10c5, switching to new network cache... -2024-09-06T11:05:09.297Z CNTRLR querying controller capabilities... -2024-09-06T11:05:09.298Z SERIAL » 0x01030005f9 (5 bytes) -2024-09-06T11:05:09.298Z DRIVER » [REQ] [GetControllerCapabilities] -2024-09-06T11:05:09.303Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:09.304Z SERIAL « 0x0104010506f9 (6 bytes) -2024-09-06T11:05:09.304Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:09.304Z DRIVER « [RES] [GetControllerCapabilities] - payload: 0x06 -2024-09-06T11:05:09.305Z CNTRLR received controller capabilities: - controller role: Inclusion - is the SUC: false - started this network: false - SIS is present: true - was real primary: false -2024-09-06T11:05:09.305Z CNTRLR querying additional controller information... -2024-09-06T11:05:09.306Z SERIAL » 0x01030002fe (5 bytes) -2024-09-06T11:05:09.306Z DRIVER » [REQ] [GetSerialApiInitData] -2024-09-06T11:05:09.315Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:09.315Z SERIAL « 0x012501020a001d030000000000000000000000000000000000000000000000000 (39 bytes) - 00000000800c5 -2024-09-06T11:05:09.315Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:09.316Z DRIVER « [RES] [GetSerialApiInitData] - payload: 0x0a001d03000000000000000000000000000000000000000000000000000000000 - 800 -2024-09-06T11:05:09.316Z CNTRLR received additional controller information: - Z-Wave API version: 1 (official) - Z-Wave chip type: EFR32ZG23 / ZGM230S - node type Controller - controller role: primary - controller is the SIS: false - controller supports timers: false - Z-Wave Classic nodes: 1, 2 -2024-09-06T11:05:09.317Z CNTRLR [Node 002] [Manufacturer Specific] manufacturerId: metadata updated -2024-09-06T11:05:09.317Z CNTRLR [Node 002] [Manufacturer Specific] productType: metadata updated -2024-09-06T11:05:09.317Z CNTRLR [Node 002] [Manufacturer Specific] productId: metadata updated -2024-09-06T11:05:09.318Z CNTRLR [Node 002] [+] [Manufacturer Specific] manufacturerId: 0 -2024-09-06T11:05:09.318Z CNTRLR [Node 002] [+] [Manufacturer Specific] productType: 4 -2024-09-06T11:05:09.318Z CNTRLR [Node 002] [+] [Manufacturer Specific] productId: 4 -2024-09-06T11:05:09.318Z CNTRLR [Node 002] [Version] firmwareVersions: metadata updated -2024-09-06T11:05:09.318Z CNTRLR [Node 002] [+] [Version] firmwareVersions: 7.22 -2024-09-06T11:05:09.318Z CNTRLR [Node 002] [Version] zWaveProtocolVersion: metadata updated -2024-09-06T11:05:09.318Z CNTRLR [Node 002] [+] [Version] zWaveProtocolVersion: "7.22.1" -2024-09-06T11:05:09.318Z CNTRLR [Node 002] [Version] sdkVersion: metadata updated -2024-09-06T11:05:09.318Z CNTRLR [Node 002] [+] [Version] sdkVersion: "7.22.1" -2024-09-06T11:05:09.318Z CNTRLR Interview completed -2024-09-06T11:05:09.318Z DRIVER all queues idle -2024-09-06T11:05:09.499Z SERIAL « 0x010b00a8000201029f0400d81e (13 bytes) -2024-09-06T11:05:09.500Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:09.501Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -40 dBm - └─[Security2CCKEXGet] -2024-09-06T11:05:22.139Z CNTRLR [Node 001] Received S2 bootstrap initiation, requesting keys: - · S2_AccessControl - · S2_Authenticated - · S2_Unauthenticated - · S0_Legacy - client-side auth: false -2024-09-06T11:05:24.375Z DRIVER all queues busy -2024-09-06T11:05:24.377Z SERIAL » 0x011200a90201069f05000201872500000000057f (20 bytes) -2024-09-06T11:05:24.379Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 5 - └─[Security2CCKEXReport] - echo: false - supported schemes: - · KEXScheme1 - supported ECDH profiles: - · Curve25519 - CSA requested: false - requested security classes: - · S2_AccessControl - · S2_Authenticated - · S2_Unauthenticated - · S0_Legacy -2024-09-06T11:05:24.421Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:24.421Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:05:24.421Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:24.423Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:05:24.430Z SERIAL « 0x011d00a90500000100d97f7f7f7f00000300000000030100007f7f7f7f7fe8 (31 bytes) -2024-09-06T11:05:24.430Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:24.431Z DRIVER « [REQ] [SendDataBridge] - callback id: 5 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -39 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:05:24.432Z DRIVER all queues idle -2024-09-06T11:05:24.451Z SERIAL « 0x010f00a8000201069f060002018700d999 (17 bytes) -2024-09-06T11:05:24.451Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:24.452Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -39 dBm - └─[Security2CCKEXSet] - echo: false - selected scheme: KEXScheme1 - selected ECDH profile: Curve25519 - CSA permitted: false - granted security classes: - · S2_Unauthenticated - · S2_Authenticated - · S2_AccessControl - · S0_Legacy -2024-09-06T11:05:24.454Z DRIVER all queues busy -2024-09-06T11:05:24.455Z SERIAL » 0x012f00a90201239f080000004d2fbeb6c2b5b7622a32ff6946734809975b3d00c (49 bytes) - e7d639056f7fd7f8375250000000006bb -2024-09-06T11:05:24.455Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 6 - └─[Security2CCPublicKeyReport] - is including node: false - public key: 0x00004d2fbeb6c2b5b7622a32ff6946734809975b3d00ce7d63905 - 6f7fd7f8375 -2024-09-06T11:05:24.466Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:24.467Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:05:24.468Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:24.468Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:05:24.487Z SERIAL « 0x011d00a90600000100d97f7f7f7f00000300000000030100007f7f7f7f7feb (31 bytes) -2024-09-06T11:05:24.487Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:24.488Z DRIVER « [REQ] [SendDataBridge] - callback id: 6 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -39 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:05:24.488Z DRIVER all queues idle -2024-09-06T11:05:24.516Z SERIAL « 0x012c00a8000201239f08014b2d67c5fc1c4760172137de73c0be95f4d6c3544af (46 bytes) - 037a442da5c6309354d4100d95b -2024-09-06T11:05:24.516Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:24.517Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -39 dBm - └─[Security2CCPublicKeyReport] - is including node: true - public key: 0x4b2d67c5fc1c4760172137de73c0be95f4d6c3544af037a442da5 - c6309354d41 -2024-09-06T11:05:24.519Z DRIVER all queues busy -2024-09-06T11:05:24.520Z SERIAL » 0x010f00a90201039f01a725000000000742 (17 bytes) -2024-09-06T11:05:24.521Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 7 - └─[Security2CCNonceGet] - sequence number: 167 -2024-09-06T11:05:24.526Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:24.528Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:05:24.529Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:24.529Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:05:24.547Z SERIAL « 0x011d00a90700000100d97f7f7f7f00000300000000030100007f7f7f7f7fea (31 bytes) -2024-09-06T11:05:24.548Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:24.548Z DRIVER « [REQ] [SendDataBridge] - callback id: 7 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -39 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:05:24.570Z SERIAL « 0x011d00a8000201149f02e40141268356a2061d10d0a567b6aa11a14300d91a (31 bytes) -2024-09-06T11:05:24.571Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:24.572Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -39 dBm - └─[Security2CCNonceReport] - sequence number: 228 - SOS: true - MOS: false - receiver entropy: 0x41268356a2061d10d0a567b6aa11a143 -2024-09-06T11:05:24.575Z SERIAL » 0x013000a90201249f03a8011241f8e3d97f8f9dd68d05e5ce20f70a0949f690891 (50 bytes) - a8669ae5a58faafde58652500000000084d -2024-09-06T11:05:24.576Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 8 - └─[Security2CCMessageEncapsulation] - │ sequence number: 168 - │ extensions: - │ · type: SPAN - │ sender EI: 0xf8e3d97f8f9dd68d05e5ce20f70a0949 - │ key: 0xba0a768edc36f7885e51c63b3d1c8608 - │ IV: 0x5345c0699cc4f877eb61b24e37 - │ ciphertext: 0xf690891a8669 - │ auth data: 0x0201c80a10c50024a8011241f8e3d97f8f9dd68d05e5ce20f70a094 - 9 - │ auth tag: 0xae5a58faafde5865 - │ security class: Temporary - └─[Security2CCKEXSet] - echo: true - selected scheme: KEXScheme1 - selected ECDH profile: Curve25519 - CSA permitted: false - granted security classes: - · S2_Unauthenticated - · S2_Authenticated - · S2_AccessControl - · S0_Legacy -2024-09-06T11:05:24.585Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:24.587Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:05:24.587Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:24.588Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:05:24.612Z SERIAL « 0x011d00a90800000100d97f7f7f7f00000300000000030100007f7f7f7f7fe5 (31 bytes) -2024-09-06T11:05:24.613Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:24.613Z DRIVER « [REQ] [SendDataBridge] - callback id: 8 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -39 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:05:24.636Z SERIAL « 0x011b00a8000201129f03e500428f5533ac14822bab5ec23b45ac00d9a2 (29 bytes) -2024-09-06T11:05:24.637Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:24.638Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -39 dBm - └─[Security2CCMessageEncapsulation] - │ sequence number: 229 - │ key: 0xba0a768edc36f7885e51c63b3d1c8608 - │ IV: 0x4e4ceb14e04905965a92d6b9ef - │ plaintext: 0x9f0501020187 - │ auth tag: 0x822bab5ec23b45ac - │ security class: Temporary - └─[Security2CCKEXReport] - echo: true - supported schemes: - · KEXScheme1 - supported ECDH profiles: - · Curve25519 - CSA requested: false - requested security classes: - · S2_Unauthenticated - · S2_Authenticated - · S2_AccessControl - · S0_Legacy -2024-09-06T11:05:24.641Z SERIAL » 0x011b00a902010f9f03a9004cb4a70c38d3a9b3497c5725000000000998 (29 bytes) -2024-09-06T11:05:24.641Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 9 - └─[Security2CCMessageEncapsulation] - │ sequence number: 169 - │ key: 0xba0a768edc36f7885e51c63b3d1c8608 - │ IV: 0x96181e40d56a9edac90701af73 - │ ciphertext: 0x4cb4a7 - │ auth data: 0x0201c80a10c5000fa900 - │ auth tag: 0x0c38d3a9b3497c57 - │ security class: Temporary - └─[Security2CCNetworkKeyGet] - security class: S2_Unauthenticated -2024-09-06T11:05:24.648Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:24.651Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:05:24.651Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:24.652Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:05:24.668Z SERIAL « 0x011d00a90900000100d97f7f7f7f00000300000000030100007f7f7f7f7fe4 (31 bytes) -2024-09-06T11:05:24.668Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:24.669Z DRIVER « [REQ] [SendDataBridge] - callback id: 9 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -39 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:05:24.669Z DRIVER all queues idle -2024-09-06T11:05:24.694Z SERIAL « 0x012800a80002011f9f03e6005af2a8d2443d73153404f665f7a1363109a314147 (42 bytes) - 7a4f05885e8e800d9ab -2024-09-06T11:05:24.695Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:24.696Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -39 dBm - └─[Security2CCMessageEncapsulation] - │ sequence number: 230 - │ key: 0xba0a768edc36f7885e51c63b3d1c8608 - │ IV: 0x45f6be582e90028e2ec202248e - │ plaintext: 0x9f0a015369389efa18ee2a4894c7fb48347fea - │ auth tag: 0x1477a4f05885e8e8 - │ security class: Temporary - └─[Security2CCNetworkKeyReport] - security class: S2_Unauthenticated -2024-09-06T11:05:24.697Z DRIVER all queues busy -2024-09-06T11:05:24.697Z SERIAL » 0x010f00a90201039f01aa25000000000a42 (17 bytes) -2024-09-06T11:05:24.698Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 10 - └─[Security2CCNonceGet] - sequence number: 170 -2024-09-06T11:05:24.703Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:24.706Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:05:24.706Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:24.707Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:05:24.722Z SERIAL « 0x011d00a90a00000100d97f7f7f7f00000300000000030100007f7f7f7f7fe7 (31 bytes) -2024-09-06T11:05:24.722Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:24.723Z DRIVER « [REQ] [SendDataBridge] - callback id: 10 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -39 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:05:24.741Z SERIAL « 0x011d00a8000201149f02e7017f3e13d7d4f217de0d2a5c69245ab00500d94c (31 bytes) -2024-09-06T11:05:24.742Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:24.742Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -39 dBm - └─[Security2CCNonceReport] - sequence number: 231 - SOS: true - MOS: false - receiver entropy: 0x7f3e13d7d4f217de0d2a5c69245ab005 -2024-09-06T11:05:24.744Z SERIAL » 0x012c00a90201209f03ab0112416c9053070ea7cbd892365571bb8f567098a6e6c (46 bytes) - d81aeeae5d3d625000000000ba2 -2024-09-06T11:05:24.744Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 11 - └─[Security2CCMessageEncapsulation] - │ sequence number: 171 - │ extensions: - │ · type: SPAN - │ sender EI: 0x6c9053070ea7cbd892365571bb8f5670 - │ key: 0x44b45806725f2a6ebc3e2641f36f6caa - │ IV: 0x0ea53396a858f7caa64da81545 - │ ciphertext: 0x98a6 - │ auth data: 0x0201c80a10c50020ab0112416c9053070ea7cbd892365571bb8f567 - 0 - │ auth tag: 0xe6cd81aeeae5d3d6 - │ security class: S2_Unauthenticated - └─[Security2CCNetworkKeyVerify] -2024-09-06T11:05:24.753Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:24.755Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:05:24.756Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:24.756Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:05:24.776Z SERIAL « 0x011d00a90b00000100d97f7f7f7f00000300000000030100007f7f7f7f7fe6 (31 bytes) -2024-09-06T11:05:24.776Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:24.776Z DRIVER « [REQ] [SendDataBridge] - callback id: 11 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -39 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:05:24.777Z DRIVER all queues idle -2024-09-06T11:05:24.794Z SERIAL « 0x010c00a8000201039f01e800d9f4 (14 bytes) -2024-09-06T11:05:24.795Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:24.796Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -39 dBm - └─[Security2CCNonceGet] - sequence number: 232 -2024-09-06T11:05:24.796Z DRIVER all queues busy -2024-09-06T11:05:24.797Z SERIAL » 0x012000a90201149f02ac017ce365eb0aeee30f265dcfaca3503bae05000000000 (34 bytes) - c3f -2024-09-06T11:05:24.798Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x05 - │ callback id: 12 - └─[Security2CCNonceReport] - sequence number: 172 - SOS: true - MOS: false - receiver entropy: 0x7ce365eb0aeee30f265dcfaca3503bae -2024-09-06T11:05:24.805Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:24.807Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:05:24.808Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:24.808Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:05:24.825Z SERIAL « 0x011d00a90c00000100d97f7f7f7f00000300000000030100007f7f7f7f7fe1 (31 bytes) -2024-09-06T11:05:24.826Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:24.826Z DRIVER « [REQ] [SendDataBridge] - callback id: 12 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -39 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:05:24.828Z DRIVER all queues idle -2024-09-06T11:05:24.849Z SERIAL « 0x012a00a8000201219f03e9011241e3ecc76c91f66723a2cf918c908f12aac6408 (44 bytes) - 47a688928fdf72cc400d9a2 -2024-09-06T11:05:24.850Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:24.851Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -39 dBm - └─[Security2CCMessageEncapsulation] - │ sequence number: 233 - │ extensions: - │ · type: SPAN - │ sender EI: 0xe3ecc76c91f66723a2cf918c908f12aa - │ key: 0xba0a768edc36f7885e51c63b3d1c8608 - │ IV: 0x506425ba50dbfe1af3850973dc - │ plaintext: 0x9f0c02 - │ auth tag: 0x7a688928fdf72cc4 - │ security class: Temporary - └─[Security2CCTransferEnd] - key verified: true - request complete: false -2024-09-06T11:05:24.851Z DRIVER all queues busy -2024-09-06T11:05:24.852Z SERIAL » 0x011b00a902010f9f03ad0032c7a9153ceaf3e3fde96625000000000da5 (29 bytes) -2024-09-06T11:05:24.852Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 13 - └─[Security2CCMessageEncapsulation] - │ sequence number: 173 - │ key: 0xba0a768edc36f7885e51c63b3d1c8608 - │ IV: 0x1690d623380bbe423060815569 - │ ciphertext: 0x32c7a9 - │ auth data: 0x0201c80a10c5000fad00 - │ auth tag: 0x153ceaf3e3fde966 - │ security class: Temporary - └─[Security2CCNetworkKeyGet] - security class: S2_Authenticated -2024-09-06T11:05:24.859Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:24.862Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:05:24.862Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:24.862Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:05:24.886Z SERIAL « 0x011d00a90d00000100d97f7f7f7f00000300000000030100007f7f7f7f7fe0 (31 bytes) -2024-09-06T11:05:24.887Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:24.888Z DRIVER « [REQ] [SendDataBridge] - callback id: 13 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -39 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:05:24.889Z DRIVER all queues idle -2024-09-06T11:05:24.911Z SERIAL « 0x012800a80002011f9f03ea0072c676cf8c27c4fe4f34ec4fc8eb31c340d8f1fca (42 bytes) - 58a7c176d544c00d9fd -2024-09-06T11:05:24.912Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:24.913Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -39 dBm - └─[Security2CCMessageEncapsulation] - │ sequence number: 234 - │ key: 0xba0a768edc36f7885e51c63b3d1c8608 - │ IV: 0x7da23cea0a62d4f4e1800adb6c - │ plaintext: 0x9f0a02656ef5c0f020f3c14238c04a1748b7e1 - │ auth tag: 0xfca58a7c176d544c - │ security class: Temporary - └─[Security2CCNetworkKeyReport] - security class: S2_Authenticated -2024-09-06T11:05:24.914Z DRIVER all queues busy -2024-09-06T11:05:24.915Z SERIAL » 0x010f00a90201039f01ae25000000000e42 (17 bytes) -2024-09-06T11:05:24.916Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 14 - └─[Security2CCNonceGet] - sequence number: 174 -2024-09-06T11:05:24.921Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:24.925Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:05:24.926Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:24.927Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:05:24.947Z SERIAL « 0x011d00a90e00000100d97f7f7f7f00000300000000030100007f7f7f7f7fe3 (31 bytes) -2024-09-06T11:05:24.948Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:24.949Z DRIVER « [REQ] [SendDataBridge] - callback id: 14 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -39 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:05:24.973Z SERIAL « 0x011d00a8000201149f02eb019f0c81c8baa966dbf855f4ec10791d2a00d96c (31 bytes) -2024-09-06T11:05:24.974Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:24.975Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -39 dBm - └─[Security2CCNonceReport] - sequence number: 235 - SOS: true - MOS: false - receiver entropy: 0x9f0c81c8baa966dbf855f4ec10791d2a -2024-09-06T11:05:24.976Z SERIAL » 0x012c00a90201209f03af01124129942536bfabf27b9238ad36bf05a60871818b6 (46 bytes) - 59c8eff6c23c925000000000f71 -2024-09-06T11:05:24.977Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 15 - └─[Security2CCMessageEncapsulation] - │ sequence number: 175 - │ extensions: - │ · type: SPAN - │ sender EI: 0x29942536bfabf27b9238ad36bf05a608 - │ key: 0xdda415256006027530b2d9548c898f93 - │ IV: 0x449ba0b4965628c1b636f66f45 - │ ciphertext: 0x7181 - │ auth data: 0x0201c80a10c50020af01124129942536bfabf27b9238ad36bf05a60 - 8 - │ auth tag: 0x8b659c8eff6c23c9 - │ security class: S2_Authenticated - └─[Security2CCNetworkKeyVerify] -2024-09-06T11:05:24.986Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:24.989Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:05:24.990Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:24.991Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:05:25.012Z SERIAL « 0x011d00a90f00000100d97f7f7f7f00000300000000030100007f7f7f7f7fe2 (31 bytes) -2024-09-06T11:05:25.012Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:25.013Z DRIVER « [REQ] [SendDataBridge] - callback id: 15 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -39 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:05:25.014Z DRIVER all queues idle -2024-09-06T11:05:25.030Z SERIAL « 0x010c00a8000201039f01ec00d9f0 (14 bytes) -2024-09-06T11:05:25.031Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:25.031Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -39 dBm - └─[Security2CCNonceGet] - sequence number: 236 -2024-09-06T11:05:25.032Z DRIVER all queues busy -2024-09-06T11:05:25.033Z SERIAL » 0x012000a90201149f02b001517dafb42bab9df98a5e8058039a790305000000001 (34 bytes) - 064 -2024-09-06T11:05:25.033Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x05 - │ callback id: 16 - └─[Security2CCNonceReport] - sequence number: 176 - SOS: true - MOS: false - receiver entropy: 0x517dafb42bab9df98a5e8058039a7903 -2024-09-06T11:05:25.040Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:25.043Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:05:25.043Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:25.043Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:05:25.060Z SERIAL « 0x011d00a91000000100d97f7f7f7f00000300000000030100007f7f7f7f7ffd (31 bytes) -2024-09-06T11:05:25.061Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:25.062Z DRIVER « [REQ] [SendDataBridge] - callback id: 16 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -39 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:05:25.062Z DRIVER all queues idle -2024-09-06T11:05:25.086Z SERIAL « 0x012a00a8000201219f03ed01124124a1abcb9a02883058d24d40247cb572472c6 (44 bytes) - 2f4bd8b7448084d9800d952 -2024-09-06T11:05:25.087Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:25.088Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -39 dBm - └─[Security2CCMessageEncapsulation] - │ sequence number: 237 - │ extensions: - │ · type: SPAN - │ sender EI: 0x24a1abcb9a02883058d24d40247cb572 - │ key: 0xba0a768edc36f7885e51c63b3d1c8608 - │ IV: 0x3c10ed8c02588f8a544e741506 - │ plaintext: 0x9f0c02 - │ auth tag: 0xf4bd8b7448084d98 - │ security class: Temporary - └─[Security2CCTransferEnd] - key verified: true - request complete: false -2024-09-06T11:05:25.088Z DRIVER all queues busy -2024-09-06T11:05:25.089Z SERIAL » 0x011b00a902010f9f03b100b7a7cba4fee41a55ceb6a6250000000011ac (29 bytes) -2024-09-06T11:05:25.089Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 17 - └─[Security2CCMessageEncapsulation] - │ sequence number: 177 - │ key: 0xba0a768edc36f7885e51c63b3d1c8608 - │ IV: 0x3f4ca78d9d7b8772913260ddf6 - │ ciphertext: 0xb7a7cb - │ auth data: 0x0201c80a10c5000fb100 - │ auth tag: 0xa4fee41a55ceb6a6 - │ security class: Temporary - └─[Security2CCNetworkKeyGet] - security class: S2_AccessControl -2024-09-06T11:05:25.096Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:25.099Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:05:25.099Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:25.099Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:05:25.119Z SERIAL « 0x011d00a91100000100d97f7f7f7f00000300000000030100007f7f7f7f7ffc (31 bytes) -2024-09-06T11:05:25.119Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:25.120Z DRIVER « [REQ] [SendDataBridge] - callback id: 17 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -39 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:05:25.120Z DRIVER all queues idle -2024-09-06T11:05:25.145Z SERIAL « 0x012800a80002011f9f03ee00a81baed2e377c75a785675d80aa2d4d965fc702d9 (42 bytes) - 43e7cc53334e200d91a -2024-09-06T11:05:25.146Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:25.147Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -39 dBm - └─[Security2CCMessageEncapsulation] - │ sequence number: 238 - │ key: 0xba0a768edc36f7885e51c63b3d1c8608 - │ IV: 0x2b5242176fd36b74ebd2588a69 - │ plaintext: 0x9f0a0431132050077310b6f7032f91c79c2eb8 - │ auth tag: 0x2d943e7cc53334e2 - │ security class: Temporary - └─[Security2CCNetworkKeyReport] - security class: S2_AccessControl -2024-09-06T11:05:25.147Z DRIVER all queues busy -2024-09-06T11:05:25.148Z SERIAL » 0x010f00a90201039f01b225000000001242 (17 bytes) -2024-09-06T11:05:25.148Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 18 - └─[Security2CCNonceGet] - sequence number: 178 -2024-09-06T11:05:25.154Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:25.157Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:05:25.157Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:25.158Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:05:25.176Z SERIAL « 0x011d00a91200000100d97f7f7f7f00000300000000030100007f7f7f7f7fff (31 bytes) -2024-09-06T11:05:25.176Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:25.176Z DRIVER « [REQ] [SendDataBridge] - callback id: 18 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -39 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:05:25.197Z SERIAL « 0x011d00a8000201149f02ef0192b1bb0e0bf8ebf23b3e23d2f5f6d12500d988 (31 bytes) -2024-09-06T11:05:25.198Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:25.198Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -39 dBm - └─[Security2CCNonceReport] - sequence number: 239 - SOS: true - MOS: false - receiver entropy: 0x92b1bb0e0bf8ebf23b3e23d2f5f6d125 -2024-09-06T11:05:25.200Z SERIAL » 0x012c00a90201209f03b3011241d644fd7aceb92302b2458014f83422c1f9d0df9 (46 bytes) - 730abc69c3aa92500000000132e -2024-09-06T11:05:25.200Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 19 - └─[Security2CCMessageEncapsulation] - │ sequence number: 179 - │ extensions: - │ · type: SPAN - │ sender EI: 0xd644fd7aceb92302b2458014f83422c1 - │ key: 0xfca06923982033f3af9dfc7c1e4ad45a - │ IV: 0x428af89b733a090b8fa86a7ef8 - │ ciphertext: 0xf9d0 - │ auth data: 0x0201c80a10c50020b3011241d644fd7aceb92302b2458014f83422c - 1 - │ auth tag: 0xdf9730abc69c3aa9 - │ security class: S2_AccessControl - └─[Security2CCNetworkKeyVerify] -2024-09-06T11:05:25.209Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:25.211Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:05:25.212Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:25.212Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:05:25.232Z SERIAL « 0x011d00a91300000200d97f7f7f7f00000300000000030100007f7f7f7f7ffd (31 bytes) -2024-09-06T11:05:25.232Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:25.233Z DRIVER « [REQ] [SendDataBridge] - callback id: 19 - transmit status: OK, took 20 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -39 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:05:25.233Z DRIVER all queues idle -2024-09-06T11:05:25.249Z SERIAL « 0x010c00a8000201039f01f000d9ec (14 bytes) -2024-09-06T11:05:25.250Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:25.250Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -39 dBm - └─[Security2CCNonceGet] - sequence number: 240 -2024-09-06T11:05:25.251Z DRIVER all queues busy -2024-09-06T11:05:25.252Z SERIAL » 0x012000a90201149f02b4011a41624d9611356de8b7ce83dca9993805000000001 (34 bytes) - 435 -2024-09-06T11:05:25.252Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x05 - │ callback id: 20 - └─[Security2CCNonceReport] - sequence number: 180 - SOS: true - MOS: false - receiver entropy: 0x1a41624d9611356de8b7ce83dca99938 -2024-09-06T11:05:25.260Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:25.262Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:05:25.263Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:25.263Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:05:25.280Z SERIAL « 0x011d00a91400000100d97f7f7f7f00000300000000030100007f7f7f7f7ff9 (31 bytes) -2024-09-06T11:05:25.280Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:25.281Z DRIVER « [REQ] [SendDataBridge] - callback id: 20 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -39 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:05:25.281Z DRIVER all queues idle -2024-09-06T11:05:25.304Z SERIAL « 0x012a00a8000201219f03f10112419bf94bd8ff38c1d1155ab536c92c5f7acc193 (44 bytes) - 256e46a0c62ed6d8800d9ca -2024-09-06T11:05:25.305Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:25.306Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -39 dBm - └─[Security2CCMessageEncapsulation] - │ sequence number: 241 - │ extensions: - │ · type: SPAN - │ sender EI: 0x9bf94bd8ff38c1d1155ab536c92c5f7a - │ key: 0xba0a768edc36f7885e51c63b3d1c8608 - │ IV: 0x1b1c27ccd3e078d4cb788a7ef0 - │ plaintext: 0x9f0c02 - │ auth tag: 0x56e46a0c62ed6d88 - │ security class: Temporary - └─[Security2CCTransferEnd] - key verified: true - request complete: false -2024-09-06T11:05:25.306Z DRIVER all queues busy -2024-09-06T11:05:25.307Z SERIAL » 0x011b00a902010f9f03b50027ab0a469c4b6c5b1416f825000000001582 (29 bytes) -2024-09-06T11:05:25.308Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 21 - └─[Security2CCMessageEncapsulation] - │ sequence number: 181 - │ key: 0xba0a768edc36f7885e51c63b3d1c8608 - │ IV: 0x23b368bfa4ba5dd44b7b68b0b6 - │ ciphertext: 0x27ab0a - │ auth data: 0x0201c80a10c5000fb500 - │ auth tag: 0x469c4b6c5b1416f8 - │ security class: Temporary - └─[Security2CCNetworkKeyGet] - security class: S0_Legacy -2024-09-06T11:05:25.314Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:25.317Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:05:25.317Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:25.318Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:05:25.335Z SERIAL « 0x011d00a91500000100d97f7f7f7f00000300000000030100007f7f7f7f7ff8 (31 bytes) -2024-09-06T11:05:25.336Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:25.336Z DRIVER « [REQ] [SendDataBridge] - callback id: 21 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -39 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:05:25.337Z DRIVER all queues idle -2024-09-06T11:05:25.359Z SERIAL « 0x012800a80002011f9f03f200f959ad8b13753eb8237cd2990a5edbdc4f37305e9 (42 bytes) - 2015d8cb4d34b00d98d -2024-09-06T11:05:25.360Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:25.361Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -39 dBm - └─[Security2CCMessageEncapsulation] - │ sequence number: 242 - │ key: 0xba0a768edc36f7885e51c63b3d1c8608 - │ IV: 0x8af07c0e552fccd1990e26a2e2 - │ plaintext: 0x9f0a800102030405060708090a0b0c0d0e0f10 - │ auth tag: 0x5e92015d8cb4d34b - │ security class: Temporary - └─[Security2CCNetworkKeyReport] - security class: S0_Legacy -2024-09-06T11:05:25.362Z DRIVER all queues busy -2024-09-06T11:05:25.363Z SERIAL » 0x010f00a90201039f01b625000000001642 (17 bytes) -2024-09-06T11:05:25.363Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 22 - └─[Security2CCNonceGet] - sequence number: 182 -2024-09-06T11:05:25.369Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:25.371Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:05:25.371Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:25.372Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:05:25.388Z SERIAL « 0x011d00a91600000100d97f7f7f7f00000300000000030100007f7f7f7f7ffb (31 bytes) -2024-09-06T11:05:25.389Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:25.389Z DRIVER « [REQ] [SendDataBridge] - callback id: 22 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -39 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:05:25.409Z SERIAL « 0x011d00a8000201149f02f301591072502cc06bfdc1b985fc8b7e9f7500d9e4 (31 bytes) -2024-09-06T11:05:25.410Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:25.411Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -39 dBm - └─[Security2CCNonceReport] - sequence number: 243 - SOS: true - MOS: false - receiver entropy: 0x591072502cc06bfdc1b985fc8b7e9f75 -2024-09-06T11:05:25.412Z SERIAL » 0x012c00a90201209f03b70112417b17ee5e7fd64614f64846ccf4c83a0260f29c5 (46 bytes) - 680a3c8ae60522500000000172a -2024-09-06T11:05:25.413Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 23 - └─[Security2CCMessageEncapsulation] - │ sequence number: 183 - │ extensions: - │ · type: SPAN - │ sender EI: 0x7b17ee5e7fd64614f64846ccf4c83a02 - │ key: 0xece479ca82cc867c1db471e86eab2248 - │ IV: 0x6e2e5d911ea903206d6d1f38b8 - │ ciphertext: 0x60f2 - │ auth data: 0x0201c80a10c50020b70112417b17ee5e7fd64614f64846ccf4c83a0 - 2 - │ auth tag: 0x9c5680a3c8ae6052 - │ security class: S0_Legacy - └─[Security2CCNetworkKeyVerify] -2024-09-06T11:05:25.422Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:25.425Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:05:25.426Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:25.427Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:05:25.446Z SERIAL « 0x011d00a91700000100d97f7f7f7f00000300000000030100007f7f7f7f7ffa (31 bytes) -2024-09-06T11:05:25.446Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:25.447Z DRIVER « [REQ] [SendDataBridge] - callback id: 23 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -39 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:05:25.447Z DRIVER all queues idle -2024-09-06T11:05:25.464Z SERIAL « 0x010c00a8000201039f01f400d9e8 (14 bytes) -2024-09-06T11:05:25.464Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:25.465Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -39 dBm - └─[Security2CCNonceGet] - sequence number: 244 -2024-09-06T11:05:25.466Z DRIVER all queues busy -2024-09-06T11:05:25.466Z SERIAL » 0x012000a90201149f02b801fdce68f693b0caefa4c7bc60935f633f05000000001 (34 bytes) - 8dc -2024-09-06T11:05:25.467Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x05 - │ callback id: 24 - └─[Security2CCNonceReport] - sequence number: 184 - SOS: true - MOS: false - receiver entropy: 0xfdce68f693b0caefa4c7bc60935f633f -2024-09-06T11:05:25.474Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:25.477Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:05:25.477Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:25.477Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:05:25.496Z SERIAL « 0x011d00a91800000100d97f7f7f7f00000300000000030100007f7f7f7f7ff5 (31 bytes) -2024-09-06T11:05:25.497Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:25.497Z DRIVER « [REQ] [SendDataBridge] - callback id: 24 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -39 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:05:25.498Z DRIVER all queues idle -2024-09-06T11:05:25.522Z SERIAL « 0x012a00a8000201219f03f5011241c2f0ffb5a7f3c01f8b52f8255358c660513bd (44 bytes) - c2b90b0602c845b2300d9ea -2024-09-06T11:05:25.523Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:25.523Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -39 dBm - └─[Security2CCMessageEncapsulation] - │ sequence number: 245 - │ extensions: - │ · type: SPAN - │ sender EI: 0xc2f0ffb5a7f3c01f8b52f8255358c660 - │ key: 0xba0a768edc36f7885e51c63b3d1c8608 - │ IV: 0x5fe047a15c4f3a56b698cb51f4 - │ plaintext: 0x9f0c02 - │ auth tag: 0x2b90b0602c845b23 - │ security class: Temporary - └─[Security2CCTransferEnd] - key verified: true - request complete: false -2024-09-06T11:05:25.524Z DRIVER all queues busy -2024-09-06T11:05:25.524Z SERIAL » 0x011b00a902010f9f03b900d21d0f61da2ac33d0ed7442500000000196a (29 bytes) -2024-09-06T11:05:25.525Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 25 - └─[Security2CCMessageEncapsulation] - │ sequence number: 185 - │ key: 0xba0a768edc36f7885e51c63b3d1c8608 - │ IV: 0x239de663297e35472ac380463b - │ ciphertext: 0xd21d0f - │ auth data: 0x0201c80a10c5000fb900 - │ auth tag: 0x61da2ac33d0ed744 - │ security class: Temporary - └─[Security2CCTransferEnd] - key verified: false - request complete: true -2024-09-06T11:05:25.532Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:25.534Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:05:25.535Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:25.535Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:05:25.553Z SERIAL « 0x011d00a91900000100d97f7f7f7f00000300000000030100007f7f7f7f7ff4 (31 bytes) -2024-09-06T11:05:25.553Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:25.554Z DRIVER « [REQ] [SendDataBridge] - callback id: 25 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -39 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:05:25.554Z DRIVER Security S2 bootstrapping successful with these security classes: - · S2_AccessControl - · S2_Authenticated - · S2_Unauthenticated - · S0_Legacy -2024-09-06T11:05:25.554Z CNTRLR » [Node 001] querying protocol info... -2024-09-06T11:05:25.555Z SERIAL » 0x0104004101bb (6 bytes) -2024-09-06T11:05:25.555Z DRIVER » [REQ] [GetNodeProtocolInfo] - payload: 0x01 -2024-09-06T11:05:25.561Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:25.562Z SERIAL « 0x010a0141d3960102010000f2 (12 bytes) -2024-09-06T11:05:25.562Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:25.563Z DRIVER « [RES] [GetNodeProtocolInfo] - payload: 0xd3960102010000 -2024-09-06T11:05:25.563Z CNTRLR « [Node 001] received response for protocol info: - basic device class: Static Controller - generic device class: Remote Controller - specific device class: Unused - node type: Controller - is always listening: true - is frequent listening: false - can route messages: true - supports security: false - supports beaming: true - maximum data rate: 100000 kbps - protocol version: 3 -2024-09-06T11:05:25.564Z CNTRLR [Node 001] Interview stage completed: ProtocolInfo -2024-09-06T11:05:25.564Z DRIVER Finished joining network -2024-09-06T11:05:25.564Z DRIVER all queues idle -2024-09-06T11:05:38.856Z DRIVER all queues busy -2024-09-06T11:05:38.857Z SERIAL » 0x0103003bc7 (5 bytes) -2024-09-06T11:05:38.857Z DRIVER » [REQ] [GetBackgroundRSSI] -2024-09-06T11:05:38.863Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:38.863Z SERIAL « 0x0107013b9997977f24 (9 bytes) -2024-09-06T11:05:38.863Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:38.864Z DRIVER « [RES] [GetBackgroundRSSI] - channel 0: -103 dBm - channel 1: -105 dBm - channel 2: -105 dBm - channel 3: N/A -2024-09-06T11:05:38.865Z DRIVER all queues idle -2024-09-06T11:05:45.886Z DRIVER ███████╗ ██╗ ██╗ █████╗ ██╗ ██╗ ███████╗ ██╗ ███████╗ - ╚══███╔╝ ██║ ██║ ██╔══██╗ ██║ ██║ ██╔════╝ ██║ ██╔════╝ - ███╔╝ █████╗ ██║ █╗ ██║ ███████║ ██║ ██║ █████╗ ██║ ███████╗ - ███╔╝ ╚════╝ ██║███╗██║ ██╔══██║ ╚██╗ ██╔╝ ██╔══╝ ██ ██║ ╚════██║ - ███████╗ ╚███╔███╔╝ ██║ ██║ ╚████╔╝ ███████╗ ╚█████╔╝ ███████║ - ╚══════╝ ╚══╝╚══╝ ╚═╝ ╚═╝ ╚═══╝ ╚══════╝ ╚════╝ ╚══════╝ -2024-09-06T11:05:45.886Z DRIVER version 13.2.0 -2024-09-06T11:05:45.887Z DRIVER -2024-09-06T11:05:45.887Z DRIVER starting driver... -2024-09-06T11:05:45.887Z DRIVER opening serial port /dev/serial/by-id/usb-Silicon_Labs_CP2102N_USB_to_UART_Bri - dge_Controller_ca4d95064355ee118d4d1294de9da576-if00-port0 -2024-09-06T11:05:45.895Z DRIVER serial port opened -2024-09-06T11:05:45.896Z SERIAL » 0x15 (1 bytes) -2024-09-06T11:05:46.902Z DRIVER loading configuration... -2024-09-06T11:05:46.907Z CONFIG version 13.2.0 -2024-09-06T11:05:47.213Z DRIVER beginning interview... -2024-09-06T11:05:47.214Z DRIVER added request handler for AddNodeToNetwork (0x4a)... - 1 registered -2024-09-06T11:05:47.214Z DRIVER added request handler for RemoveNodeFromNetwork (0x4b)... - 1 registered -2024-09-06T11:05:47.214Z DRIVER added request handler for ReplaceFailedNode (0x63)... - 1 registered -2024-09-06T11:05:47.214Z DRIVER added request handler for SetLearnMode (0x50)... - 1 registered -2024-09-06T11:05:47.215Z CNTRLR querying Serial API capabilities... -2024-09-06T11:05:47.223Z SERIAL » 0x01030007fb (5 bytes) -2024-09-06T11:05:47.223Z DRIVER » [REQ] [GetSerialApiCapabilities] -2024-09-06T11:05:47.233Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:47.233Z SERIAL « 0x012b01070716000000040004f6873e88cf2bc05ffbd7fde09700008000808680b (45 bytes) - a0500700000ee7fc000000041 -2024-09-06T11:05:47.234Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:47.234Z DRIVER « [RES] [GetSerialApiCapabilities] - payload: 0x0716000000040004f6873e88cf2bc05ffbd7fde09700008000808680ba0500700 - 000ee7fc0000000 -2024-09-06T11:05:47.236Z CNTRLR received API capabilities: - firmware version: 7.22 - manufacturer ID: 0x00 - product type: 0x04 - product ID: 0x04 - supported functions: - · GetSerialApiInitData (0x02) - · SetApplicationNodeInformation (0x03) - · GetControllerCapabilities (0x05) - · SetSerialApiTimeouts (0x06) - · GetSerialApiCapabilities (0x07) - · SoftReset (0x08) - · GetProtocolVersion (0x09) - · SerialAPIStarted (0x0a) - · SerialAPISetup (0x0b) - · SetRFReceiveMode (0x10) - · SendNodeInformation (0x12) - · SendData (0x13) - · SendDataMulticast (0x14) - · GetControllerVersion (0x15) - · SendDataAbort (0x16) - · FUNC_ID_ZW_GET_RANDOM (0x1c) - · GetControllerId (0x20) - · UNKNOWN_FUNC_MEMORY_GET_BYTE (0x21) - · UNKNOWN_FUNC_MEMORY_PUT_BYTE (0x22) - · UNKNOWN_FUNC_MEMORY_GET_BUFFER (0x23) - · UNKNOWN_FUNC_MEMORY_PUT_BUFFER (0x24) - · EnterBootloader (0x27) - · UNKNOWN_FUNC_UNKNOWN_0x28 (0x28) - · GetNVMId (0x29) - · ExtNVMReadLongBuffer (0x2a) - · ExtNVMReadLongByte (0x2c) - · NVMOperations (0x2e) - · ClearTxTimers (0x37) - · GetTxTimers (0x38) - · ClearNetworkStats (0x39) - · GetNetworkStats (0x3a) - · GetBackgroundRSSI (0x3b) - · SetListenBeforeTalkThreshold (0x3c) - · ExtendedNVMOperations (0x3d) - · RemoveSpecificNodeIdFromNetwork (0x3f) - · GetNodeProtocolInfo (0x41) - · HardReset (0x42) - · FUNC_ID_ZW_REPLICATION_COMMAND_COMPLETE (0x44) - · FUNC_ID_ZW_REPLICATION_SEND_DATA (0x45) - · AssignReturnRoute (0x46) - · DeleteReturnRoute (0x47) - · RequestNodeNeighborUpdate (0x48) - · ApplicationUpdateRequest (0x49) - · AddNodeToNetwork (0x4a) - · RemoveNodeFromNetwork (0x4b) - · AddPrimaryController (0x4d) - · AssignPriorityReturnRoute (0x4f) - · SetLearnMode (0x50) - · AssignSUCReturnRoute (0x51) - · RequestNetworkUpdate (0x53) - · SetSUCNodeId (0x54) - · DeleteSUCReturnRoute (0x55) - · GetSUCNodeId (0x56) - · SendSUCNodeId (0x57) - · AssignPrioritySUCReturnRoute (0x58) - · ExploreRequestInclusion (0x5e) - · ExploreRequestExclusion (0x5f) - · RequestNodeInfo (0x60) - · RemoveFailedNode (0x61) - · IsFailedNode (0x62) - · ReplaceFailedNode (0x63) - · undefined (0x65) - · RequestProtocolCCEncryption (0x68) - · GetRoutingInfo (0x80) - · LockUnlockLastRoute (0x90) - · GetPriorityRoute (0x92) - · SetPriorityRoute (0x93) - · UNKNOWN_FUNC_UNKNOWN_0x98 (0x98) - · VirtualNodeSetNodeInfo (0xa0) - · VirtualNodeSendNodeInfo (0xa2) - · VirtualNodeSetLearnMode (0xa4) - · GetVirtualNodes (0xa5) - · IsVirtualNode (0xa6) - · BridgeApplicationCommand (0xa8) - · SendDataBridge (0xa9) - · SendDataMulticastBridge (0xab) - · GetLibrary (0xbd) - · SendTestFrame (0xbe) - · GetProtocolStatus (0xbf) - · StartWatchdog (0xd2) - · StopWatchdog (0xd3) - · SetMaximumRoutingAttempts (0xd4) - · SetMaxSmartStartInclusionRequestInterval (0xd6) - · undefined (0xd7) - · undefined (0xd8) - · Shutdown (0xd9) - · GetLongRangeNodes (0xda) - · GetLongRangeChannel (0xdb) - · SetLongRangeChannel (0xdc) - · SetLongRangeShadowNodeIDs (0xdd) - · Proprietary_DE (0xde) - · Proprietary_DF (0xdf) - · Proprietary_E7 (0xe7) - · Proprietary_E8 (0xe8) -2024-09-06T11:05:47.236Z CNTRLR querying additional controller information... -2024-09-06T11:05:47.237Z SERIAL » 0x01030002fe (5 bytes) -2024-09-06T11:05:47.238Z DRIVER » [REQ] [GetSerialApiInitData] -2024-09-06T11:05:47.246Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:47.247Z SERIAL « 0x012501020a001d030000000000000000000000000000000000000000000000000 (39 bytes) - 00000000800c5 -2024-09-06T11:05:47.247Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:47.248Z DRIVER « [RES] [GetSerialApiInitData] - payload: 0x0a001d03000000000000000000000000000000000000000000000000000000000 - 800 -2024-09-06T11:05:47.249Z CNTRLR received additional controller information: - Z-Wave API version: 1 (official) - Z-Wave chip type: EFR32ZG23 / ZGM230S - node type Controller - controller role: primary - controller is the SIS: false - controller supports timers: false - Z-Wave Classic nodes: 1, 2 -2024-09-06T11:05:47.249Z CNTRLR querying version info... -2024-09-06T11:05:47.250Z SERIAL » 0x01030015e9 (5 bytes) -2024-09-06T11:05:47.250Z DRIVER » [REQ] [GetControllerVersion] -2024-09-06T11:05:47.257Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:47.258Z SERIAL « 0x011001155a2d5761766520372e3232000797 (18 bytes) -2024-09-06T11:05:47.258Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:47.259Z DRIVER « [RES] [GetControllerVersion] - payload: 0x5a2d5761766520372e32320007 -2024-09-06T11:05:47.259Z CNTRLR received version info: - controller type: Bridge Controller - library version: Z-Wave 7.22 -2024-09-06T11:05:47.259Z CNTRLR querying protocol version info... -2024-09-06T11:05:47.260Z SERIAL » 0x01030009f5 (5 bytes) -2024-09-06T11:05:47.260Z DRIVER » [REQ] [GetProtocolVersion] -2024-09-06T11:05:47.267Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:47.267Z SERIAL « 0x0119010900071601abcd63636639623665613165616566313162c3 (27 bytes) -2024-09-06T11:05:47.268Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:47.268Z DRIVER « [RES] [GetProtocolVersion] - payload: 0x00071601abcd63636639623665613165616566313162 -2024-09-06T11:05:47.269Z CNTRLR received protocol version info: - protocol type: Z-Wave - protocol version: 7.22.1 - appl. framework build no.: 43981 - git commit hash: 63636639623665613165616566313162 -2024-09-06T11:05:47.269Z CNTRLR querying controller capabilities... -2024-09-06T11:05:47.271Z SERIAL » 0x01030005f9 (5 bytes) -2024-09-06T11:05:47.271Z DRIVER » [REQ] [GetControllerCapabilities] -2024-09-06T11:05:47.276Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:47.276Z SERIAL « 0x0104010506f9 (6 bytes) -2024-09-06T11:05:47.277Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:47.277Z DRIVER « [RES] [GetControllerCapabilities] - payload: 0x06 -2024-09-06T11:05:47.278Z CNTRLR received controller capabilities: - controller role: Inclusion - is the SUC: false - started this network: false - SIS is present: true - was real primary: false -2024-09-06T11:05:47.278Z CNTRLR querying serial API setup capabilities... -2024-09-06T11:05:47.279Z SERIAL » 0x0104000b01f1 (6 bytes) -2024-09-06T11:05:47.279Z DRIVER » [REQ] [SerialAPISetup] - command: GetSupportedCommands - payload: 0x01 -2024-09-06T11:05:47.285Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:47.286Z SERIAL « 0x0116010b01ff9f8007800000008000000000000000800085 (24 bytes) -2024-09-06T11:05:47.287Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:47.287Z DRIVER « [RES] [SerialAPISetup] - command: GetSupportedCommands - payload: 0xff9f80078000000080000000000000008000 -2024-09-06T11:05:47.288Z CNTRLR supported serial API setup commands: - · GetSupportedCommands - · SetTxStatusReport - · SetLongRangeMaximumTxPower - · SetPowerlevel - · GetLongRangeMaximumTxPower - · GetPowerlevel - · GetMaximumPayloadSize - · GetLongRangeMaximumPayloadSize - · SetPowerlevel16Bit - · GetPowerlevel16Bit - · GetRFRegion - · SetRFRegion - · SetNodeIDType -2024-09-06T11:05:47.288Z CNTRLR querying max. payload size... -2024-09-06T11:05:47.289Z SERIAL » 0x0104000b10e0 (6 bytes) -2024-09-06T11:05:47.289Z DRIVER » [REQ] [SerialAPISetup] - command: GetMaximumPayloadSize - payload: 0x10 -2024-09-06T11:05:47.294Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:47.294Z SERIAL « 0x0105010b102ece (7 bytes) -2024-09-06T11:05:47.294Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:47.295Z DRIVER « [RES] [SerialAPISetup] - command: GetMaximumPayloadSize - maximum payload size: 46 bytes -2024-09-06T11:05:47.296Z CNTRLR maximum payload size: 46 bytes -2024-09-06T11:05:47.296Z CNTRLR supported Z-Wave features: - · SmartStart -2024-09-06T11:05:47.296Z CNTRLR Querying configured RF region... -2024-09-06T11:05:47.297Z SERIAL » 0x0104000b20d0 (6 bytes) -2024-09-06T11:05:47.297Z DRIVER » [REQ] [SerialAPISetup] - command: GetRFRegion - payload: 0x20 -2024-09-06T11:05:47.303Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:47.303Z SERIAL « 0x0105010b2000d0 (7 bytes) -2024-09-06T11:05:47.304Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:47.304Z DRIVER « [RES] [SerialAPISetup] - command: GetRFRegion - region: Europe -2024-09-06T11:05:47.305Z CNTRLR The controller is using RF region Europe -2024-09-06T11:05:47.305Z CNTRLR Querying configured max. Long Range powerlevel... -2024-09-06T11:05:47.306Z SERIAL » 0x0104000b05f5 (6 bytes) -2024-09-06T11:05:47.306Z DRIVER » [REQ] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - payload: 0x05 -2024-09-06T11:05:47.311Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:47.311Z SERIAL « 0x0106010b05008c7a (8 bytes) -2024-09-06T11:05:47.311Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:47.312Z DRIVER « [RES] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - max. TX power (LR): 14.0 dBm -2024-09-06T11:05:47.313Z CNTRLR The max. LR powerlevel is 14.0 dBm -2024-09-06T11:05:47.313Z CNTRLR Querying configured Long Range channel information... -2024-09-06T11:05:47.314Z SERIAL » 0x010300db27 (5 bytes) -2024-09-06T11:05:47.314Z DRIVER » [REQ] [GetLongRangeChannel] -2024-09-06T11:05:47.319Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:47.319Z SERIAL « 0x010501db001030 (7 bytes) -2024-09-06T11:05:47.320Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:47.320Z DRIVER « [RES] [GetLongRangeChannel] - payload: 0x0010 -2024-09-06T11:05:47.321Z CNTRLR received Z-Wave Long Range channel information: - channel: Unsupported - supports auto channel selection: true -2024-09-06T11:05:47.321Z CNTRLR Performing soft reset... -2024-09-06T11:05:47.322Z SERIAL » 0x01030008f4 (5 bytes) -2024-09-06T11:05:47.322Z DRIVER » [REQ] [SoftReset] -2024-09-06T11:05:47.327Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:47.328Z CNTRLR Waiting for the controller to reconnect... -2024-09-06T11:05:47.328Z DRIVER all queues idle -2024-09-06T11:05:47.436Z SERIAL « 0x0116000a0700010100085e989f556c568f7400031d00003f (24 bytes) -2024-09-06T11:05:47.437Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:47.439Z DRIVER « [REQ] [SerialAPIStarted] - wake up reason: SoftwareReset - watchdog enabled: false - generic device class: 0x01 - specific device class: 0x00 - always listening: false - supports Long Range: false -2024-09-06T11:05:47.441Z CNTRLR reconnected and restarted -2024-09-06T11:05:47.441Z CNTRLR Starting hardware watchdog... -2024-09-06T11:05:47.442Z CNTRLR Switching serial API to 16-bit node IDs... -2024-09-06T11:05:47.444Z CNTRLR Switching serial API to 8-bit node IDs... -2024-09-06T11:05:47.445Z DRIVER all queues busy -2024-09-06T11:05:47.446Z SERIAL » 0x010300d22e (5 bytes) -2024-09-06T11:05:47.447Z DRIVER » [REQ] [StartWatchdog] -2024-09-06T11:05:47.453Z SERIAL » 0x0105000b800273 (7 bytes) -2024-09-06T11:05:47.454Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 16 bit -2024-09-06T11:05:47.455Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:47.459Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:47.459Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T11:05:47.460Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:47.460Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T11:05:47.461Z CNTRLR Switching to 16-bit node IDs successful -2024-09-06T11:05:47.462Z SERIAL » 0x0105000b800170 (7 bytes) -2024-09-06T11:05:47.462Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 8 bit -2024-09-06T11:05:47.468Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:47.468Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T11:05:47.468Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:47.469Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T11:05:47.470Z CNTRLR Switching to 8-bit node IDs successful -2024-09-06T11:05:47.470Z CNTRLR querying controller IDs... -2024-09-06T11:05:47.471Z SERIAL » 0x01030020dc (5 bytes) -2024-09-06T11:05:47.471Z DRIVER » [REQ] [GetControllerId] -2024-09-06T11:05:47.476Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:47.477Z SERIAL « 0x01080120c80a10c502c3 (10 bytes) -2024-09-06T11:05:47.477Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:47.478Z DRIVER « [RES] [GetControllerId] - home ID: 0xc80a10c5 - own node ID: 2 -2024-09-06T11:05:47.479Z CNTRLR received controller IDs: - home ID: 0xc80a10c5 - own node ID: 2 -2024-09-06T11:05:47.479Z CNTRLR Enabling TX status report... -2024-09-06T11:05:47.480Z SERIAL » 0x0105000b02ff0c (7 bytes) -2024-09-06T11:05:47.480Z DRIVER » [REQ] [SerialAPISetup] - command: SetTxStatusReport - enabled: true -2024-09-06T11:05:47.486Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:47.487Z SERIAL « 0x0105010b0201f3 (7 bytes) -2024-09-06T11:05:47.487Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:47.488Z DRIVER « [RES] [SerialAPISetup] - command: SetTxStatusReport - success: true -2024-09-06T11:05:47.488Z CNTRLR Enabling TX status report successful... -2024-09-06T11:05:47.489Z CNTRLR finding SUC... -2024-09-06T11:05:47.489Z SERIAL » 0x01030056aa (5 bytes) -2024-09-06T11:05:47.490Z DRIVER » [REQ] [GetSUCNodeId] -2024-09-06T11:05:47.495Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:47.495Z SERIAL « 0x0104015601ad (6 bytes) -2024-09-06T11:05:47.496Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:47.496Z DRIVER « [RES] [GetSUCNodeId] - payload: 0x01 -2024-09-06T11:05:47.497Z CNTRLR SUC has node ID 1 -2024-09-06T11:05:47.497Z DRIVER all queues idle -2024-09-06T11:05:47.507Z DRIVER Cache file for homeId 0xc80a10c5 found, attempting to restore the network from - cache... -2024-09-06T11:05:47.515Z CNTRLR [Node 002] Embedded device config loaded -2024-09-06T11:05:47.515Z DRIVER Restoring the network from cache was successful! -2024-09-06T11:05:47.516Z CNTRLR [Node 002] [Manufacturer Specific] manufacturerId: metadata updated -2024-09-06T11:05:47.517Z CNTRLR [Node 002] [Manufacturer Specific] productType: metadata updated -2024-09-06T11:05:47.517Z CNTRLR [Node 002] [Manufacturer Specific] productId: metadata updated -2024-09-06T11:05:47.517Z CNTRLR [Node 002] [~] [Manufacturer Specific] manufacturerId: 0 => 0 -2024-09-06T11:05:47.518Z CNTRLR [Node 002] [~] [Manufacturer Specific] productType: 4 => 4 -2024-09-06T11:05:47.518Z CNTRLR [Node 002] [~] [Manufacturer Specific] productId: 4 => 4 -2024-09-06T11:05:47.518Z CNTRLR [Node 002] [Version] firmwareVersions: metadata updated -2024-09-06T11:05:47.518Z CNTRLR [Node 002] [~] [Version] firmwareVersions: 7.22 => 7.22 -2024-09-06T11:05:47.518Z CNTRLR [Node 002] [Version] zWaveProtocolVersion: metadata updated -2024-09-06T11:05:47.518Z CNTRLR [Node 002] [~] [Version] zWaveProtocolVersion: "7.22.1" => "7.22.1" -2024-09-06T11:05:47.519Z CNTRLR [Node 002] [Version] sdkVersion: metadata updated -2024-09-06T11:05:47.519Z CNTRLR [Node 002] [~] [Version] sdkVersion: "7.22.1" => "7.22.1" -2024-09-06T11:05:47.519Z CNTRLR Interview completed -2024-09-06T11:05:47.519Z DRIVER Network key for S0 found in cache, enabling S0 security manager... -2024-09-06T11:05:47.519Z DRIVER At least one network key for S2 found in cache, enabling S2 security manager.. - . -2024-09-06T11:05:47.521Z DRIVER driver ready -2024-09-06T11:05:47.521Z CNTRLR [Node 002] Beginning interview - last completed stage: None -2024-09-06T11:05:47.522Z CNTRLR [Node 002] new node, doing a full interview... -2024-09-06T11:05:47.522Z CNTRLR » [Node 002] querying protocol info... -2024-09-06T11:05:47.523Z DRIVER all queues busy -2024-09-06T11:05:47.523Z SERIAL » 0x0104004102b8 (6 bytes) -2024-09-06T11:05:47.524Z DRIVER » [REQ] [GetNodeProtocolInfo] - payload: 0x02 -2024-09-06T11:05:47.530Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:47.530Z SERIAL « 0x010a0141d3960102010000f2 (12 bytes) -2024-09-06T11:05:47.531Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:47.531Z DRIVER « [RES] [GetNodeProtocolInfo] - payload: 0xd3960102010000 -2024-09-06T11:05:47.532Z CNTRLR « [Node 002] received response for protocol info: - basic device class: Static Controller - generic device class: Remote Controller - specific device class: Unused - node type: Controller - is always listening: true - is frequent listening: false - can route messages: true - supports security: false - supports beaming: true - maximum data rate: 100000 kbps - protocol version: 3 -2024-09-06T11:05:47.532Z CNTRLR [Node 002] Interview stage completed: ProtocolInfo -2024-09-06T11:05:47.533Z DRIVER all queues idle -2024-09-06T11:05:47.535Z CNTRLR [Node 002] Embedded device config loaded -2024-09-06T11:05:47.535Z CNTRLR [Node 002] Interview stage completed: OverwriteConfig -2024-09-06T11:05:47.535Z CNTRLR [Node 002] Interview completed -2024-09-06T11:05:47.536Z CNTRLR [Node 002] The node is ready to be used -2024-09-06T11:05:47.536Z CNTRLR [Node 002] The node is alive. -2024-09-06T11:05:47.536Z CNTRLR » [Node 001] querying protocol info... -2024-09-06T11:05:47.537Z DRIVER all queues busy -2024-09-06T11:05:47.537Z SERIAL » 0x0104004101bb (6 bytes) -2024-09-06T11:05:47.537Z DRIVER » [REQ] [GetNodeProtocolInfo] - payload: 0x01 -2024-09-06T11:05:47.543Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:47.543Z SERIAL « 0x010a0141d3960102010000f2 (12 bytes) -2024-09-06T11:05:47.543Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:47.544Z DRIVER « [RES] [GetNodeProtocolInfo] - payload: 0xd3960102010000 -2024-09-06T11:05:47.545Z CNTRLR « [Node 001] received response for protocol info: - basic device class: Static Controller - generic device class: Remote Controller - specific device class: Unused - node type: Controller - is always listening: true - is frequent listening: false - can route messages: true - supports security: false - supports beaming: true - maximum data rate: 100000 kbps - protocol version: 3 -2024-09-06T11:05:47.545Z CNTRLR [Node 001] Interview stage completed: ProtocolInfo -2024-09-06T11:05:47.545Z CNTRLR Determining node status: 1 -2024-09-06T11:05:47.545Z CNTRLR » [Node 001] pinging the node... -2024-09-06T11:05:47.547Z SERIAL » 0x010d00a9020101002500000000017d (15 bytes) -2024-09-06T11:05:47.548Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 1 - └─[NoOperationCC] -2024-09-06T11:05:47.553Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:47.555Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:05:47.555Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:47.556Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:05:47.576Z SERIAL « 0x011d00a90100000100d87f7f7f7f00000300000000030100007f7f7f7f7fed (31 bytes) -2024-09-06T11:05:47.576Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:47.577Z DRIVER « [REQ] [SendDataBridge] - callback id: 1 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -40 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:05:47.578Z CNTRLR [Node 001] The node is alive. -2024-09-06T11:05:47.578Z CNTRLR « [Node 001] ping successful -2024-09-06T11:05:47.578Z DRIVER all queues idle -2024-09-06T11:05:52.520Z CNTRLR Updating the controller NIF... -2024-09-06T11:05:52.522Z DRIVER all queues busy -2024-09-06T11:05:52.523Z SERIAL » 0x010f0003010100085e989f556c568f7436 (17 bytes) -2024-09-06T11:05:52.524Z DRIVER » [REQ] [SetApplicationNodeInformation] - is listening: true - generic device class: 0x01 - specific device class: 0x00 - supported CCs: - · Z-Wave Plus Info - · Security - · Security 2 - · Transport Service - · Supervision - · CRC-16 Encapsulation - · Multi Command - · Inclusion Controller - controlled CCs: -2024-09-06T11:05:52.530Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:52.533Z CNTRLR performing hard reset... -2024-09-06T11:05:52.535Z SERIAL » 0x0104004202bb (6 bytes) -2024-09-06T11:05:52.536Z DRIVER » [REQ] [HardReset] - callback id: 2 -2024-09-06T11:05:52.540Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:52.576Z SERIAL « 0x0104004202bb (6 bytes) -2024-09-06T11:05:52.577Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:52.578Z DRIVER « [REQ] [HardReset] - callback id: 2 -2024-09-06T11:05:52.579Z CNTRLR hard reset succeeded -2024-09-06T11:05:52.580Z CNTRLR querying Serial API capabilities... -2024-09-06T11:05:52.582Z SERIAL » 0x01030007fb (5 bytes) -2024-09-06T11:05:52.583Z DRIVER » [REQ] [GetSerialApiCapabilities] -2024-09-06T11:05:52.591Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:52.593Z SERIAL « 0x012b01070716000000040004f6873e88cf2bc05ffbd7fde09700008000808680b (45 bytes) - a0500700000ee7fc000000041 -2024-09-06T11:05:52.593Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:52.594Z DRIVER « [RES] [GetSerialApiCapabilities] - payload: 0x0716000000040004f6873e88cf2bc05ffbd7fde09700008000808680ba0500700 - 000ee7fc0000000 -2024-09-06T11:05:52.596Z CNTRLR received API capabilities: - firmware version: 7.22 - manufacturer ID: 0x00 - product type: 0x04 - product ID: 0x04 - supported functions: - · GetSerialApiInitData (0x02) - · SetApplicationNodeInformation (0x03) - · GetControllerCapabilities (0x05) - · SetSerialApiTimeouts (0x06) - · GetSerialApiCapabilities (0x07) - · SoftReset (0x08) - · GetProtocolVersion (0x09) - · SerialAPIStarted (0x0a) - · SerialAPISetup (0x0b) - · SetRFReceiveMode (0x10) - · SendNodeInformation (0x12) - · SendData (0x13) - · SendDataMulticast (0x14) - · GetControllerVersion (0x15) - · SendDataAbort (0x16) - · FUNC_ID_ZW_GET_RANDOM (0x1c) - · GetControllerId (0x20) - · UNKNOWN_FUNC_MEMORY_GET_BYTE (0x21) - · UNKNOWN_FUNC_MEMORY_PUT_BYTE (0x22) - · UNKNOWN_FUNC_MEMORY_GET_BUFFER (0x23) - · UNKNOWN_FUNC_MEMORY_PUT_BUFFER (0x24) - · EnterBootloader (0x27) - · UNKNOWN_FUNC_UNKNOWN_0x28 (0x28) - · GetNVMId (0x29) - · ExtNVMReadLongBuffer (0x2a) - · ExtNVMReadLongByte (0x2c) - · NVMOperations (0x2e) - · ClearTxTimers (0x37) - · GetTxTimers (0x38) - · ClearNetworkStats (0x39) - · GetNetworkStats (0x3a) - · GetBackgroundRSSI (0x3b) - · SetListenBeforeTalkThreshold (0x3c) - · ExtendedNVMOperations (0x3d) - · RemoveSpecificNodeIdFromNetwork (0x3f) - · GetNodeProtocolInfo (0x41) - · HardReset (0x42) - · FUNC_ID_ZW_REPLICATION_COMMAND_COMPLETE (0x44) - · FUNC_ID_ZW_REPLICATION_SEND_DATA (0x45) - · AssignReturnRoute (0x46) - · DeleteReturnRoute (0x47) - · RequestNodeNeighborUpdate (0x48) - · ApplicationUpdateRequest (0x49) - · AddNodeToNetwork (0x4a) - · RemoveNodeFromNetwork (0x4b) - · AddPrimaryController (0x4d) - · AssignPriorityReturnRoute (0x4f) - · SetLearnMode (0x50) - · AssignSUCReturnRoute (0x51) - · RequestNetworkUpdate (0x53) - · SetSUCNodeId (0x54) - · DeleteSUCReturnRoute (0x55) - · GetSUCNodeId (0x56) - · SendSUCNodeId (0x57) - · AssignPrioritySUCReturnRoute (0x58) - · ExploreRequestInclusion (0x5e) - · ExploreRequestExclusion (0x5f) - · RequestNodeInfo (0x60) - · RemoveFailedNode (0x61) - · IsFailedNode (0x62) - · ReplaceFailedNode (0x63) - · undefined (0x65) - · RequestProtocolCCEncryption (0x68) - · GetRoutingInfo (0x80) - · LockUnlockLastRoute (0x90) - · GetPriorityRoute (0x92) - · SetPriorityRoute (0x93) - · UNKNOWN_FUNC_UNKNOWN_0x98 (0x98) - · VirtualNodeSetNodeInfo (0xa0) - · VirtualNodeSendNodeInfo (0xa2) - · VirtualNodeSetLearnMode (0xa4) - · GetVirtualNodes (0xa5) - · IsVirtualNode (0xa6) - · BridgeApplicationCommand (0xa8) - · SendDataBridge (0xa9) - · SendDataMulticastBridge (0xab) - · GetLibrary (0xbd) - · SendTestFrame (0xbe) - · GetProtocolStatus (0xbf) - · StartWatchdog (0xd2) - · StopWatchdog (0xd3) - · SetMaximumRoutingAttempts (0xd4) - · SetMaxSmartStartInclusionRequestInterval (0xd6) - · undefined (0xd7) - · undefined (0xd8) - · Shutdown (0xd9) - · GetLongRangeNodes (0xda) - · GetLongRangeChannel (0xdb) - · SetLongRangeChannel (0xdc) - · SetLongRangeShadowNodeIDs (0xdd) - · Proprietary_DE (0xde) - · Proprietary_DF (0xdf) - · Proprietary_E7 (0xe7) - · Proprietary_E8 (0xe8) -2024-09-06T11:05:52.596Z CNTRLR querying additional controller information... -2024-09-06T11:05:52.598Z SERIAL » 0x01030002fe (5 bytes) -2024-09-06T11:05:52.599Z DRIVER » [REQ] [GetSerialApiInitData] -2024-09-06T11:05:52.608Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:52.609Z SERIAL « 0x012501020a001d010000000000000000000000000000000000000000000000000 (39 bytes) - 00000000800c7 -2024-09-06T11:05:52.610Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:52.611Z DRIVER « [RES] [GetSerialApiInitData] - payload: 0x0a001d01000000000000000000000000000000000000000000000000000000000 - 800 -2024-09-06T11:05:52.612Z CNTRLR received additional controller information: - Z-Wave API version: 1 (official) - Z-Wave chip type: EFR32ZG23 / ZGM230S - node type Controller - controller role: primary - controller is the SIS: false - controller supports timers: false - Z-Wave Classic nodes: 1 -2024-09-06T11:05:52.613Z CNTRLR querying version info... -2024-09-06T11:05:52.614Z SERIAL » 0x01030015e9 (5 bytes) -2024-09-06T11:05:52.614Z DRIVER » [REQ] [GetControllerVersion] -2024-09-06T11:05:52.621Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:52.622Z SERIAL « 0x011001155a2d5761766520372e3232000797 (18 bytes) -2024-09-06T11:05:52.623Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:52.623Z DRIVER « [RES] [GetControllerVersion] - payload: 0x5a2d5761766520372e32320007 -2024-09-06T11:05:52.624Z CNTRLR received version info: - controller type: Bridge Controller - library version: Z-Wave 7.22 -2024-09-06T11:05:52.625Z CNTRLR querying protocol version info... -2024-09-06T11:05:52.626Z SERIAL » 0x01030009f5 (5 bytes) -2024-09-06T11:05:52.626Z DRIVER » [REQ] [GetProtocolVersion] -2024-09-06T11:05:52.633Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:52.634Z SERIAL « 0x0119010900071601abcd63636639623665613165616566313162c3 (27 bytes) -2024-09-06T11:05:52.635Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:52.636Z DRIVER « [RES] [GetProtocolVersion] - payload: 0x00071601abcd63636639623665613165616566313162 -2024-09-06T11:05:52.637Z CNTRLR received protocol version info: - protocol type: Z-Wave - protocol version: 7.22.1 - appl. framework build no.: 43981 - git commit hash: 63636639623665613165616566313162 -2024-09-06T11:05:52.637Z CNTRLR querying controller capabilities... -2024-09-06T11:05:52.638Z SERIAL » 0x01030005f9 (5 bytes) -2024-09-06T11:05:52.638Z DRIVER » [REQ] [GetControllerCapabilities] -2024-09-06T11:05:52.643Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:52.644Z SERIAL « 0x0104010528d7 (6 bytes) -2024-09-06T11:05:52.645Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:52.645Z DRIVER « [RES] [GetControllerCapabilities] - payload: 0x28 -2024-09-06T11:05:52.646Z CNTRLR received controller capabilities: - controller role: Primary - is the SUC: false - started this network: true - SIS is present: false - was real primary: true -2024-09-06T11:05:52.646Z CNTRLR querying serial API setup capabilities... -2024-09-06T11:05:52.647Z SERIAL » 0x0104000b01f1 (6 bytes) -2024-09-06T11:05:52.648Z DRIVER » [REQ] [SerialAPISetup] - command: GetSupportedCommands - payload: 0x01 -2024-09-06T11:05:52.654Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:52.655Z SERIAL « 0x0116010b01ff9f8007800000008000000000000000800085 (24 bytes) -2024-09-06T11:05:52.655Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:52.656Z DRIVER « [RES] [SerialAPISetup] - command: GetSupportedCommands - payload: 0xff9f80078000000080000000000000008000 -2024-09-06T11:05:52.656Z CNTRLR supported serial API setup commands: - · GetSupportedCommands - · SetTxStatusReport - · SetLongRangeMaximumTxPower - · SetPowerlevel - · GetLongRangeMaximumTxPower - · GetPowerlevel - · GetMaximumPayloadSize - · GetLongRangeMaximumPayloadSize - · SetPowerlevel16Bit - · GetPowerlevel16Bit - · GetRFRegion - · SetRFRegion - · SetNodeIDType -2024-09-06T11:05:52.657Z CNTRLR querying max. payload size... -2024-09-06T11:05:52.658Z SERIAL » 0x0104000b10e0 (6 bytes) -2024-09-06T11:05:52.658Z DRIVER » [REQ] [SerialAPISetup] - command: GetMaximumPayloadSize - payload: 0x10 -2024-09-06T11:05:52.663Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:52.663Z SERIAL « 0x0105010b102ece (7 bytes) -2024-09-06T11:05:52.663Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:52.664Z DRIVER « [RES] [SerialAPISetup] - command: GetMaximumPayloadSize - maximum payload size: 46 bytes -2024-09-06T11:05:52.665Z CNTRLR maximum payload size: 46 bytes -2024-09-06T11:05:52.665Z CNTRLR supported Z-Wave features: - · SmartStart -2024-09-06T11:05:52.665Z CNTRLR Querying configured RF region... -2024-09-06T11:05:52.666Z SERIAL » 0x0104000b20d0 (6 bytes) -2024-09-06T11:05:52.666Z DRIVER » [REQ] [SerialAPISetup] - command: GetRFRegion - payload: 0x20 -2024-09-06T11:05:52.671Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:52.672Z SERIAL « 0x0105010b2000d0 (7 bytes) -2024-09-06T11:05:52.672Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:52.672Z DRIVER « [RES] [SerialAPISetup] - command: GetRFRegion - region: Europe -2024-09-06T11:05:52.673Z CNTRLR The controller is using RF region Europe -2024-09-06T11:05:52.673Z CNTRLR Querying configured max. Long Range powerlevel... -2024-09-06T11:05:52.674Z SERIAL » 0x0104000b05f5 (6 bytes) -2024-09-06T11:05:52.674Z DRIVER » [REQ] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - payload: 0x05 -2024-09-06T11:05:52.680Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:52.680Z SERIAL « 0x0106010b05008c7a (8 bytes) -2024-09-06T11:05:52.680Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:52.681Z DRIVER « [RES] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - max. TX power (LR): 14.0 dBm -2024-09-06T11:05:52.682Z CNTRLR The max. LR powerlevel is 14.0 dBm -2024-09-06T11:05:52.682Z CNTRLR Querying configured Long Range channel information... -2024-09-06T11:05:52.683Z SERIAL » 0x010300db27 (5 bytes) -2024-09-06T11:05:52.683Z DRIVER » [REQ] [GetLongRangeChannel] -2024-09-06T11:05:52.688Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:52.689Z SERIAL « 0x010501db001030 (7 bytes) -2024-09-06T11:05:52.689Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:52.689Z DRIVER « [RES] [GetLongRangeChannel] - payload: 0x0010 -2024-09-06T11:05:52.690Z CNTRLR received Z-Wave Long Range channel information: - channel: Unsupported - supports auto channel selection: true -2024-09-06T11:05:52.690Z CNTRLR Performing soft reset... -2024-09-06T11:05:52.691Z SERIAL » 0x01030008f4 (5 bytes) -2024-09-06T11:05:52.691Z DRIVER » [REQ] [SoftReset] -2024-09-06T11:05:52.695Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:52.696Z CNTRLR Waiting for the controller to reconnect... -2024-09-06T11:05:52.696Z DRIVER all queues idle -2024-09-06T11:05:52.808Z SERIAL « 0x0116000a0700010100085e989f556c568f7400031d00003f (24 bytes) -2024-09-06T11:05:52.809Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:52.811Z DRIVER « [REQ] [SerialAPIStarted] - wake up reason: SoftwareReset - watchdog enabled: false - generic device class: 0x01 - specific device class: 0x00 - always listening: false - supports Long Range: false -2024-09-06T11:05:52.811Z CNTRLR reconnected and restarted -2024-09-06T11:05:52.811Z CNTRLR Starting hardware watchdog... -2024-09-06T11:05:52.812Z CNTRLR Switching serial API to 16-bit node IDs... -2024-09-06T11:05:52.812Z CNTRLR Switching serial API to 8-bit node IDs... -2024-09-06T11:05:52.813Z DRIVER all queues busy -2024-09-06T11:05:52.814Z SERIAL » 0x010300d22e (5 bytes) -2024-09-06T11:05:52.815Z DRIVER » [REQ] [StartWatchdog] -2024-09-06T11:05:52.817Z SERIAL » 0x0105000b800273 (7 bytes) -2024-09-06T11:05:52.818Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 16 bit -2024-09-06T11:05:52.820Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:52.824Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:52.824Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T11:05:52.825Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:52.825Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T11:05:52.826Z CNTRLR Switching to 16-bit node IDs successful -2024-09-06T11:05:52.828Z SERIAL » 0x0105000b800170 (7 bytes) -2024-09-06T11:05:52.829Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 8 bit -2024-09-06T11:05:52.834Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:52.835Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T11:05:52.835Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:52.836Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T11:05:52.837Z CNTRLR Switching to 8-bit node IDs successful -2024-09-06T11:05:52.837Z CNTRLR querying controller IDs... -2024-09-06T11:05:52.838Z SERIAL » 0x01030020dc (5 bytes) -2024-09-06T11:05:52.839Z DRIVER » [REQ] [GetControllerId] -2024-09-06T11:05:52.844Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:52.844Z SERIAL « 0x01080120dd8e92de01c8 (10 bytes) -2024-09-06T11:05:52.845Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:52.845Z DRIVER « [RES] [GetControllerId] - home ID: 0xdd8e92de - own node ID: 1 -2024-09-06T11:05:52.846Z CNTRLR received controller IDs: - home ID: 0xdd8e92de - own node ID: 1 -2024-09-06T11:05:52.846Z CNTRLR Enabling TX status report... -2024-09-06T11:05:52.847Z SERIAL » 0x0105000b02ff0c (7 bytes) -2024-09-06T11:05:52.848Z DRIVER » [REQ] [SerialAPISetup] - command: SetTxStatusReport - enabled: true -2024-09-06T11:05:52.853Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:52.854Z SERIAL « 0x0105010b0201f3 (7 bytes) -2024-09-06T11:05:52.854Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:52.854Z DRIVER « [RES] [SerialAPISetup] - command: SetTxStatusReport - success: true -2024-09-06T11:05:52.855Z CNTRLR Enabling TX status report successful... -2024-09-06T11:05:52.855Z CNTRLR finding SUC... -2024-09-06T11:05:52.855Z SERIAL » 0x01030056aa (5 bytes) -2024-09-06T11:05:52.855Z DRIVER » [REQ] [GetSUCNodeId] -2024-09-06T11:05:52.860Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:52.860Z SERIAL « 0x0104015600ac (6 bytes) -2024-09-06T11:05:52.860Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:52.861Z DRIVER « [RES] [GetSUCNodeId] - payload: 0x00 -2024-09-06T11:05:52.861Z CNTRLR No SUC present in the network -2024-09-06T11:05:52.861Z CNTRLR There is no SUC/SIS in the network - promoting ourselves... -2024-09-06T11:05:52.862Z SERIAL » 0x01080054010125010384 (10 bytes) -2024-09-06T11:05:52.862Z DRIVER » [REQ] [SetSUCNodeId] - payload: 0x0101250103 -2024-09-06T11:05:52.869Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:52.869Z SERIAL « 0x0104015401af (6 bytes) -2024-09-06T11:05:52.869Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:52.870Z DRIVER « [RES] [SetSUCNodeId] - was executed: true -2024-09-06T11:05:52.870Z CNTRLR Promotion to SUC/SIS succeeded. -2024-09-06T11:05:52.870Z DRIVER all queues idle -2024-09-06T11:05:52.874Z CNTRLR [Node 001] [Manufacturer Specific] manufacturerId: metadata updated -2024-09-06T11:05:52.874Z CNTRLR [Node 001] [Manufacturer Specific] productType: metadata updated -2024-09-06T11:05:52.874Z CNTRLR [Node 001] [Manufacturer Specific] productId: metadata updated -2024-09-06T11:05:52.875Z CNTRLR [Node 001] [+] [Manufacturer Specific] manufacturerId: 0 -2024-09-06T11:05:52.875Z CNTRLR [Node 001] [+] [Manufacturer Specific] productType: 4 -2024-09-06T11:05:52.875Z CNTRLR [Node 001] [+] [Manufacturer Specific] productId: 4 -2024-09-06T11:05:52.875Z CNTRLR [Node 001] [Version] firmwareVersions: metadata updated -2024-09-06T11:05:52.875Z CNTRLR [Node 001] [+] [Version] firmwareVersions: 7.22 -2024-09-06T11:05:52.875Z CNTRLR [Node 001] [Version] zWaveProtocolVersion: metadata updated -2024-09-06T11:05:52.875Z CNTRLR [Node 001] [+] [Version] zWaveProtocolVersion: "7.22.1" -2024-09-06T11:05:52.875Z CNTRLR [Node 001] [Version] sdkVersion: metadata updated -2024-09-06T11:05:52.875Z CNTRLR [Node 001] [+] [Version] sdkVersion: "7.22.1" -2024-09-06T11:05:52.875Z CNTRLR Interview completed -2024-09-06T11:05:52.875Z DRIVER Network key for S0 configured, enabling S0 security manager... -2024-09-06T11:05:52.876Z DRIVER At least one network key for S2 configured, enabling S2 security manager... -2024-09-06T11:05:52.876Z DRIVER At least one network key for Z-Wave Long Range configured, enabling security m - anager... -2024-09-06T11:05:52.876Z DRIVER driver ready -2024-09-06T11:05:52.877Z CNTRLR [Node 001] Beginning interview - last completed stage: None -2024-09-06T11:05:52.877Z CNTRLR [Node 001] new node, doing a full interview... -2024-09-06T11:05:52.877Z CNTRLR » [Node 001] querying protocol info... -2024-09-06T11:05:52.877Z DRIVER all queues busy -2024-09-06T11:05:52.878Z SERIAL » 0x0104004101bb (6 bytes) -2024-09-06T11:05:52.878Z DRIVER » [REQ] [GetNodeProtocolInfo] - payload: 0x01 -2024-09-06T11:05:52.883Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:52.883Z SERIAL « 0x010a0141d3960102010000f2 (12 bytes) -2024-09-06T11:05:52.884Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:52.884Z DRIVER « [RES] [GetNodeProtocolInfo] - payload: 0xd3960102010000 -2024-09-06T11:05:52.885Z CNTRLR « [Node 001] received response for protocol info: - basic device class: Static Controller - generic device class: Remote Controller - specific device class: Unused - node type: Controller - is always listening: true - is frequent listening: false - can route messages: true - supports security: false - supports beaming: true - maximum data rate: 100000 kbps - protocol version: 3 -2024-09-06T11:05:52.885Z CNTRLR [Node 001] Interview stage completed: ProtocolInfo -2024-09-06T11:05:52.886Z DRIVER all queues idle -2024-09-06T11:05:52.887Z CNTRLR [Node 001] Embedded device config loaded -2024-09-06T11:05:52.887Z CNTRLR [Node 001] Interview stage completed: OverwriteConfig -2024-09-06T11:05:52.887Z CNTRLR [Node 001] Interview completed -2024-09-06T11:05:52.887Z CNTRLR [Node 001] The node is ready to be used -2024-09-06T11:05:52.887Z CNTRLR All nodes are ready to be used -2024-09-06T11:05:52.888Z CNTRLR [Node 001] The node is alive. -2024-09-06T11:05:57.582Z DRIVER all queues busy -2024-09-06T11:05:57.584Z SERIAL » 0x0105005081042f (7 bytes) -2024-09-06T11:05:57.585Z DRIVER » [REQ] [SetLearnMode] - callback id: 4 - intent: Inclusion -2024-09-06T11:05:57.590Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:57.591Z SERIAL « 0x0104015001ab (6 bytes) -2024-09-06T11:05:57.591Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:57.592Z DRIVER « [RES] [SetLearnMode] - success: true -2024-09-06T11:05:57.593Z DRIVER all queues idle -2024-09-06T11:05:57.747Z SERIAL « 0x0107005004010200af (9 bytes) -2024-09-06T11:05:57.747Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:57.748Z DRIVER « [REQ] [SetLearnMode] - callback id: 4 - status: Started - assigned node id: 2 -2024-09-06T11:05:57.748Z DRIVER handling request SetLearnMode (80) -2024-09-06T11:05:57.748Z DRIVER 1 handler registered! -2024-09-06T11:05:57.748Z DRIVER invoking handler #0 -2024-09-06T11:05:57.748Z DRIVER the message was handled -2024-09-06T11:05:57.887Z DRIVER all queues busy -2024-09-06T11:05:57.889Z SERIAL » 0x0103003bc7 (5 bytes) -2024-09-06T11:05:57.889Z DRIVER » [REQ] [GetBackgroundRSSI] -2024-09-06T11:05:57.895Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:57.896Z SERIAL « 0x0107013b9b96967f26 (9 bytes) -2024-09-06T11:05:57.897Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:57.898Z DRIVER « [RES] [GetBackgroundRSSI] - channel 0: -101 dBm - channel 1: -106 dBm - channel 2: -106 dBm - channel 3: N/A -2024-09-06T11:05:57.899Z DRIVER all queues idle -2024-09-06T11:05:58.269Z SERIAL « 0x01060049100100a1 (8 bytes) -2024-09-06T11:05:58.270Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:58.271Z DRIVER « [REQ] [ApplicationUpdateRequest] - type: SUC_IdChanged - SUC node ID: 1 -2024-09-06T11:05:58.286Z SERIAL « 0x0107005004050200ab (9 bytes) -2024-09-06T11:05:58.286Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:58.287Z DRIVER « [REQ] [SetLearnMode] - callback id: 4 - status: ProtocolDone - assigned node id: 2 -2024-09-06T11:05:58.287Z DRIVER handling request SetLearnMode (80) -2024-09-06T11:05:58.287Z DRIVER 1 handler registered! -2024-09-06T11:05:58.287Z DRIVER invoking handler #0 -2024-09-06T11:05:58.287Z DRIVER the message was handled -2024-09-06T11:05:58.288Z DRIVER waiting for security bootstrapping... -2024-09-06T11:05:58.288Z CNTRLR querying controller IDs... -2024-09-06T11:05:58.288Z DRIVER all queues busy -2024-09-06T11:05:58.289Z SERIAL » 0x01030020dc (5 bytes) -2024-09-06T11:05:58.289Z DRIVER » [REQ] [GetControllerId] -2024-09-06T11:05:58.294Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:58.295Z SERIAL « 0x01080120f6b51bac0220 (10 bytes) -2024-09-06T11:05:58.295Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:58.295Z DRIVER « [RES] [GetControllerId] - home ID: 0xf6b51bac - own node ID: 2 -2024-09-06T11:05:58.296Z CNTRLR received controller IDs: - home ID: 0xf6b51bac - own node ID: 2 -2024-09-06T11:05:58.296Z DRIVER Joined network with home ID 0xf6b51bac, switching to new network cache... -2024-09-06T11:05:58.296Z CNTRLR querying controller capabilities... -2024-09-06T11:05:58.297Z SERIAL » 0x01030005f9 (5 bytes) -2024-09-06T11:05:58.297Z DRIVER » [REQ] [GetControllerCapabilities] -2024-09-06T11:05:58.302Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:58.302Z SERIAL « 0x0104010506f9 (6 bytes) -2024-09-06T11:05:58.303Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:58.303Z DRIVER « [RES] [GetControllerCapabilities] - payload: 0x06 -2024-09-06T11:05:58.304Z CNTRLR received controller capabilities: - controller role: Inclusion - is the SUC: false - started this network: false - SIS is present: true - was real primary: false -2024-09-06T11:05:58.304Z CNTRLR querying additional controller information... -2024-09-06T11:05:58.305Z SERIAL » 0x01030002fe (5 bytes) -2024-09-06T11:05:58.305Z DRIVER » [REQ] [GetSerialApiInitData] -2024-09-06T11:05:58.314Z SERIAL « [ACK] (0x06) -2024-09-06T11:05:58.314Z SERIAL « 0x012501020a001d030000000000000000000000000000000000000000000000000 (39 bytes) - 00000000800c5 -2024-09-06T11:05:58.314Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:58.315Z DRIVER « [RES] [GetSerialApiInitData] - payload: 0x0a001d03000000000000000000000000000000000000000000000000000000000 - 800 -2024-09-06T11:05:58.315Z CNTRLR received additional controller information: - Z-Wave API version: 1 (official) - Z-Wave chip type: EFR32ZG23 / ZGM230S - node type Controller - controller role: primary - controller is the SIS: false - controller supports timers: false - Z-Wave Classic nodes: 1, 2 -2024-09-06T11:05:58.316Z CNTRLR [Node 002] [Manufacturer Specific] manufacturerId: metadata updated -2024-09-06T11:05:58.316Z CNTRLR [Node 002] [Manufacturer Specific] productType: metadata updated -2024-09-06T11:05:58.316Z CNTRLR [Node 002] [Manufacturer Specific] productId: metadata updated -2024-09-06T11:05:58.316Z CNTRLR [Node 002] [+] [Manufacturer Specific] manufacturerId: 0 -2024-09-06T11:05:58.316Z CNTRLR [Node 002] [+] [Manufacturer Specific] productType: 4 -2024-09-06T11:05:58.317Z CNTRLR [Node 002] [+] [Manufacturer Specific] productId: 4 -2024-09-06T11:05:58.317Z CNTRLR [Node 002] [Version] firmwareVersions: metadata updated -2024-09-06T11:05:58.317Z CNTRLR [Node 002] [+] [Version] firmwareVersions: 7.22 -2024-09-06T11:05:58.317Z CNTRLR [Node 002] [Version] zWaveProtocolVersion: metadata updated -2024-09-06T11:05:58.317Z CNTRLR [Node 002] [+] [Version] zWaveProtocolVersion: "7.22.1" -2024-09-06T11:05:58.317Z CNTRLR [Node 002] [Version] sdkVersion: metadata updated -2024-09-06T11:05:58.317Z CNTRLR [Node 002] [+] [Version] sdkVersion: "7.22.1" -2024-09-06T11:05:58.317Z CNTRLR Interview completed -2024-09-06T11:05:58.317Z DRIVER all queues idle -2024-09-06T11:05:58.491Z SERIAL « 0x010b00a8000201029f0400d81e (13 bytes) -2024-09-06T11:05:58.493Z SERIAL » [ACK] (0x06) -2024-09-06T11:05:58.494Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -40 dBm - └─[Security2CCKEXGet] -2024-09-06T11:06:01.567Z CNTRLR [Node 001] Received S2 bootstrap initiation, requesting keys: - · S2_AccessControl - · S2_Authenticated - · S2_Unauthenticated - · S0_Legacy - client-side auth: false -2024-09-06T11:06:01.572Z DRIVER all queues busy -2024-09-06T11:06:01.573Z SERIAL » 0x011200a90201069f05000201872500000000057f (20 bytes) -2024-09-06T11:06:01.575Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 5 - └─[Security2CCKEXReport] - echo: false - supported schemes: - · KEXScheme1 - supported ECDH profiles: - · Curve25519 - CSA requested: false - requested security classes: - · S2_AccessControl - · S2_Authenticated - · S2_Unauthenticated - · S0_Legacy -2024-09-06T11:06:01.598Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:01.598Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:01.598Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:01.600Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:01.611Z SERIAL « 0x011d00a90500000100d87f7f7f7f00000300000000030100007f7f7f7f7fe9 (31 bytes) -2024-09-06T11:06:01.611Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:01.612Z DRIVER « [REQ] [SendDataBridge] - callback id: 5 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -40 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:01.614Z DRIVER all queues idle -2024-09-06T11:06:01.631Z SERIAL « 0x010f00a8000201069f060002018700d797 (17 bytes) -2024-09-06T11:06:01.632Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:01.634Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -41 dBm - └─[Security2CCKEXSet] - echo: false - selected scheme: KEXScheme1 - selected ECDH profile: Curve25519 - CSA permitted: false - granted security classes: - · S2_Unauthenticated - · S2_Authenticated - · S2_AccessControl - · S0_Legacy -2024-09-06T11:06:01.638Z DRIVER all queues busy -2024-09-06T11:06:01.639Z SERIAL » 0x012f00a90201239f0800000016326db7f17b665ff37e1510eaeeced1cd3d3200e (49 bytes) - e627b76f02fb82ad746250000000006ac -2024-09-06T11:06:01.639Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 6 - └─[Security2CCPublicKeyReport] - is including node: false - public key: 0x000016326db7f17b665ff37e1510eaeeced1cd3d3200ee627b76f - 02fb82ad746 -2024-09-06T11:06:01.648Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:01.651Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:01.652Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:01.652Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:01.670Z SERIAL « 0x011d00a90600000100d87f7f7f7f00000300000000030100007f7f7f7f7fea (31 bytes) -2024-09-06T11:06:01.670Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:01.671Z DRIVER « [REQ] [SendDataBridge] - callback id: 6 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -40 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:01.672Z DRIVER all queues idle -2024-09-06T11:06:01.700Z SERIAL « 0x012c00a8000201239f0801fde52acde7bf333072b0d32512f8d3ed9f97f1cdc01 (46 bytes) - 39676e5a988b7aad1580900d80f -2024-09-06T11:06:01.701Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:01.702Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -40 dBm - └─[Security2CCPublicKeyReport] - is including node: true - public key: 0xfde52acde7bf333072b0d32512f8d3ed9f97f1cdc0139676e5a98 - 8b7aad15809 -2024-09-06T11:06:01.704Z DRIVER all queues busy -2024-09-06T11:06:01.705Z SERIAL » 0x010f00a90201039f01fd25000000000718 (17 bytes) -2024-09-06T11:06:01.705Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 7 - └─[Security2CCNonceGet] - sequence number: 253 -2024-09-06T11:06:01.711Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:01.713Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:01.713Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:01.714Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:01.731Z SERIAL « 0x011d00a90700000100d77f7f7f7f00000300000000030100007f7f7f7f7fe4 (31 bytes) -2024-09-06T11:06:01.732Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:01.733Z DRIVER « [REQ] [SendDataBridge] - callback id: 7 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -41 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:01.753Z SERIAL « 0x011d00a8000201149f020601e68611a022589a58c26524d318ea85e100d8b0 (31 bytes) -2024-09-06T11:06:01.753Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:01.754Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -40 dBm - └─[Security2CCNonceReport] - sequence number: 6 - SOS: true - MOS: false - receiver entropy: 0xe68611a022589a58c26524d318ea85e1 -2024-09-06T11:06:01.756Z SERIAL » 0x013000a90201249f03fe0112415291a211d5aa969a469363af95164ec59537fc5 (50 bytes) - d5bc3cb4554f274f1ecc325000000000857 -2024-09-06T11:06:01.756Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 8 - └─[Security2CCMessageEncapsulation] - │ sequence number: 254 - │ extensions: - │ · type: SPAN - │ sender EI: 0x5291a211d5aa969a469363af95164ec5 - │ key: 0xd303b057e46ed9a7315b3d81d4c79497 - │ IV: 0x05f2c238b27c7229b6259f98cf - │ ciphertext: 0x9537fc5d5bc3 - │ auth data: 0x0201f6b51bac0024fe0112415291a211d5aa969a469363af95164ec - 5 - │ auth tag: 0xcb4554f274f1ecc3 - │ security class: Temporary - └─[Security2CCKEXSet] - echo: true - selected scheme: KEXScheme1 - selected ECDH profile: Curve25519 - CSA permitted: false - granted security classes: - · S2_Unauthenticated - · S2_Authenticated - · S2_AccessControl - · S0_Legacy -2024-09-06T11:06:01.766Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:01.768Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:01.768Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:01.769Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:01.791Z SERIAL « 0x011d00a90800000200d87f7f7f7f00000300000000030100007f7f7f7f7fe7 (31 bytes) -2024-09-06T11:06:01.792Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:01.792Z DRIVER « [REQ] [SendDataBridge] - callback id: 8 - transmit status: OK, took 20 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -40 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:01.816Z SERIAL « 0x011b00a8000201129f030700e70b239a84c507dfc350c154a3cc00d8bb (29 bytes) -2024-09-06T11:06:01.817Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:01.818Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -40 dBm - └─[Security2CCMessageEncapsulation] - │ sequence number: 7 - │ key: 0xd303b057e46ed9a7315b3d81d4c79497 - │ IV: 0x77104b86cc59fedb418c8467cb - │ plaintext: 0x9f0501020187 - │ auth tag: 0x07dfc350c154a3cc - │ security class: Temporary - └─[Security2CCKEXReport] - echo: true - supported schemes: - · KEXScheme1 - supported ECDH profiles: - · Curve25519 - CSA requested: false - requested security classes: - · S2_Unauthenticated - · S2_Authenticated - · S2_AccessControl - · S0_Legacy -2024-09-06T11:06:01.820Z SERIAL » 0x011b00a902010f9f03ff007cbaacabfa461fdc8821662500000000097f (29 bytes) -2024-09-06T11:06:01.820Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 9 - └─[Security2CCMessageEncapsulation] - │ sequence number: 255 - │ key: 0xd303b057e46ed9a7315b3d81d4c79497 - │ IV: 0x40e1bf0161b0dd7eba59f12e31 - │ ciphertext: 0x7cbaac - │ auth data: 0x0201f6b51bac000fff00 - │ auth tag: 0xabfa461fdc882166 - │ security class: Temporary - └─[Security2CCNetworkKeyGet] - security class: S2_Unauthenticated -2024-09-06T11:06:01.827Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:01.829Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:01.830Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:01.830Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:01.847Z SERIAL « 0x011d00a90900000100d87f7f7f7f00000300000000030100007f7f7f7f7fe5 (31 bytes) -2024-09-06T11:06:01.848Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:01.848Z DRIVER « [REQ] [SendDataBridge] - callback id: 9 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -40 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:01.849Z DRIVER all queues idle -2024-09-06T11:06:01.874Z SERIAL « 0x012800a80002011f9f0308007a731f9da8c841a0629f6bebbcfd350238c0b5697 (42 bytes) - 5293f7455284100d821 -2024-09-06T11:06:01.875Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:01.876Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -40 dBm - └─[Security2CCMessageEncapsulation] - │ sequence number: 8 - │ key: 0xd303b057e46ed9a7315b3d81d4c79497 - │ IV: 0x10304918fbe84810ffe3027341 - │ plaintext: 0x9f0a015369389efa18ee2a4894c7fb48347fea - │ auth tag: 0x6975293f74552841 - │ security class: Temporary - └─[Security2CCNetworkKeyReport] - security class: S2_Unauthenticated -2024-09-06T11:06:01.877Z DRIVER all queues busy -2024-09-06T11:06:01.878Z SERIAL » 0x010f00a90201039f010025000000000ae8 (17 bytes) -2024-09-06T11:06:01.879Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 10 - └─[Security2CCNonceGet] - sequence number: 0 -2024-09-06T11:06:01.884Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:01.887Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:01.887Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:01.887Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:01.903Z SERIAL « 0x011d00a90a00000100d87f7f7f7f00000300000000030100007f7f7f7f7fe6 (31 bytes) -2024-09-06T11:06:01.903Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:01.904Z DRIVER « [REQ] [SendDataBridge] - callback id: 10 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -40 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:01.923Z SERIAL « 0x011d00a8000201149f02090152202eaa5dcf9a821fff7e55bf58043200d876 (31 bytes) -2024-09-06T11:06:01.923Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:01.924Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -40 dBm - └─[Security2CCNonceReport] - sequence number: 9 - SOS: true - MOS: false - receiver entropy: 0x52202eaa5dcf9a821fff7e55bf580432 -2024-09-06T11:06:01.925Z SERIAL » 0x012c00a90201209f030101124163c9abbad297243227bb7640f0c1df134c0ce7d (46 bytes) - 2be38ee26e6e425000000000b3e -2024-09-06T11:06:01.926Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 11 - └─[Security2CCMessageEncapsulation] - │ sequence number: 1 - │ extensions: - │ · type: SPAN - │ sender EI: 0x63c9abbad297243227bb7640f0c1df13 - │ key: 0x44b45806725f2a6ebc3e2641f36f6caa - │ IV: 0x31e3c9f88a6d07b6fa1b7a487e - │ ciphertext: 0x4c0c - │ auth data: 0x0201f6b51bac00200101124163c9abbad297243227bb7640f0c1df1 - 3 - │ auth tag: 0xe7d2be38ee26e6e4 - │ security class: S2_Unauthenticated - └─[Security2CCNetworkKeyVerify] -2024-09-06T11:06:01.935Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:01.937Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:01.938Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:01.938Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:01.958Z SERIAL « 0x011d00a90b00000100d87f7f7f7f00000300000000030100007f7f7f7f7fe7 (31 bytes) -2024-09-06T11:06:01.958Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:01.959Z DRIVER « [REQ] [SendDataBridge] - callback id: 11 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -40 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:01.959Z DRIVER all queues idle -2024-09-06T11:06:01.977Z SERIAL « 0x010c00a8000201039f010a00d817 (14 bytes) -2024-09-06T11:06:01.977Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:01.978Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -40 dBm - └─[Security2CCNonceGet] - sequence number: 10 -2024-09-06T11:06:01.978Z DRIVER all queues busy -2024-09-06T11:06:01.979Z SERIAL » 0x012000a90201149f02020128bd40dff9dd41d38759d7bbda0424c605000000000 (34 bytes) - cc4 -2024-09-06T11:06:01.980Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x05 - │ callback id: 12 - └─[Security2CCNonceReport] - sequence number: 2 - SOS: true - MOS: false - receiver entropy: 0x28bd40dff9dd41d38759d7bbda0424c6 -2024-09-06T11:06:01.987Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:01.989Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:01.990Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:01.991Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:02.007Z SERIAL « 0x011d00a90c00000100d87f7f7f7f00000300000000030100007f7f7f7f7fe0 (31 bytes) -2024-09-06T11:06:02.007Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.008Z DRIVER « [REQ] [SendDataBridge] - callback id: 12 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -40 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:02.010Z DRIVER all queues idle -2024-09-06T11:06:02.031Z SERIAL « 0x012a00a8000201219f030b01124149eeea66ad49472de177aaae06fc83ba6e281 (44 bytes) - d9195ec24d3dd5ecc00d8bd -2024-09-06T11:06:02.032Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.032Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -40 dBm - └─[Security2CCMessageEncapsulation] - │ sequence number: 11 - │ extensions: - │ · type: SPAN - │ sender EI: 0x49eeea66ad49472de177aaae06fc83ba - │ key: 0xd303b057e46ed9a7315b3d81d4c79497 - │ IV: 0x9d9b899fcc011daf96936fd0d4 - │ plaintext: 0x9f0c02 - │ auth tag: 0x9195ec24d3dd5ecc - │ security class: Temporary - └─[Security2CCTransferEnd] - key verified: true - request complete: false -2024-09-06T11:06:02.034Z DRIVER all queues busy -2024-09-06T11:06:02.035Z SERIAL » 0x011b00a902010f9f030300a35d4b6dacc81a65e9f39c25000000000db3 (29 bytes) -2024-09-06T11:06:02.035Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 13 - └─[Security2CCMessageEncapsulation] - │ sequence number: 3 - │ key: 0xd303b057e46ed9a7315b3d81d4c79497 - │ IV: 0x6d755fb03128713909b22ac4a5 - │ ciphertext: 0xa35d4b - │ auth data: 0x0201f6b51bac000f0300 - │ auth tag: 0x6dacc81a65e9f39c - │ security class: Temporary - └─[Security2CCNetworkKeyGet] - security class: S2_Authenticated -2024-09-06T11:06:02.042Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:02.045Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:02.045Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.045Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:02.062Z SERIAL « 0x011d00a90d00000100d87f7f7f7f00000300000000030100007f7f7f7f7fe1 (31 bytes) -2024-09-06T11:06:02.063Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.063Z DRIVER « [REQ] [SendDataBridge] - callback id: 13 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -40 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:02.064Z DRIVER all queues idle -2024-09-06T11:06:02.088Z SERIAL « 0x012800a80002011f9f030c00bb00ffbd6830ec49380fa18b3da543a8c688eeb2f (42 bytes) - 25c256536bb8800d8b8 -2024-09-06T11:06:02.089Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.089Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -40 dBm - └─[Security2CCMessageEncapsulation] - │ sequence number: 12 - │ key: 0xd303b057e46ed9a7315b3d81d4c79497 - │ IV: 0x12efb6c27224f675626dc98e3e - │ plaintext: 0x9f0a02656ef5c0f020f3c14238c04a1748b7e1 - │ auth tag: 0xb2f25c256536bb88 - │ security class: Temporary - └─[Security2CCNetworkKeyReport] - security class: S2_Authenticated -2024-09-06T11:06:02.090Z DRIVER all queues busy -2024-09-06T11:06:02.091Z SERIAL » 0x010f00a90201039f010425000000000ee8 (17 bytes) -2024-09-06T11:06:02.091Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 14 - └─[Security2CCNonceGet] - sequence number: 4 -2024-09-06T11:06:02.097Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:02.099Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:02.099Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.100Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:02.116Z SERIAL « 0x011d00a90e00000100d87f7f7f7f00000300000000030100007f7f7f7f7fe2 (31 bytes) -2024-09-06T11:06:02.116Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.117Z DRIVER « [REQ] [SendDataBridge] - callback id: 14 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -40 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:02.137Z SERIAL « 0x011d00a8000201149f020d0111bd97b743c81c935b2802eece0f698d00d826 (31 bytes) -2024-09-06T11:06:02.137Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.138Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -40 dBm - └─[Security2CCNonceReport] - sequence number: 13 - SOS: true - MOS: false - receiver entropy: 0x11bd97b743c81c935b2802eece0f698d -2024-09-06T11:06:02.139Z SERIAL » 0x012c00a90201209f0305011241f2440a66e5c2598eb31421baa7e4f74ead92926 (46 bytes) - cfb9c0db765cf25000000000fe2 -2024-09-06T11:06:02.140Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 15 - └─[Security2CCMessageEncapsulation] - │ sequence number: 5 - │ extensions: - │ · type: SPAN - │ sender EI: 0xf2440a66e5c2598eb31421baa7e4f74e - │ key: 0xdda415256006027530b2d9548c898f93 - │ IV: 0x77f78076a8ba454b8be39ed4d7 - │ ciphertext: 0xad92 - │ auth data: 0x0201f6b51bac002005011241f2440a66e5c2598eb31421baa7e4f74 - e - │ auth tag: 0x926cfb9c0db765cf - │ security class: S2_Authenticated - └─[Security2CCNetworkKeyVerify] -2024-09-06T11:06:02.149Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:02.151Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:02.151Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.152Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:02.171Z SERIAL « 0x011d00a90f00000100d87f7f7f7f00000300000000030100007f7f7f7f7fe3 (31 bytes) -2024-09-06T11:06:02.171Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.172Z DRIVER « [REQ] [SendDataBridge] - callback id: 15 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -40 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:02.173Z DRIVER all queues idle -2024-09-06T11:06:02.189Z SERIAL « 0x010c00a8000201039f010e00d813 (14 bytes) -2024-09-06T11:06:02.190Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.190Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -40 dBm - └─[Security2CCNonceGet] - sequence number: 14 -2024-09-06T11:06:02.191Z DRIVER all queues busy -2024-09-06T11:06:02.192Z SERIAL » 0x012000a90201149f0206015ce666ecdfec4de70ad7539bb456014a05000000001 (34 bytes) - 0fb -2024-09-06T11:06:02.192Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x05 - │ callback id: 16 - └─[Security2CCNonceReport] - sequence number: 6 - SOS: true - MOS: false - receiver entropy: 0x5ce666ecdfec4de70ad7539bb456014a -2024-09-06T11:06:02.199Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:02.202Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:02.202Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.203Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:02.220Z SERIAL « 0x011d00a91000000100d87f7f7f7f00000300000000030100007f7f7f7f7ffc (31 bytes) -2024-09-06T11:06:02.220Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.221Z DRIVER « [REQ] [SendDataBridge] - callback id: 16 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -40 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:02.221Z DRIVER all queues idle -2024-09-06T11:06:02.246Z SERIAL « 0x012a00a8000201219f030f0112418e325bd8dad4d37b513cef4cb21dc3ced8044 (44 bytes) - 4fea60c22c869e41d00d805 -2024-09-06T11:06:02.247Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.247Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -40 dBm - └─[Security2CCMessageEncapsulation] - │ sequence number: 15 - │ extensions: - │ · type: SPAN - │ sender EI: 0x8e325bd8dad4d37b513cef4cb21dc3ce - │ key: 0xd303b057e46ed9a7315b3d81d4c79497 - │ IV: 0x65f3e112721d30625d04fcef75 - │ plaintext: 0x9f0c02 - │ auth tag: 0xfea60c22c869e41d - │ security class: Temporary - └─[Security2CCTransferEnd] - key verified: true - request complete: false -2024-09-06T11:06:02.248Z DRIVER all queues busy -2024-09-06T11:06:02.249Z SERIAL » 0x011b00a902010f9f030700aea3fa37ba236d7efa9f2a250000000011eb (29 bytes) -2024-09-06T11:06:02.249Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 17 - └─[Security2CCMessageEncapsulation] - │ sequence number: 7 - │ key: 0xd303b057e46ed9a7315b3d81d4c79497 - │ IV: 0x296a7a7016d2f5b9cc1bee6c97 - │ ciphertext: 0xaea3fa - │ auth data: 0x0201f6b51bac000f0700 - │ auth tag: 0x37ba236d7efa9f2a - │ security class: Temporary - └─[Security2CCNetworkKeyGet] - security class: S2_AccessControl -2024-09-06T11:06:02.256Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:02.259Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:02.259Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.259Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:02.278Z SERIAL « 0x011d00a91100000100d87f7f7f7f00000300000000030100007f7f7f7f7ffd (31 bytes) -2024-09-06T11:06:02.278Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.279Z DRIVER « [REQ] [SendDataBridge] - callback id: 17 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -40 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:02.280Z DRIVER all queues idle -2024-09-06T11:06:02.304Z SERIAL « 0x012800a80002011f9f031000277e517f2f48795adca604f18c3c03afbcbe3c235 (42 bytes) - adf97ebea850b00d817 -2024-09-06T11:06:02.305Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.306Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -40 dBm - └─[Security2CCMessageEncapsulation] - │ sequence number: 16 - │ key: 0xd303b057e46ed9a7315b3d81d4c79497 - │ IV: 0xf2a09412a5eac0907757890c7b - │ plaintext: 0x9f0a0431132050077310b6f7032f91c79c2eb8 - │ auth tag: 0x235adf97ebea850b - │ security class: Temporary - └─[Security2CCNetworkKeyReport] - security class: S2_AccessControl -2024-09-06T11:06:02.306Z DRIVER all queues busy -2024-09-06T11:06:02.307Z SERIAL » 0x010f00a90201039f0108250000000012f8 (17 bytes) -2024-09-06T11:06:02.307Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 18 - └─[Security2CCNonceGet] - sequence number: 8 -2024-09-06T11:06:02.313Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:02.315Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:02.316Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.317Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:02.334Z SERIAL « 0x011d00a91200000100d87f7f7f7f00000300000000030100007f7f7f7f7ffe (31 bytes) -2024-09-06T11:06:02.334Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.335Z DRIVER « [REQ] [SendDataBridge] - callback id: 18 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -40 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:02.355Z SERIAL « 0x011d00a8000201149f021101763d177bb16b85299b32ff75d44f1c8600d87b (31 bytes) -2024-09-06T11:06:02.356Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.356Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -40 dBm - └─[Security2CCNonceReport] - sequence number: 17 - SOS: true - MOS: false - receiver entropy: 0x763d177bb16b85299b32ff75d44f1c86 -2024-09-06T11:06:02.357Z SERIAL » 0x012c00a90201209f0309011241f8ff20c6f7337e9d0d61e8ae5925f597752cefe (46 bytes) - b2ff06de9b442250000000013aa -2024-09-06T11:06:02.358Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 19 - └─[Security2CCMessageEncapsulation] - │ sequence number: 9 - │ extensions: - │ · type: SPAN - │ sender EI: 0xf8ff20c6f7337e9d0d61e8ae5925f597 - │ key: 0xfca06923982033f3af9dfc7c1e4ad45a - │ IV: 0x9ffcc90d68eca7fd9d90c814d6 - │ ciphertext: 0x752c - │ auth data: 0x0201f6b51bac002009011241f8ff20c6f7337e9d0d61e8ae5925f59 - 7 - │ auth tag: 0xefeb2ff06de9b442 - │ security class: S2_AccessControl - └─[Security2CCNetworkKeyVerify] -2024-09-06T11:06:02.367Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:02.370Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:02.370Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.371Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:02.390Z SERIAL « 0x011d00a91300000100d87f7f7f7f00000300000000030100007f7f7f7f7fff (31 bytes) -2024-09-06T11:06:02.390Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.391Z DRIVER « [REQ] [SendDataBridge] - callback id: 19 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -40 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:02.391Z DRIVER all queues idle -2024-09-06T11:06:02.407Z SERIAL « 0x010c00a8000201039f011200d80f (14 bytes) -2024-09-06T11:06:02.408Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.408Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -40 dBm - └─[Security2CCNonceGet] - sequence number: 18 -2024-09-06T11:06:02.409Z DRIVER all queues busy -2024-09-06T11:06:02.410Z SERIAL » 0x012000a90201149f020a0124e98c5e0a68b23a67afa3b6037a4e1405000000001 (34 bytes) - 4ed -2024-09-06T11:06:02.410Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x05 - │ callback id: 20 - └─[Security2CCNonceReport] - sequence number: 10 - SOS: true - MOS: false - receiver entropy: 0x24e98c5e0a68b23a67afa3b6037a4e14 -2024-09-06T11:06:02.417Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:02.420Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:02.421Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.421Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:02.438Z SERIAL « 0x011d00a91400000100d87f7f7f7f00000300000000030100007f7f7f7f7ff8 (31 bytes) -2024-09-06T11:06:02.438Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.439Z DRIVER « [REQ] [SendDataBridge] - callback id: 20 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -40 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:02.439Z DRIVER all queues idle -2024-09-06T11:06:02.462Z SERIAL « 0x012a00a8000201219f0313011241953713e93e8173a9bf90bc14fc9e3b8a8e808 (44 bytes) - 23a74ac77a52be26c00d82a -2024-09-06T11:06:02.463Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.464Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -40 dBm - └─[Security2CCMessageEncapsulation] - │ sequence number: 19 - │ extensions: - │ · type: SPAN - │ sender EI: 0x953713e93e8173a9bf90bc14fc9e3b8a - │ key: 0xd303b057e46ed9a7315b3d81d4c79497 - │ IV: 0x9fef4b9232ec7fb741cf1852a6 - │ plaintext: 0x9f0c02 - │ auth tag: 0x3a74ac77a52be26c - │ security class: Temporary - └─[Security2CCTransferEnd] - key verified: true - request complete: false -2024-09-06T11:06:02.464Z DRIVER all queues busy -2024-09-06T11:06:02.465Z SERIAL » 0x011b00a902010f9f030b0063a31c7a2f98a43aa2b8f725000000001584 (29 bytes) -2024-09-06T11:06:02.466Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 21 - └─[Security2CCMessageEncapsulation] - │ sequence number: 11 - │ key: 0xd303b057e46ed9a7315b3d81d4c79497 - │ IV: 0xe6121ae308a3774662a9aa1ef1 - │ ciphertext: 0x63a31c - │ auth data: 0x0201f6b51bac000f0b00 - │ auth tag: 0x7a2f98a43aa2b8f7 - │ security class: Temporary - └─[Security2CCNetworkKeyGet] - security class: S0_Legacy -2024-09-06T11:06:02.472Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:02.475Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:02.475Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.476Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:02.493Z SERIAL « 0x011d00a91500000100d87f7f7f7f00000300000000030100007f7f7f7f7ff9 (31 bytes) -2024-09-06T11:06:02.493Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.494Z DRIVER « [REQ] [SendDataBridge] - callback id: 21 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -40 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:02.494Z DRIVER all queues idle -2024-09-06T11:06:02.517Z SERIAL « 0x012800a80002011f9f0314006e6919ed5ab8638d2979744b1a68bbd43284bb535 (42 bytes) - e8763078b4e8900d811 -2024-09-06T11:06:02.518Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.519Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -40 dBm - └─[Security2CCMessageEncapsulation] - │ sequence number: 20 - │ key: 0xd303b057e46ed9a7315b3d81d4c79497 - │ IV: 0x00204748ed62431b4aa3e83a48 - │ plaintext: 0x9f0a800102030405060708090a0b0c0d0e0f10 - │ auth tag: 0x535e8763078b4e89 - │ security class: Temporary - └─[Security2CCNetworkKeyReport] - security class: S0_Legacy -2024-09-06T11:06:02.520Z DRIVER all queues busy -2024-09-06T11:06:02.520Z SERIAL » 0x010f00a90201039f010c250000000016f8 (17 bytes) -2024-09-06T11:06:02.521Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 22 - └─[Security2CCNonceGet] - sequence number: 12 -2024-09-06T11:06:02.526Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:02.529Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:02.529Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.530Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:02.546Z SERIAL « 0x011d00a91600000100d87f7f7f7f00000300000000030100007f7f7f7f7ffa (31 bytes) -2024-09-06T11:06:02.546Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.546Z DRIVER « [REQ] [SendDataBridge] - callback id: 22 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -40 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:02.567Z SERIAL « 0x011d00a8000201149f02150161354b97efb7a67d462d9a888063575600d89c (31 bytes) -2024-09-06T11:06:02.567Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.568Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -40 dBm - └─[Security2CCNonceReport] - sequence number: 21 - SOS: true - MOS: false - receiver entropy: 0x61354b97efb7a67d462d9a8880635756 -2024-09-06T11:06:02.569Z SERIAL » 0x012c00a90201209f030d011241870f126da9776b3cd1412ae3717afa48e06e080 (46 bytes) - c32e190aed6c82500000000174f -2024-09-06T11:06:02.569Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 23 - └─[Security2CCMessageEncapsulation] - │ sequence number: 13 - │ extensions: - │ · type: SPAN - │ sender EI: 0x870f126da9776b3cd1412ae3717afa48 - │ key: 0xece479ca82cc867c1db471e86eab2248 - │ IV: 0x86be5f7ddf89e0a9244e16f9aa - │ ciphertext: 0xe06e - │ auth data: 0x0201f6b51bac00200d011241870f126da9776b3cd1412ae3717afa4 - 8 - │ auth tag: 0x080c32e190aed6c8 - │ security class: S0_Legacy - └─[Security2CCNetworkKeyVerify] -2024-09-06T11:06:02.578Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:02.581Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:02.581Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.581Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:02.601Z SERIAL « 0x011d00a91700000100d87f7f7f7f00000300000000030100007f7f7f7f7ffb (31 bytes) -2024-09-06T11:06:02.602Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.602Z DRIVER « [REQ] [SendDataBridge] - callback id: 23 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -40 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:02.603Z DRIVER all queues idle -2024-09-06T11:06:02.619Z SERIAL « 0x010c00a8000201039f011600d80b (14 bytes) -2024-09-06T11:06:02.619Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.620Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -40 dBm - └─[Security2CCNonceGet] - sequence number: 22 -2024-09-06T11:06:02.621Z DRIVER all queues busy -2024-09-06T11:06:02.622Z SERIAL » 0x012000a90201149f020e0136f954b3af5bacd7af45140619de332c05000000001 (34 bytes) - 869 -2024-09-06T11:06:02.622Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x05 - │ callback id: 24 - └─[Security2CCNonceReport] - sequence number: 14 - SOS: true - MOS: false - receiver entropy: 0x36f954b3af5bacd7af45140619de332c -2024-09-06T11:06:02.630Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:02.632Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:02.632Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.633Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:02.653Z SERIAL « 0x011d00a91800000100d87f7f7f7f00000300000000030100007f7f7f7f7ff4 (31 bytes) -2024-09-06T11:06:02.653Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.654Z DRIVER « [REQ] [SendDataBridge] - callback id: 24 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -40 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:02.655Z DRIVER all queues idle -2024-09-06T11:06:02.677Z SERIAL « 0x012a00a8000201219f03170112413ea321fe7ab403923c0d12693f29ab8e33bfb (44 bytes) - ca625b7a9dad56f5600d8a1 -2024-09-06T11:06:02.678Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.679Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -40 dBm - └─[Security2CCMessageEncapsulation] - │ sequence number: 23 - │ extensions: - │ · type: SPAN - │ sender EI: 0x3ea321fe7ab403923c0d12693f29ab8e - │ key: 0xd303b057e46ed9a7315b3d81d4c79497 - │ IV: 0x800c0f6dcfd1dee8148199ed3c - │ plaintext: 0x9f0c02 - │ auth tag: 0xa625b7a9dad56f56 - │ security class: Temporary - └─[Security2CCTransferEnd] - key verified: true - request complete: false -2024-09-06T11:06:02.679Z DRIVER all queues busy -2024-09-06T11:06:02.680Z SERIAL » 0x011b00a902010f9f030f00ebdd5e55166e9212fcf5e2250000000019c0 (29 bytes) -2024-09-06T11:06:02.680Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 25 - └─[Security2CCMessageEncapsulation] - │ sequence number: 15 - │ key: 0xd303b057e46ed9a7315b3d81d4c79497 - │ IV: 0x09ed6aae312b67ed9b87e9760d - │ ciphertext: 0xebdd5e - │ auth data: 0x0201f6b51bac000f0f00 - │ auth tag: 0x55166e9212fcf5e2 - │ security class: Temporary - └─[Security2CCTransferEnd] - key verified: false - request complete: true -2024-09-06T11:06:02.688Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:02.690Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:02.690Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.691Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:02.709Z SERIAL « 0x011d00a91900000100d87f7f7f7f00000300000000030100007f7f7f7f7ff5 (31 bytes) -2024-09-06T11:06:02.710Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.710Z DRIVER « [REQ] [SendDataBridge] - callback id: 25 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -40 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:02.711Z DRIVER Security S2 bootstrapping successful with these security classes: - · S2_AccessControl - · S2_Authenticated - · S2_Unauthenticated - · S0_Legacy -2024-09-06T11:06:02.711Z CNTRLR » [Node 001] querying protocol info... -2024-09-06T11:06:02.712Z SERIAL » 0x0104004101bb (6 bytes) -2024-09-06T11:06:02.712Z DRIVER » [REQ] [GetNodeProtocolInfo] - payload: 0x01 -2024-09-06T11:06:02.717Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:02.718Z SERIAL « 0x010a0141d3960102010000f2 (12 bytes) -2024-09-06T11:06:02.718Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:02.719Z DRIVER « [RES] [GetNodeProtocolInfo] - payload: 0xd3960102010000 -2024-09-06T11:06:02.720Z CNTRLR « [Node 001] received response for protocol info: - basic device class: Static Controller - generic device class: Remote Controller - specific device class: Unused - node type: Controller - is always listening: true - is frequent listening: false - can route messages: true - supports security: false - supports beaming: true - maximum data rate: 100000 kbps - protocol version: 3 -2024-09-06T11:06:02.721Z CNTRLR [Node 001] Interview stage completed: ProtocolInfo -2024-09-06T11:06:02.721Z DRIVER Finished joining network -2024-09-06T11:06:02.721Z DRIVER all queues idle -2024-09-06T11:06:07.377Z DRIVER ███████╗ ██╗ ██╗ █████╗ ██╗ ██╗ ███████╗ ██╗ ███████╗ - ╚══███╔╝ ██║ ██║ ██╔══██╗ ██║ ██║ ██╔════╝ ██║ ██╔════╝ - ███╔╝ █████╗ ██║ █╗ ██║ ███████║ ██║ ██║ █████╗ ██║ ███████╗ - ███╔╝ ╚════╝ ██║███╗██║ ██╔══██║ ╚██╗ ██╔╝ ██╔══╝ ██ ██║ ╚════██║ - ███████╗ ╚███╔███╔╝ ██║ ██║ ╚████╔╝ ███████╗ ╚█████╔╝ ███████║ - ╚══════╝ ╚══╝╚══╝ ╚═╝ ╚═╝ ╚═══╝ ╚══════╝ ╚════╝ ╚══════╝ -2024-09-06T11:06:07.377Z DRIVER version 13.2.0 -2024-09-06T11:06:07.377Z DRIVER -2024-09-06T11:06:07.377Z DRIVER starting driver... -2024-09-06T11:06:07.377Z DRIVER opening serial port /dev/serial/by-id/usb-Silicon_Labs_CP2102N_USB_to_UART_Bri - dge_Controller_ca4d95064355ee118d4d1294de9da576-if00-port0 -2024-09-06T11:06:07.385Z DRIVER serial port opened -2024-09-06T11:06:07.385Z SERIAL » 0x15 (1 bytes) -2024-09-06T11:06:08.392Z DRIVER loading configuration... -2024-09-06T11:06:08.396Z CONFIG version 13.2.0 -2024-09-06T11:06:08.712Z DRIVER beginning interview... -2024-09-06T11:06:08.713Z DRIVER added request handler for AddNodeToNetwork (0x4a)... - 1 registered -2024-09-06T11:06:08.713Z DRIVER added request handler for RemoveNodeFromNetwork (0x4b)... - 1 registered -2024-09-06T11:06:08.713Z DRIVER added request handler for ReplaceFailedNode (0x63)... - 1 registered -2024-09-06T11:06:08.713Z DRIVER added request handler for SetLearnMode (0x50)... - 1 registered -2024-09-06T11:06:08.713Z CNTRLR querying Serial API capabilities... -2024-09-06T11:06:08.714Z SERIAL » 0x01030007fb (5 bytes) -2024-09-06T11:06:08.715Z DRIVER » [REQ] [GetSerialApiCapabilities] -2024-09-06T11:06:08.726Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:08.727Z SERIAL « 0x012b01070716000000040004f6873e88cf2bc05ffbd7fde09700008000808680b (45 bytes) - a0500700000ee7fc000000041 -2024-09-06T11:06:08.727Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:08.728Z DRIVER « [RES] [GetSerialApiCapabilities] - payload: 0x0716000000040004f6873e88cf2bc05ffbd7fde09700008000808680ba0500700 - 000ee7fc0000000 -2024-09-06T11:06:08.729Z CNTRLR received API capabilities: - firmware version: 7.22 - manufacturer ID: 0x00 - product type: 0x04 - product ID: 0x04 - supported functions: - · GetSerialApiInitData (0x02) - · SetApplicationNodeInformation (0x03) - · GetControllerCapabilities (0x05) - · SetSerialApiTimeouts (0x06) - · GetSerialApiCapabilities (0x07) - · SoftReset (0x08) - · GetProtocolVersion (0x09) - · SerialAPIStarted (0x0a) - · SerialAPISetup (0x0b) - · SetRFReceiveMode (0x10) - · SendNodeInformation (0x12) - · SendData (0x13) - · SendDataMulticast (0x14) - · GetControllerVersion (0x15) - · SendDataAbort (0x16) - · FUNC_ID_ZW_GET_RANDOM (0x1c) - · GetControllerId (0x20) - · UNKNOWN_FUNC_MEMORY_GET_BYTE (0x21) - · UNKNOWN_FUNC_MEMORY_PUT_BYTE (0x22) - · UNKNOWN_FUNC_MEMORY_GET_BUFFER (0x23) - · UNKNOWN_FUNC_MEMORY_PUT_BUFFER (0x24) - · EnterBootloader (0x27) - · UNKNOWN_FUNC_UNKNOWN_0x28 (0x28) - · GetNVMId (0x29) - · ExtNVMReadLongBuffer (0x2a) - · ExtNVMReadLongByte (0x2c) - · NVMOperations (0x2e) - · ClearTxTimers (0x37) - · GetTxTimers (0x38) - · ClearNetworkStats (0x39) - · GetNetworkStats (0x3a) - · GetBackgroundRSSI (0x3b) - · SetListenBeforeTalkThreshold (0x3c) - · ExtendedNVMOperations (0x3d) - · RemoveSpecificNodeIdFromNetwork (0x3f) - · GetNodeProtocolInfo (0x41) - · HardReset (0x42) - · FUNC_ID_ZW_REPLICATION_COMMAND_COMPLETE (0x44) - · FUNC_ID_ZW_REPLICATION_SEND_DATA (0x45) - · AssignReturnRoute (0x46) - · DeleteReturnRoute (0x47) - · RequestNodeNeighborUpdate (0x48) - · ApplicationUpdateRequest (0x49) - · AddNodeToNetwork (0x4a) - · RemoveNodeFromNetwork (0x4b) - · AddPrimaryController (0x4d) - · AssignPriorityReturnRoute (0x4f) - · SetLearnMode (0x50) - · AssignSUCReturnRoute (0x51) - · RequestNetworkUpdate (0x53) - · SetSUCNodeId (0x54) - · DeleteSUCReturnRoute (0x55) - · GetSUCNodeId (0x56) - · SendSUCNodeId (0x57) - · AssignPrioritySUCReturnRoute (0x58) - · ExploreRequestInclusion (0x5e) - · ExploreRequestExclusion (0x5f) - · RequestNodeInfo (0x60) - · RemoveFailedNode (0x61) - · IsFailedNode (0x62) - · ReplaceFailedNode (0x63) - · undefined (0x65) - · RequestProtocolCCEncryption (0x68) - · GetRoutingInfo (0x80) - · LockUnlockLastRoute (0x90) - · GetPriorityRoute (0x92) - · SetPriorityRoute (0x93) - · UNKNOWN_FUNC_UNKNOWN_0x98 (0x98) - · VirtualNodeSetNodeInfo (0xa0) - · VirtualNodeSendNodeInfo (0xa2) - · VirtualNodeSetLearnMode (0xa4) - · GetVirtualNodes (0xa5) - · IsVirtualNode (0xa6) - · BridgeApplicationCommand (0xa8) - · SendDataBridge (0xa9) - · SendDataMulticastBridge (0xab) - · GetLibrary (0xbd) - · SendTestFrame (0xbe) - · GetProtocolStatus (0xbf) - · StartWatchdog (0xd2) - · StopWatchdog (0xd3) - · SetMaximumRoutingAttempts (0xd4) - · SetMaxSmartStartInclusionRequestInterval (0xd6) - · undefined (0xd7) - · undefined (0xd8) - · Shutdown (0xd9) - · GetLongRangeNodes (0xda) - · GetLongRangeChannel (0xdb) - · SetLongRangeChannel (0xdc) - · SetLongRangeShadowNodeIDs (0xdd) - · Proprietary_DE (0xde) - · Proprietary_DF (0xdf) - · Proprietary_E7 (0xe7) - · Proprietary_E8 (0xe8) -2024-09-06T11:06:08.729Z CNTRLR querying additional controller information... -2024-09-06T11:06:08.730Z SERIAL » 0x01030002fe (5 bytes) -2024-09-06T11:06:08.730Z DRIVER » [REQ] [GetSerialApiInitData] -2024-09-06T11:06:08.739Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:08.739Z SERIAL « 0x012501020a001d030000000000000000000000000000000000000000000000000 (39 bytes) - 00000000800c5 -2024-09-06T11:06:08.740Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:08.740Z DRIVER « [RES] [GetSerialApiInitData] - payload: 0x0a001d03000000000000000000000000000000000000000000000000000000000 - 800 -2024-09-06T11:06:08.741Z CNTRLR received additional controller information: - Z-Wave API version: 1 (official) - Z-Wave chip type: EFR32ZG23 / ZGM230S - node type Controller - controller role: primary - controller is the SIS: false - controller supports timers: false - Z-Wave Classic nodes: 1, 2 -2024-09-06T11:06:08.741Z CNTRLR querying version info... -2024-09-06T11:06:08.742Z SERIAL » 0x01030015e9 (5 bytes) -2024-09-06T11:06:08.742Z DRIVER » [REQ] [GetControllerVersion] -2024-09-06T11:06:08.747Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:08.748Z SERIAL « 0x011001155a2d5761766520372e3232000797 (18 bytes) -2024-09-06T11:06:08.748Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:08.749Z DRIVER « [RES] [GetControllerVersion] - payload: 0x5a2d5761766520372e32320007 -2024-09-06T11:06:08.749Z CNTRLR received version info: - controller type: Bridge Controller - library version: Z-Wave 7.22 -2024-09-06T11:06:08.750Z CNTRLR querying protocol version info... -2024-09-06T11:06:08.751Z SERIAL » 0x01030009f5 (5 bytes) -2024-09-06T11:06:08.751Z DRIVER » [REQ] [GetProtocolVersion] -2024-09-06T11:06:08.757Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:08.758Z SERIAL « 0x0119010900071601abcd63636639623665613165616566313162c3 (27 bytes) -2024-09-06T11:06:08.758Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:08.758Z DRIVER « [RES] [GetProtocolVersion] - payload: 0x00071601abcd63636639623665613165616566313162 -2024-09-06T11:06:08.759Z CNTRLR received protocol version info: - protocol type: Z-Wave - protocol version: 7.22.1 - appl. framework build no.: 43981 - git commit hash: 63636639623665613165616566313162 -2024-09-06T11:06:08.759Z CNTRLR querying controller capabilities... -2024-09-06T11:06:08.760Z SERIAL » 0x01030005f9 (5 bytes) -2024-09-06T11:06:08.760Z DRIVER » [REQ] [GetControllerCapabilities] -2024-09-06T11:06:08.765Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:08.766Z SERIAL « 0x0104010506f9 (6 bytes) -2024-09-06T11:06:08.766Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:08.766Z DRIVER « [RES] [GetControllerCapabilities] - payload: 0x06 -2024-09-06T11:06:08.767Z CNTRLR received controller capabilities: - controller role: Inclusion - is the SUC: false - started this network: false - SIS is present: true - was real primary: false -2024-09-06T11:06:08.767Z CNTRLR querying serial API setup capabilities... -2024-09-06T11:06:08.768Z SERIAL » 0x0104000b01f1 (6 bytes) -2024-09-06T11:06:08.769Z DRIVER » [REQ] [SerialAPISetup] - command: GetSupportedCommands - payload: 0x01 -2024-09-06T11:06:08.775Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:08.775Z SERIAL « 0x0116010b01ff9f8007800000008000000000000000800085 (24 bytes) -2024-09-06T11:06:08.775Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:08.776Z DRIVER « [RES] [SerialAPISetup] - command: GetSupportedCommands - payload: 0xff9f80078000000080000000000000008000 -2024-09-06T11:06:08.776Z CNTRLR supported serial API setup commands: - · GetSupportedCommands - · SetTxStatusReport - · SetLongRangeMaximumTxPower - · SetPowerlevel - · GetLongRangeMaximumTxPower - · GetPowerlevel - · GetMaximumPayloadSize - · GetLongRangeMaximumPayloadSize - · SetPowerlevel16Bit - · GetPowerlevel16Bit - · GetRFRegion - · SetRFRegion - · SetNodeIDType -2024-09-06T11:06:08.776Z CNTRLR querying max. payload size... -2024-09-06T11:06:08.777Z SERIAL » 0x0104000b10e0 (6 bytes) -2024-09-06T11:06:08.777Z DRIVER » [REQ] [SerialAPISetup] - command: GetMaximumPayloadSize - payload: 0x10 -2024-09-06T11:06:08.783Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:08.783Z SERIAL « 0x0105010b102ece (7 bytes) -2024-09-06T11:06:08.783Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:08.784Z DRIVER « [RES] [SerialAPISetup] - command: GetMaximumPayloadSize - maximum payload size: 46 bytes -2024-09-06T11:06:08.784Z CNTRLR maximum payload size: 46 bytes -2024-09-06T11:06:08.785Z CNTRLR supported Z-Wave features: - · SmartStart -2024-09-06T11:06:08.785Z CNTRLR Querying configured RF region... -2024-09-06T11:06:08.785Z SERIAL » 0x0104000b20d0 (6 bytes) -2024-09-06T11:06:08.786Z DRIVER » [REQ] [SerialAPISetup] - command: GetRFRegion - payload: 0x20 -2024-09-06T11:06:08.790Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:08.791Z SERIAL « 0x0105010b2000d0 (7 bytes) -2024-09-06T11:06:08.791Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:08.791Z DRIVER « [RES] [SerialAPISetup] - command: GetRFRegion - region: Europe -2024-09-06T11:06:08.792Z CNTRLR The controller is using RF region Europe -2024-09-06T11:06:08.792Z CNTRLR Querying configured max. Long Range powerlevel... -2024-09-06T11:06:08.793Z SERIAL » 0x0104000b05f5 (6 bytes) -2024-09-06T11:06:08.793Z DRIVER » [REQ] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - payload: 0x05 -2024-09-06T11:06:08.798Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:08.799Z SERIAL « 0x0106010b05008c7a (8 bytes) -2024-09-06T11:06:08.799Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:08.799Z DRIVER « [RES] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - max. TX power (LR): 14.0 dBm -2024-09-06T11:06:08.800Z CNTRLR The max. LR powerlevel is 14.0 dBm -2024-09-06T11:06:08.800Z CNTRLR Querying configured Long Range channel information... -2024-09-06T11:06:08.800Z SERIAL » 0x010300db27 (5 bytes) -2024-09-06T11:06:08.801Z DRIVER » [REQ] [GetLongRangeChannel] -2024-09-06T11:06:08.806Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:08.806Z SERIAL « 0x010501db001030 (7 bytes) -2024-09-06T11:06:08.806Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:08.807Z DRIVER « [RES] [GetLongRangeChannel] - payload: 0x0010 -2024-09-06T11:06:08.807Z CNTRLR received Z-Wave Long Range channel information: - channel: Unsupported - supports auto channel selection: true -2024-09-06T11:06:08.808Z CNTRLR Performing soft reset... -2024-09-06T11:06:08.808Z SERIAL » 0x01030008f4 (5 bytes) -2024-09-06T11:06:08.809Z DRIVER » [REQ] [SoftReset] -2024-09-06T11:06:08.812Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:08.813Z CNTRLR Waiting for the controller to reconnect... -2024-09-06T11:06:08.813Z DRIVER all queues idle -2024-09-06T11:06:08.928Z SERIAL « 0x0116000a0700010100085e989f556c568f7400031d00003f (24 bytes) -2024-09-06T11:06:08.930Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:08.931Z DRIVER « [REQ] [SerialAPIStarted] - wake up reason: SoftwareReset - watchdog enabled: false - generic device class: 0x01 - specific device class: 0x00 - always listening: false - supports Long Range: false -2024-09-06T11:06:08.934Z CNTRLR reconnected and restarted -2024-09-06T11:06:08.934Z CNTRLR Starting hardware watchdog... -2024-09-06T11:06:08.936Z CNTRLR Switching serial API to 16-bit node IDs... -2024-09-06T11:06:08.937Z CNTRLR Switching serial API to 8-bit node IDs... -2024-09-06T11:06:08.938Z DRIVER all queues busy -2024-09-06T11:06:08.939Z SERIAL » 0x010300d22e (5 bytes) -2024-09-06T11:06:08.940Z DRIVER » [REQ] [StartWatchdog] -2024-09-06T11:06:08.945Z SERIAL » 0x0105000b800273 (7 bytes) -2024-09-06T11:06:08.946Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 16 bit -2024-09-06T11:06:08.947Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:08.951Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:08.951Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T11:06:08.952Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:08.952Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T11:06:08.953Z CNTRLR Switching to 16-bit node IDs successful -2024-09-06T11:06:08.953Z SERIAL » 0x0105000b800170 (7 bytes) -2024-09-06T11:06:08.954Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 8 bit -2024-09-06T11:06:08.959Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:08.959Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T11:06:08.960Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:08.960Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T11:06:08.961Z CNTRLR Switching to 8-bit node IDs successful -2024-09-06T11:06:08.961Z CNTRLR querying controller IDs... -2024-09-06T11:06:08.961Z SERIAL » 0x01030020dc (5 bytes) -2024-09-06T11:06:08.962Z DRIVER » [REQ] [GetControllerId] -2024-09-06T11:06:08.966Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:08.967Z SERIAL « 0x01080120f6b51bac0220 (10 bytes) -2024-09-06T11:06:08.967Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:08.968Z DRIVER « [RES] [GetControllerId] - home ID: 0xf6b51bac - own node ID: 2 -2024-09-06T11:06:08.968Z CNTRLR received controller IDs: - home ID: 0xf6b51bac - own node ID: 2 -2024-09-06T11:06:08.969Z CNTRLR Enabling TX status report... -2024-09-06T11:06:08.969Z SERIAL » 0x0105000b02ff0c (7 bytes) -2024-09-06T11:06:08.970Z DRIVER » [REQ] [SerialAPISetup] - command: SetTxStatusReport - enabled: true -2024-09-06T11:06:08.975Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:08.975Z SERIAL « 0x0105010b0201f3 (7 bytes) -2024-09-06T11:06:08.976Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:08.976Z DRIVER « [RES] [SerialAPISetup] - command: SetTxStatusReport - success: true -2024-09-06T11:06:08.977Z CNTRLR Enabling TX status report successful... -2024-09-06T11:06:08.977Z CNTRLR finding SUC... -2024-09-06T11:06:08.977Z SERIAL » 0x01030056aa (5 bytes) -2024-09-06T11:06:08.977Z DRIVER » [REQ] [GetSUCNodeId] -2024-09-06T11:06:08.982Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:08.982Z SERIAL « 0x0104015601ad (6 bytes) -2024-09-06T11:06:08.982Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:08.983Z DRIVER « [RES] [GetSUCNodeId] - payload: 0x01 -2024-09-06T11:06:08.983Z CNTRLR SUC has node ID 1 -2024-09-06T11:06:08.984Z DRIVER all queues idle -2024-09-06T11:06:08.995Z DRIVER Cache file for homeId 0xf6b51bac found, attempting to restore the network from - cache... -2024-09-06T11:06:09.003Z CNTRLR [Node 002] Embedded device config loaded -2024-09-06T11:06:09.003Z DRIVER Restoring the network from cache was successful! -2024-09-06T11:06:09.004Z CNTRLR [Node 002] [Manufacturer Specific] manufacturerId: metadata updated -2024-09-06T11:06:09.004Z CNTRLR [Node 002] [Manufacturer Specific] productType: metadata updated -2024-09-06T11:06:09.004Z CNTRLR [Node 002] [Manufacturer Specific] productId: metadata updated -2024-09-06T11:06:09.005Z CNTRLR [Node 002] [~] [Manufacturer Specific] manufacturerId: 0 => 0 -2024-09-06T11:06:09.005Z CNTRLR [Node 002] [~] [Manufacturer Specific] productType: 4 => 4 -2024-09-06T11:06:09.005Z CNTRLR [Node 002] [~] [Manufacturer Specific] productId: 4 => 4 -2024-09-06T11:06:09.006Z CNTRLR [Node 002] [Version] firmwareVersions: metadata updated -2024-09-06T11:06:09.006Z CNTRLR [Node 002] [~] [Version] firmwareVersions: 7.22 => 7.22 -2024-09-06T11:06:09.006Z CNTRLR [Node 002] [Version] zWaveProtocolVersion: metadata updated -2024-09-06T11:06:09.006Z CNTRLR [Node 002] [~] [Version] zWaveProtocolVersion: "7.22.1" => "7.22.1" -2024-09-06T11:06:09.006Z CNTRLR [Node 002] [Version] sdkVersion: metadata updated -2024-09-06T11:06:09.006Z CNTRLR [Node 002] [~] [Version] sdkVersion: "7.22.1" => "7.22.1" -2024-09-06T11:06:09.007Z CNTRLR Interview completed -2024-09-06T11:06:09.007Z DRIVER Network key for S0 found in cache, enabling S0 security manager... -2024-09-06T11:06:09.007Z DRIVER At least one network key for S2 found in cache, enabling S2 security manager.. - . -2024-09-06T11:06:09.009Z DRIVER driver ready -2024-09-06T11:06:09.010Z CNTRLR [Node 002] Beginning interview - last completed stage: None -2024-09-06T11:06:09.010Z CNTRLR [Node 002] new node, doing a full interview... -2024-09-06T11:06:09.010Z CNTRLR » [Node 002] querying protocol info... -2024-09-06T11:06:09.011Z DRIVER all queues busy -2024-09-06T11:06:09.012Z SERIAL » 0x0104004102b8 (6 bytes) -2024-09-06T11:06:09.012Z DRIVER » [REQ] [GetNodeProtocolInfo] - payload: 0x02 -2024-09-06T11:06:09.018Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:09.018Z SERIAL « 0x010a0141d3960102010000f2 (12 bytes) -2024-09-06T11:06:09.019Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:09.019Z DRIVER « [RES] [GetNodeProtocolInfo] - payload: 0xd3960102010000 -2024-09-06T11:06:09.020Z CNTRLR « [Node 002] received response for protocol info: - basic device class: Static Controller - generic device class: Remote Controller - specific device class: Unused - node type: Controller - is always listening: true - is frequent listening: false - can route messages: true - supports security: false - supports beaming: true - maximum data rate: 100000 kbps - protocol version: 3 -2024-09-06T11:06:09.020Z CNTRLR [Node 002] Interview stage completed: ProtocolInfo -2024-09-06T11:06:09.021Z DRIVER all queues idle -2024-09-06T11:06:09.023Z CNTRLR [Node 002] Embedded device config loaded -2024-09-06T11:06:09.023Z CNTRLR [Node 002] Interview stage completed: OverwriteConfig -2024-09-06T11:06:09.023Z CNTRLR [Node 002] Interview completed -2024-09-06T11:06:09.024Z CNTRLR [Node 002] The node is ready to be used -2024-09-06T11:06:09.024Z CNTRLR [Node 002] The node is alive. -2024-09-06T11:06:09.024Z CNTRLR » [Node 001] querying protocol info... -2024-09-06T11:06:09.025Z DRIVER all queues busy -2024-09-06T11:06:09.025Z SERIAL » 0x0104004101bb (6 bytes) -2024-09-06T11:06:09.026Z DRIVER » [REQ] [GetNodeProtocolInfo] - payload: 0x01 -2024-09-06T11:06:09.031Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:09.032Z SERIAL « 0x010a0141d3960102010000f2 (12 bytes) -2024-09-06T11:06:09.032Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:09.032Z DRIVER « [RES] [GetNodeProtocolInfo] - payload: 0xd3960102010000 -2024-09-06T11:06:09.033Z CNTRLR « [Node 001] received response for protocol info: - basic device class: Static Controller - generic device class: Remote Controller - specific device class: Unused - node type: Controller - is always listening: true - is frequent listening: false - can route messages: true - supports security: false - supports beaming: true - maximum data rate: 100000 kbps - protocol version: 3 -2024-09-06T11:06:09.033Z CNTRLR [Node 001] Interview stage completed: ProtocolInfo -2024-09-06T11:06:09.033Z CNTRLR Determining node status: 1 -2024-09-06T11:06:09.033Z CNTRLR » [Node 001] pinging the node... -2024-09-06T11:06:09.035Z SERIAL » 0x010d00a9020101002500000000017d (15 bytes) -2024-09-06T11:06:09.036Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 1 - └─[NoOperationCC] -2024-09-06T11:06:09.042Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:09.044Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:09.044Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:09.044Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:09.064Z SERIAL « 0x011d00a90100000100d87f7f7f7f00000300000000030100007f7f7f7f7fed (31 bytes) -2024-09-06T11:06:09.065Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:09.065Z DRIVER « [REQ] [SendDataBridge] - callback id: 1 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -40 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:09.067Z CNTRLR [Node 001] The node is alive. -2024-09-06T11:06:09.067Z CNTRLR « [Node 001] ping successful -2024-09-06T11:06:09.067Z DRIVER all queues idle -2024-09-06T11:06:14.009Z CNTRLR Updating the controller NIF... -2024-09-06T11:06:14.010Z DRIVER all queues busy -2024-09-06T11:06:14.011Z SERIAL » 0x010f0003010100085e989f556c568f7436 (17 bytes) -2024-09-06T11:06:14.012Z DRIVER » [REQ] [SetApplicationNodeInformation] - is listening: true - generic device class: 0x01 - specific device class: 0x00 - supported CCs: - · Z-Wave Plus Info - · Security - · Security 2 - · Transport Service - · Supervision - · CRC-16 Encapsulation - · Multi Command - · Inclusion Controller - controlled CCs: -2024-09-06T11:06:14.018Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:14.018Z CNTRLR performing hard reset... -2024-09-06T11:06:14.019Z SERIAL » 0x0104004202bb (6 bytes) -2024-09-06T11:06:14.020Z DRIVER » [REQ] [HardReset] - callback id: 2 -2024-09-06T11:06:14.024Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:14.045Z SERIAL « 0x0104004202bb (6 bytes) -2024-09-06T11:06:14.046Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:14.048Z DRIVER « [REQ] [HardReset] - callback id: 2 -2024-09-06T11:06:14.049Z CNTRLR hard reset succeeded -2024-09-06T11:06:14.050Z CNTRLR querying Serial API capabilities... -2024-09-06T11:06:14.051Z SERIAL » 0x01030007fb (5 bytes) -2024-09-06T11:06:14.052Z DRIVER » [REQ] [GetSerialApiCapabilities] -2024-09-06T11:06:14.061Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:14.062Z SERIAL « 0x012b01070716000000040004f6873e88cf2bc05ffbd7fde09700008000808680b (45 bytes) - a0500700000ee7fc000000041 -2024-09-06T11:06:14.063Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:14.064Z DRIVER « [RES] [GetSerialApiCapabilities] - payload: 0x0716000000040004f6873e88cf2bc05ffbd7fde09700008000808680ba0500700 - 000ee7fc0000000 -2024-09-06T11:06:14.066Z CNTRLR received API capabilities: - firmware version: 7.22 - manufacturer ID: 0x00 - product type: 0x04 - product ID: 0x04 - supported functions: - · GetSerialApiInitData (0x02) - · SetApplicationNodeInformation (0x03) - · GetControllerCapabilities (0x05) - · SetSerialApiTimeouts (0x06) - · GetSerialApiCapabilities (0x07) - · SoftReset (0x08) - · GetProtocolVersion (0x09) - · SerialAPIStarted (0x0a) - · SerialAPISetup (0x0b) - · SetRFReceiveMode (0x10) - · SendNodeInformation (0x12) - · SendData (0x13) - · SendDataMulticast (0x14) - · GetControllerVersion (0x15) - · SendDataAbort (0x16) - · FUNC_ID_ZW_GET_RANDOM (0x1c) - · GetControllerId (0x20) - · UNKNOWN_FUNC_MEMORY_GET_BYTE (0x21) - · UNKNOWN_FUNC_MEMORY_PUT_BYTE (0x22) - · UNKNOWN_FUNC_MEMORY_GET_BUFFER (0x23) - · UNKNOWN_FUNC_MEMORY_PUT_BUFFER (0x24) - · EnterBootloader (0x27) - · UNKNOWN_FUNC_UNKNOWN_0x28 (0x28) - · GetNVMId (0x29) - · ExtNVMReadLongBuffer (0x2a) - · ExtNVMReadLongByte (0x2c) - · NVMOperations (0x2e) - · ClearTxTimers (0x37) - · GetTxTimers (0x38) - · ClearNetworkStats (0x39) - · GetNetworkStats (0x3a) - · GetBackgroundRSSI (0x3b) - · SetListenBeforeTalkThreshold (0x3c) - · ExtendedNVMOperations (0x3d) - · RemoveSpecificNodeIdFromNetwork (0x3f) - · GetNodeProtocolInfo (0x41) - · HardReset (0x42) - · FUNC_ID_ZW_REPLICATION_COMMAND_COMPLETE (0x44) - · FUNC_ID_ZW_REPLICATION_SEND_DATA (0x45) - · AssignReturnRoute (0x46) - · DeleteReturnRoute (0x47) - · RequestNodeNeighborUpdate (0x48) - · ApplicationUpdateRequest (0x49) - · AddNodeToNetwork (0x4a) - · RemoveNodeFromNetwork (0x4b) - · AddPrimaryController (0x4d) - · AssignPriorityReturnRoute (0x4f) - · SetLearnMode (0x50) - · AssignSUCReturnRoute (0x51) - · RequestNetworkUpdate (0x53) - · SetSUCNodeId (0x54) - · DeleteSUCReturnRoute (0x55) - · GetSUCNodeId (0x56) - · SendSUCNodeId (0x57) - · AssignPrioritySUCReturnRoute (0x58) - · ExploreRequestInclusion (0x5e) - · ExploreRequestExclusion (0x5f) - · RequestNodeInfo (0x60) - · RemoveFailedNode (0x61) - · IsFailedNode (0x62) - · ReplaceFailedNode (0x63) - · undefined (0x65) - · RequestProtocolCCEncryption (0x68) - · GetRoutingInfo (0x80) - · LockUnlockLastRoute (0x90) - · GetPriorityRoute (0x92) - · SetPriorityRoute (0x93) - · UNKNOWN_FUNC_UNKNOWN_0x98 (0x98) - · VirtualNodeSetNodeInfo (0xa0) - · VirtualNodeSendNodeInfo (0xa2) - · VirtualNodeSetLearnMode (0xa4) - · GetVirtualNodes (0xa5) - · IsVirtualNode (0xa6) - · BridgeApplicationCommand (0xa8) - · SendDataBridge (0xa9) - · SendDataMulticastBridge (0xab) - · GetLibrary (0xbd) - · SendTestFrame (0xbe) - · GetProtocolStatus (0xbf) - · StartWatchdog (0xd2) - · StopWatchdog (0xd3) - · SetMaximumRoutingAttempts (0xd4) - · SetMaxSmartStartInclusionRequestInterval (0xd6) - · undefined (0xd7) - · undefined (0xd8) - · Shutdown (0xd9) - · GetLongRangeNodes (0xda) - · GetLongRangeChannel (0xdb) - · SetLongRangeChannel (0xdc) - · SetLongRangeShadowNodeIDs (0xdd) - · Proprietary_DE (0xde) - · Proprietary_DF (0xdf) - · Proprietary_E7 (0xe7) - · Proprietary_E8 (0xe8) -2024-09-06T11:06:14.066Z CNTRLR querying additional controller information... -2024-09-06T11:06:14.068Z SERIAL » 0x01030002fe (5 bytes) -2024-09-06T11:06:14.068Z DRIVER » [REQ] [GetSerialApiInitData] -2024-09-06T11:06:14.078Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:14.079Z SERIAL « 0x012501020a001d010000000000000000000000000000000000000000000000000 (39 bytes) - 00000000800c7 -2024-09-06T11:06:14.080Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:14.081Z DRIVER « [RES] [GetSerialApiInitData] - payload: 0x0a001d01000000000000000000000000000000000000000000000000000000000 - 800 -2024-09-06T11:06:14.082Z CNTRLR received additional controller information: - Z-Wave API version: 1 (official) - Z-Wave chip type: EFR32ZG23 / ZGM230S - node type Controller - controller role: primary - controller is the SIS: false - controller supports timers: false - Z-Wave Classic nodes: 1 -2024-09-06T11:06:14.083Z CNTRLR querying version info... -2024-09-06T11:06:14.084Z SERIAL » 0x01030015e9 (5 bytes) -2024-09-06T11:06:14.085Z DRIVER » [REQ] [GetControllerVersion] -2024-09-06T11:06:14.091Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:14.092Z SERIAL « 0x011001155a2d5761766520372e3232000797 (18 bytes) -2024-09-06T11:06:14.092Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:14.094Z DRIVER « [RES] [GetControllerVersion] - payload: 0x5a2d5761766520372e32320007 -2024-09-06T11:06:14.095Z CNTRLR received version info: - controller type: Bridge Controller - library version: Z-Wave 7.22 -2024-09-06T11:06:14.095Z CNTRLR querying protocol version info... -2024-09-06T11:06:14.097Z SERIAL » 0x01030009f5 (5 bytes) -2024-09-06T11:06:14.098Z DRIVER » [REQ] [GetProtocolVersion] -2024-09-06T11:06:14.104Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:14.106Z SERIAL « 0x0119010900071601abcd63636639623665613165616566313162c3 (27 bytes) -2024-09-06T11:06:14.106Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:14.107Z DRIVER « [RES] [GetProtocolVersion] - payload: 0x00071601abcd63636639623665613165616566313162 -2024-09-06T11:06:14.109Z CNTRLR received protocol version info: - protocol type: Z-Wave - protocol version: 7.22.1 - appl. framework build no.: 43981 - git commit hash: 63636639623665613165616566313162 -2024-09-06T11:06:14.109Z CNTRLR querying controller capabilities... -2024-09-06T11:06:14.111Z SERIAL » 0x01030005f9 (5 bytes) -2024-09-06T11:06:14.111Z DRIVER » [REQ] [GetControllerCapabilities] -2024-09-06T11:06:14.117Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:14.118Z SERIAL « 0x0104010528d7 (6 bytes) -2024-09-06T11:06:14.118Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:14.119Z DRIVER « [RES] [GetControllerCapabilities] - payload: 0x28 -2024-09-06T11:06:14.121Z CNTRLR received controller capabilities: - controller role: Primary - is the SUC: false - started this network: true - SIS is present: false - was real primary: true -2024-09-06T11:06:14.121Z CNTRLR querying serial API setup capabilities... -2024-09-06T11:06:14.123Z SERIAL » 0x0104000b01f1 (6 bytes) -2024-09-06T11:06:14.124Z DRIVER » [REQ] [SerialAPISetup] - command: GetSupportedCommands - payload: 0x01 -2024-09-06T11:06:14.130Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:14.131Z SERIAL « 0x0116010b01ff9f8007800000008000000000000000800085 (24 bytes) -2024-09-06T11:06:14.132Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:14.133Z DRIVER « [RES] [SerialAPISetup] - command: GetSupportedCommands - payload: 0xff9f80078000000080000000000000008000 -2024-09-06T11:06:14.134Z CNTRLR supported serial API setup commands: - · GetSupportedCommands - · SetTxStatusReport - · SetLongRangeMaximumTxPower - · SetPowerlevel - · GetLongRangeMaximumTxPower - · GetPowerlevel - · GetMaximumPayloadSize - · GetLongRangeMaximumPayloadSize - · SetPowerlevel16Bit - · GetPowerlevel16Bit - · GetRFRegion - · SetRFRegion - · SetNodeIDType -2024-09-06T11:06:14.135Z CNTRLR querying max. payload size... -2024-09-06T11:06:14.136Z SERIAL » 0x0104000b10e0 (6 bytes) -2024-09-06T11:06:14.137Z DRIVER » [REQ] [SerialAPISetup] - command: GetMaximumPayloadSize - payload: 0x10 -2024-09-06T11:06:14.141Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:14.142Z SERIAL « 0x0105010b102ece (7 bytes) -2024-09-06T11:06:14.143Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:14.144Z DRIVER « [RES] [SerialAPISetup] - command: GetMaximumPayloadSize - maximum payload size: 46 bytes -2024-09-06T11:06:14.144Z CNTRLR maximum payload size: 46 bytes -2024-09-06T11:06:14.145Z CNTRLR supported Z-Wave features: - · SmartStart -2024-09-06T11:06:14.145Z CNTRLR Querying configured RF region... -2024-09-06T11:06:14.146Z SERIAL » 0x0104000b20d0 (6 bytes) -2024-09-06T11:06:14.146Z DRIVER » [REQ] [SerialAPISetup] - command: GetRFRegion - payload: 0x20 -2024-09-06T11:06:14.152Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:14.153Z SERIAL « 0x0105010b2000d0 (7 bytes) -2024-09-06T11:06:14.153Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:14.154Z DRIVER « [RES] [SerialAPISetup] - command: GetRFRegion - region: Europe -2024-09-06T11:06:14.155Z CNTRLR The controller is using RF region Europe -2024-09-06T11:06:14.155Z CNTRLR Querying configured max. Long Range powerlevel... -2024-09-06T11:06:14.156Z SERIAL » 0x0104000b05f5 (6 bytes) -2024-09-06T11:06:14.156Z DRIVER » [REQ] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - payload: 0x05 -2024-09-06T11:06:14.162Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:14.162Z SERIAL « 0x0106010b05008c7a (8 bytes) -2024-09-06T11:06:14.162Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:14.163Z DRIVER « [RES] [SerialAPISetup] - command: GetLongRangeMaximumTxPower - max. TX power (LR): 14.0 dBm -2024-09-06T11:06:14.164Z CNTRLR The max. LR powerlevel is 14.0 dBm -2024-09-06T11:06:14.164Z CNTRLR Querying configured Long Range channel information... -2024-09-06T11:06:14.165Z SERIAL » 0x010300db27 (5 bytes) -2024-09-06T11:06:14.165Z DRIVER » [REQ] [GetLongRangeChannel] -2024-09-06T11:06:14.170Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:14.170Z SERIAL « 0x010501db001030 (7 bytes) -2024-09-06T11:06:14.170Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:14.171Z DRIVER « [RES] [GetLongRangeChannel] - payload: 0x0010 -2024-09-06T11:06:14.171Z CNTRLR received Z-Wave Long Range channel information: - channel: Unsupported - supports auto channel selection: true -2024-09-06T11:06:14.171Z CNTRLR Performing soft reset... -2024-09-06T11:06:14.172Z SERIAL » 0x01030008f4 (5 bytes) -2024-09-06T11:06:14.172Z DRIVER » [REQ] [SoftReset] -2024-09-06T11:06:14.176Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:14.177Z CNTRLR Waiting for the controller to reconnect... -2024-09-06T11:06:14.177Z DRIVER all queues idle -2024-09-06T11:06:14.283Z SERIAL « 0x0116000a0700010100085e989f556c568f7400031d00003f (24 bytes) -2024-09-06T11:06:14.284Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:14.285Z DRIVER « [REQ] [SerialAPIStarted] - wake up reason: SoftwareReset - watchdog enabled: false - generic device class: 0x01 - specific device class: 0x00 - always listening: false - supports Long Range: false -2024-09-06T11:06:14.286Z CNTRLR reconnected and restarted -2024-09-06T11:06:14.286Z CNTRLR Starting hardware watchdog... -2024-09-06T11:06:14.287Z CNTRLR Switching serial API to 16-bit node IDs... -2024-09-06T11:06:14.287Z CNTRLR Switching serial API to 8-bit node IDs... -2024-09-06T11:06:14.288Z DRIVER all queues busy -2024-09-06T11:06:14.289Z SERIAL » 0x010300d22e (5 bytes) -2024-09-06T11:06:14.290Z DRIVER » [REQ] [StartWatchdog] -2024-09-06T11:06:14.293Z SERIAL » 0x0105000b800273 (7 bytes) -2024-09-06T11:06:14.293Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 16 bit -2024-09-06T11:06:14.295Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:14.299Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:14.299Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T11:06:14.299Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:14.300Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T11:06:14.301Z CNTRLR Switching to 16-bit node IDs successful -2024-09-06T11:06:14.301Z SERIAL » 0x0105000b800170 (7 bytes) -2024-09-06T11:06:14.302Z DRIVER » [REQ] [SerialAPISetup] - command: SetNodeIDType - node ID type: 8 bit -2024-09-06T11:06:14.307Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:14.308Z SERIAL « 0x0105010b800171 (7 bytes) -2024-09-06T11:06:14.308Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:14.309Z DRIVER « [RES] [SerialAPISetup] - command: SetNodeIDType - success: true -2024-09-06T11:06:14.309Z CNTRLR Switching to 8-bit node IDs successful -2024-09-06T11:06:14.309Z CNTRLR querying controller IDs... -2024-09-06T11:06:14.310Z SERIAL » 0x01030020dc (5 bytes) -2024-09-06T11:06:14.310Z DRIVER » [REQ] [GetControllerId] -2024-09-06T11:06:14.315Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:14.316Z SERIAL « 0x01080120d8fff15a015b (10 bytes) -2024-09-06T11:06:14.316Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:14.316Z DRIVER « [RES] [GetControllerId] - home ID: 0xd8fff15a - own node ID: 1 -2024-09-06T11:06:14.317Z CNTRLR received controller IDs: - home ID: 0xd8fff15a - own node ID: 1 -2024-09-06T11:06:14.317Z CNTRLR Enabling TX status report... -2024-09-06T11:06:14.318Z SERIAL » 0x0105000b02ff0c (7 bytes) -2024-09-06T11:06:14.318Z DRIVER » [REQ] [SerialAPISetup] - command: SetTxStatusReport - enabled: true -2024-09-06T11:06:14.324Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:14.325Z SERIAL « 0x0105010b0201f3 (7 bytes) -2024-09-06T11:06:14.325Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:14.325Z DRIVER « [RES] [SerialAPISetup] - command: SetTxStatusReport - success: true -2024-09-06T11:06:14.326Z CNTRLR Enabling TX status report successful... -2024-09-06T11:06:14.326Z CNTRLR finding SUC... -2024-09-06T11:06:14.326Z SERIAL » 0x01030056aa (5 bytes) -2024-09-06T11:06:14.327Z DRIVER » [REQ] [GetSUCNodeId] -2024-09-06T11:06:14.331Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:14.332Z SERIAL « 0x0104015600ac (6 bytes) -2024-09-06T11:06:14.332Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:14.332Z DRIVER « [RES] [GetSUCNodeId] - payload: 0x00 -2024-09-06T11:06:14.333Z CNTRLR No SUC present in the network -2024-09-06T11:06:14.333Z CNTRLR There is no SUC/SIS in the network - promoting ourselves... -2024-09-06T11:06:14.333Z SERIAL » 0x01080054010125010384 (10 bytes) -2024-09-06T11:06:14.333Z DRIVER » [REQ] [SetSUCNodeId] - payload: 0x0101250103 -2024-09-06T11:06:14.340Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:14.341Z SERIAL « 0x0104015401af (6 bytes) -2024-09-06T11:06:14.341Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:14.341Z DRIVER « [RES] [SetSUCNodeId] - was executed: true -2024-09-06T11:06:14.342Z CNTRLR Promotion to SUC/SIS succeeded. -2024-09-06T11:06:14.342Z DRIVER all queues idle -2024-09-06T11:06:14.346Z CNTRLR [Node 001] [Manufacturer Specific] manufacturerId: metadata updated -2024-09-06T11:06:14.346Z CNTRLR [Node 001] [Manufacturer Specific] productType: metadata updated -2024-09-06T11:06:14.347Z CNTRLR [Node 001] [Manufacturer Specific] productId: metadata updated -2024-09-06T11:06:14.347Z CNTRLR [Node 001] [+] [Manufacturer Specific] manufacturerId: 0 -2024-09-06T11:06:14.347Z CNTRLR [Node 001] [+] [Manufacturer Specific] productType: 4 -2024-09-06T11:06:14.347Z CNTRLR [Node 001] [+] [Manufacturer Specific] productId: 4 -2024-09-06T11:06:14.347Z CNTRLR [Node 001] [Version] firmwareVersions: metadata updated -2024-09-06T11:06:14.347Z CNTRLR [Node 001] [+] [Version] firmwareVersions: 7.22 -2024-09-06T11:06:14.347Z CNTRLR [Node 001] [Version] zWaveProtocolVersion: metadata updated -2024-09-06T11:06:14.347Z CNTRLR [Node 001] [+] [Version] zWaveProtocolVersion: "7.22.1" -2024-09-06T11:06:14.347Z CNTRLR [Node 001] [Version] sdkVersion: metadata updated -2024-09-06T11:06:14.347Z CNTRLR [Node 001] [+] [Version] sdkVersion: "7.22.1" -2024-09-06T11:06:14.347Z CNTRLR Interview completed -2024-09-06T11:06:14.347Z DRIVER Network key for S0 configured, enabling S0 security manager... -2024-09-06T11:06:14.348Z DRIVER At least one network key for S2 configured, enabling S2 security manager... -2024-09-06T11:06:14.348Z DRIVER At least one network key for Z-Wave Long Range configured, enabling security m - anager... -2024-09-06T11:06:14.348Z DRIVER driver ready -2024-09-06T11:06:14.349Z CNTRLR [Node 001] Beginning interview - last completed stage: None -2024-09-06T11:06:14.349Z CNTRLR [Node 001] new node, doing a full interview... -2024-09-06T11:06:14.349Z CNTRLR » [Node 001] querying protocol info... -2024-09-06T11:06:14.349Z DRIVER all queues busy -2024-09-06T11:06:14.349Z SERIAL » 0x0104004101bb (6 bytes) -2024-09-06T11:06:14.350Z DRIVER » [REQ] [GetNodeProtocolInfo] - payload: 0x01 -2024-09-06T11:06:14.355Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:14.355Z SERIAL « 0x010a0141d3960102010000f2 (12 bytes) -2024-09-06T11:06:14.356Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:14.356Z DRIVER « [RES] [GetNodeProtocolInfo] - payload: 0xd3960102010000 -2024-09-06T11:06:14.357Z CNTRLR « [Node 001] received response for protocol info: - basic device class: Static Controller - generic device class: Remote Controller - specific device class: Unused - node type: Controller - is always listening: true - is frequent listening: false - can route messages: true - supports security: false - supports beaming: true - maximum data rate: 100000 kbps - protocol version: 3 -2024-09-06T11:06:14.357Z CNTRLR [Node 001] Interview stage completed: ProtocolInfo -2024-09-06T11:06:14.358Z DRIVER all queues idle -2024-09-06T11:06:14.359Z CNTRLR [Node 001] Embedded device config loaded -2024-09-06T11:06:14.359Z CNTRLR [Node 001] Interview stage completed: OverwriteConfig -2024-09-06T11:06:14.359Z CNTRLR [Node 001] Interview completed -2024-09-06T11:06:14.359Z CNTRLR [Node 001] The node is ready to be used -2024-09-06T11:06:14.360Z CNTRLR All nodes are ready to be used -2024-09-06T11:06:14.360Z CNTRLR [Node 001] The node is alive. -2024-09-06T11:06:19.052Z DRIVER all queues busy -2024-09-06T11:06:19.054Z SERIAL » 0x0105005081042f (7 bytes) -2024-09-06T11:06:19.055Z DRIVER » [REQ] [SetLearnMode] - callback id: 4 - intent: Inclusion -2024-09-06T11:06:19.060Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:19.061Z SERIAL « 0x0104015001ab (6 bytes) -2024-09-06T11:06:19.062Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:19.063Z DRIVER « [RES] [SetLearnMode] - success: true -2024-09-06T11:06:19.065Z DRIVER all queues idle -2024-09-06T11:06:19.232Z SERIAL « 0x0107005004010200af (9 bytes) -2024-09-06T11:06:19.233Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:19.234Z DRIVER « [REQ] [SetLearnMode] - callback id: 4 - status: Started - assigned node id: 2 -2024-09-06T11:06:19.234Z DRIVER handling request SetLearnMode (80) -2024-09-06T11:06:19.234Z DRIVER 1 handler registered! -2024-09-06T11:06:19.234Z DRIVER invoking handler #0 -2024-09-06T11:06:19.234Z DRIVER the message was handled -2024-09-06T11:06:19.358Z DRIVER all queues busy -2024-09-06T11:06:19.360Z SERIAL » 0x0103003bc7 (5 bytes) -2024-09-06T11:06:19.361Z DRIVER » [REQ] [GetBackgroundRSSI] -2024-09-06T11:06:19.366Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:19.367Z SERIAL « 0x0107013b8080807f3d (9 bytes) -2024-09-06T11:06:19.367Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:19.369Z DRIVER « [RES] [GetBackgroundRSSI] - channel 0: -128 dBm - channel 1: -128 dBm - channel 2: -128 dBm - channel 3: N/A -2024-09-06T11:06:19.370Z DRIVER all queues idle -2024-09-06T11:06:19.753Z SERIAL « 0x01060049100100a1 (8 bytes) -2024-09-06T11:06:19.754Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:19.754Z DRIVER « [REQ] [ApplicationUpdateRequest] - type: SUC_IdChanged - SUC node ID: 1 -2024-09-06T11:06:19.769Z SERIAL « 0x0107005004050200ab (9 bytes) -2024-09-06T11:06:19.770Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:19.770Z DRIVER « [REQ] [SetLearnMode] - callback id: 4 - status: ProtocolDone - assigned node id: 2 -2024-09-06T11:06:19.770Z DRIVER handling request SetLearnMode (80) -2024-09-06T11:06:19.771Z DRIVER 1 handler registered! -2024-09-06T11:06:19.771Z DRIVER invoking handler #0 -2024-09-06T11:06:19.771Z DRIVER the message was handled -2024-09-06T11:06:19.772Z DRIVER waiting for security bootstrapping... -2024-09-06T11:06:19.772Z CNTRLR querying controller IDs... -2024-09-06T11:06:19.773Z DRIVER all queues busy -2024-09-06T11:06:19.773Z SERIAL » 0x01030020dc (5 bytes) -2024-09-06T11:06:19.774Z DRIVER » [REQ] [GetControllerId] -2024-09-06T11:06:19.779Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:19.779Z SERIAL « 0x01080120e3701855020a (10 bytes) -2024-09-06T11:06:19.779Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:19.780Z DRIVER « [RES] [GetControllerId] - home ID: 0xe3701855 - own node ID: 2 -2024-09-06T11:06:19.780Z CNTRLR received controller IDs: - home ID: 0xe3701855 - own node ID: 2 -2024-09-06T11:06:19.780Z DRIVER Joined network with home ID 0xe3701855, switching to new network cache... -2024-09-06T11:06:19.781Z CNTRLR querying controller capabilities... -2024-09-06T11:06:19.781Z SERIAL » 0x01030005f9 (5 bytes) -2024-09-06T11:06:19.782Z DRIVER » [REQ] [GetControllerCapabilities] -2024-09-06T11:06:19.787Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:19.788Z SERIAL « 0x0104010506f9 (6 bytes) -2024-09-06T11:06:19.788Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:19.788Z DRIVER « [RES] [GetControllerCapabilities] - payload: 0x06 -2024-09-06T11:06:19.789Z CNTRLR received controller capabilities: - controller role: Inclusion - is the SUC: false - started this network: false - SIS is present: true - was real primary: false -2024-09-06T11:06:19.789Z CNTRLR querying additional controller information... -2024-09-06T11:06:19.790Z SERIAL » 0x01030002fe (5 bytes) -2024-09-06T11:06:19.790Z DRIVER » [REQ] [GetSerialApiInitData] -2024-09-06T11:06:19.798Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:19.799Z SERIAL « 0x012501020a001d030000000000000000000000000000000000000000000000000 (39 bytes) - 00000000800c5 -2024-09-06T11:06:19.799Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:19.799Z DRIVER « [RES] [GetSerialApiInitData] - payload: 0x0a001d03000000000000000000000000000000000000000000000000000000000 - 800 -2024-09-06T11:06:19.800Z CNTRLR received additional controller information: - Z-Wave API version: 1 (official) - Z-Wave chip type: EFR32ZG23 / ZGM230S - node type Controller - controller role: primary - controller is the SIS: false - controller supports timers: false - Z-Wave Classic nodes: 1, 2 -2024-09-06T11:06:19.801Z CNTRLR [Node 002] [Manufacturer Specific] manufacturerId: metadata updated -2024-09-06T11:06:19.801Z CNTRLR [Node 002] [Manufacturer Specific] productType: metadata updated -2024-09-06T11:06:19.801Z CNTRLR [Node 002] [Manufacturer Specific] productId: metadata updated -2024-09-06T11:06:19.801Z CNTRLR [Node 002] [+] [Manufacturer Specific] manufacturerId: 0 -2024-09-06T11:06:19.801Z CNTRLR [Node 002] [+] [Manufacturer Specific] productType: 4 -2024-09-06T11:06:19.801Z CNTRLR [Node 002] [+] [Manufacturer Specific] productId: 4 -2024-09-06T11:06:19.801Z CNTRLR [Node 002] [Version] firmwareVersions: metadata updated -2024-09-06T11:06:19.801Z CNTRLR [Node 002] [+] [Version] firmwareVersions: 7.22 -2024-09-06T11:06:19.801Z CNTRLR [Node 002] [Version] zWaveProtocolVersion: metadata updated -2024-09-06T11:06:19.802Z CNTRLR [Node 002] [+] [Version] zWaveProtocolVersion: "7.22.1" -2024-09-06T11:06:19.802Z CNTRLR [Node 002] [Version] sdkVersion: metadata updated -2024-09-06T11:06:19.802Z CNTRLR [Node 002] [+] [Version] sdkVersion: "7.22.1" -2024-09-06T11:06:19.802Z CNTRLR Interview completed -2024-09-06T11:06:19.802Z DRIVER all queues idle -2024-09-06T11:06:19.981Z SERIAL « 0x010b00a8000201029f0400d81e (13 bytes) -2024-09-06T11:06:19.982Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:19.983Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -40 dBm - └─[Security2CCKEXGet] -2024-09-06T11:06:19.983Z CNTRLR [Node 001] Received S2 bootstrap initiation, requesting keys: - · S2_AccessControl - · S2_Authenticated - · S2_Unauthenticated - · S0_Legacy - client-side auth: false -2024-09-06T11:06:19.985Z DRIVER all queues busy -2024-09-06T11:06:19.985Z SERIAL » 0x011200a90201069f05000201872500000000057f (20 bytes) -2024-09-06T11:06:19.986Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 5 - └─[Security2CCKEXReport] - echo: false - supported schemes: - · KEXScheme1 - supported ECDH profiles: - · Curve25519 - CSA requested: false - requested security classes: - · S2_AccessControl - · S2_Authenticated - · S2_Unauthenticated - · S0_Legacy -2024-09-06T11:06:19.991Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:19.994Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:19.994Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:19.995Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:20.011Z SERIAL « 0x011d00a90500000100d87f7f7f7f00000300000000030100007f7f7f7f7fe9 (31 bytes) -2024-09-06T11:06:20.012Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.012Z DRIVER « [REQ] [SendDataBridge] - callback id: 5 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -40 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:20.014Z DRIVER all queues idle -2024-09-06T11:06:20.029Z SERIAL « 0x010f00a8000201069f060002018700d898 (17 bytes) -2024-09-06T11:06:20.030Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.031Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -40 dBm - └─[Security2CCKEXSet] - echo: false - selected scheme: KEXScheme1 - selected ECDH profile: Curve25519 - CSA permitted: false - granted security classes: - · S2_Unauthenticated - · S2_Authenticated - · S2_AccessControl - · S0_Legacy -2024-09-06T11:06:20.034Z DRIVER all queues busy -2024-09-06T11:06:20.035Z SERIAL » 0x012f00a90201239f08000000bf5edfebd6784f403f15f121756d2df395bdbcf11 (49 bytes) - 1e387a444fb6afab70125000000000688 -2024-09-06T11:06:20.036Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 6 - └─[Security2CCPublicKeyReport] - is including node: false - public key: 0x0000bf5edfebd6784f403f15f121756d2df395bdbcf111e387a44 - 4fb6afab701 -2024-09-06T11:06:20.045Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:20.048Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:20.048Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.049Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:20.068Z SERIAL « 0x011d00a90600000100d87f7f7f7f00000300000000030100007f7f7f7f7fea (31 bytes) -2024-09-06T11:06:20.069Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.069Z DRIVER « [REQ] [SendDataBridge] - callback id: 6 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -40 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:20.070Z DRIVER all queues idle -2024-09-06T11:06:20.099Z SERIAL « 0x012c00a8000201239f0801de9b0ee1328c7c3b73cfdf9f874a4121e9c401af739 (46 bytes) - 08e305bb4031efbc3770500d871 -2024-09-06T11:06:20.100Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.100Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -40 dBm - └─[Security2CCPublicKeyReport] - is including node: true - public key: 0xde9b0ee1328c7c3b73cfdf9f874a4121e9c401af73908e305bb40 - 31efbc37705 -2024-09-06T11:06:20.102Z DRIVER all queues busy -2024-09-06T11:06:20.104Z SERIAL » 0x010f00a90201039f01f425000000000711 (17 bytes) -2024-09-06T11:06:20.104Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 7 - └─[Security2CCNonceGet] - sequence number: 244 -2024-09-06T11:06:20.109Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:20.112Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:20.112Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.112Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:20.130Z SERIAL « 0x011d00a90700000100d87f7f7f7f00000300000000030100007f7f7f7f7feb (31 bytes) -2024-09-06T11:06:20.130Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.131Z DRIVER « [REQ] [SendDataBridge] - callback id: 7 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -40 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:20.151Z SERIAL « 0x011d00a8000201149f02060148446689447e919ae8a61f0582c1056f00d8b0 (31 bytes) -2024-09-06T11:06:20.152Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.152Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -40 dBm - └─[Security2CCNonceReport] - sequence number: 6 - SOS: true - MOS: false - receiver entropy: 0x48446689447e919ae8a61f0582c1056f -2024-09-06T11:06:20.154Z SERIAL » 0x013000a90201249f03f501124172eef773dea56da96df42bc68018fa16dcf431b (50 bytes) - e55eb0bf37c2963cd052b250000000008c4 -2024-09-06T11:06:20.155Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 8 - └─[Security2CCMessageEncapsulation] - │ sequence number: 245 - │ extensions: - │ · type: SPAN - │ sender EI: 0x72eef773dea56da96df42bc68018fa16 - │ key: 0xb7b96a994522ea514b5221b875a186fe - │ IV: 0xa7995dee387747f2be0cfc52ec - │ ciphertext: 0xdcf431be55eb - │ auth data: 0x0201e37018550024f501124172eef773dea56da96df42bc68018fa1 - 6 - │ auth tag: 0x0bf37c2963cd052b - │ security class: Temporary - └─[Security2CCKEXSet] - echo: true - selected scheme: KEXScheme1 - selected ECDH profile: Curve25519 - CSA permitted: false - granted security classes: - · S2_Unauthenticated - · S2_Authenticated - · S2_AccessControl - · S0_Legacy -2024-09-06T11:06:20.164Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:20.167Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:20.167Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.168Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:20.189Z SERIAL « 0x011d00a90800000200d87f7f7f7f00000300000000030100007f7f7f7f7fe7 (31 bytes) -2024-09-06T11:06:20.189Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.190Z DRIVER « [REQ] [SendDataBridge] - callback id: 8 - transmit status: OK, took 20 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -40 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:20.213Z SERIAL « 0x011b00a8000201129f030700f4ef49df31c71e5925aa2202363700d88c (29 bytes) -2024-09-06T11:06:20.214Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.214Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -40 dBm - └─[Security2CCMessageEncapsulation] - │ sequence number: 7 - │ key: 0xb7b96a994522ea514b5221b875a186fe - │ IV: 0xae5b349b0cde71dc89318305ad - │ plaintext: 0x9f0501020187 - │ auth tag: 0x1e5925aa22023637 - │ security class: Temporary - └─[Security2CCKEXReport] - echo: true - supported schemes: - · KEXScheme1 - supported ECDH profiles: - · Curve25519 - CSA requested: false - requested security classes: - · S2_Unauthenticated - · S2_Authenticated - · S2_AccessControl - · S0_Legacy -2024-09-06T11:06:20.216Z SERIAL » 0x011b00a902010f9f03f600269cfeee210e1a7a38912825000000000963 (29 bytes) -2024-09-06T11:06:20.216Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 9 - └─[Security2CCMessageEncapsulation] - │ sequence number: 246 - │ key: 0xb7b96a994522ea514b5221b875a186fe - │ IV: 0x16a1f588a794e7367490cc15a2 - │ ciphertext: 0x269cfe - │ auth data: 0x0201e3701855000ff600 - │ auth tag: 0xee210e1a7a389128 - │ security class: Temporary - └─[Security2CCNetworkKeyGet] - security class: S2_Unauthenticated -2024-09-06T11:06:20.223Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:20.226Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:20.226Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.227Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:20.243Z SERIAL « 0x011d00a90900000100d87f7f7f7f00000300000000030100007f7f7f7f7fe5 (31 bytes) -2024-09-06T11:06:20.244Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.244Z DRIVER « [REQ] [SendDataBridge] - callback id: 9 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -40 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:20.245Z DRIVER all queues idle -2024-09-06T11:06:20.268Z SERIAL « 0x012800a80002011f9f0308001c35db416f1f673ca2e464a9deccad4f8d478400d (42 bytes) - 06f3aa79d6b3a00d86c -2024-09-06T11:06:20.269Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.270Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -40 dBm - └─[Security2CCMessageEncapsulation] - │ sequence number: 8 - │ key: 0xb7b96a994522ea514b5221b875a186fe - │ IV: 0x5db4d179cdff1ceef4f70e6aa7 - │ plaintext: 0x9f0a015369389efa18ee2a4894c7fb48347fea - │ auth tag: 0x00d06f3aa79d6b3a - │ security class: Temporary - └─[Security2CCNetworkKeyReport] - security class: S2_Unauthenticated -2024-09-06T11:06:20.271Z DRIVER all queues busy -2024-09-06T11:06:20.271Z SERIAL » 0x010f00a90201039f01f725000000000a1f (17 bytes) -2024-09-06T11:06:20.272Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 10 - └─[Security2CCNonceGet] - sequence number: 247 -2024-09-06T11:06:20.277Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:20.280Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:20.280Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.281Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:20.296Z SERIAL « 0x011d00a90a00000100d87f7f7f7f00000300000000030100007f7f7f7f7fe6 (31 bytes) -2024-09-06T11:06:20.297Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.297Z DRIVER « [REQ] [SendDataBridge] - callback id: 10 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -40 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:20.316Z SERIAL « 0x011d00a8000201149f020901c8a30dd009a4738f8d73cf7a3e190c9d00d80a (31 bytes) -2024-09-06T11:06:20.316Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.317Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -40 dBm - └─[Security2CCNonceReport] - sequence number: 9 - SOS: true - MOS: false - receiver entropy: 0xc8a30dd009a4738f8d73cf7a3e190c9d -2024-09-06T11:06:20.318Z SERIAL » 0x012c00a90201209f03f80112412d01da296b5222be69d215bc1ab47785c5f8f96 (46 bytes) - 285809240f1c725000000000b32 -2024-09-06T11:06:20.318Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 11 - └─[Security2CCMessageEncapsulation] - │ sequence number: 248 - │ extensions: - │ · type: SPAN - │ sender EI: 0x2d01da296b5222be69d215bc1ab47785 - │ key: 0x44b45806725f2a6ebc3e2641f36f6caa - │ IV: 0x87b535c2bd6fd1e06a0043af14 - │ ciphertext: 0xc5f8 - │ auth data: 0x0201e37018550020f80112412d01da296b5222be69d215bc1ab4778 - 5 - │ auth tag: 0xf96285809240f1c7 - │ security class: S2_Unauthenticated - └─[Security2CCNetworkKeyVerify] -2024-09-06T11:06:20.331Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:20.332Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:20.332Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.336Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:20.380Z SERIAL « 0x011d00a90b00000100d87f7f7f7f00000300000000030100007f7f7f7f7fe7 (31 bytes) -2024-09-06T11:06:20.381Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.388Z DRIVER « [REQ] [SendDataBridge] - callback id: 11 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -40 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:20.390Z DRIVER all queues idle -2024-09-06T11:06:20.393Z SERIAL « 0x010c00a8000201039f010a00d817 (14 bytes) -2024-09-06T11:06:20.394Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.395Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -40 dBm - └─[Security2CCNonceGet] - sequence number: 10 -2024-09-06T11:06:20.396Z DRIVER all queues busy -2024-09-06T11:06:20.397Z SERIAL » 0x012000a90201149f02f901aa3b193ccb0ca89d166ec6f38574b04805000000000 (34 bytes) - c0f -2024-09-06T11:06:20.398Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x05 - │ callback id: 12 - └─[Security2CCNonceReport] - sequence number: 249 - SOS: true - MOS: false - receiver entropy: 0xaa3b193ccb0ca89d166ec6f38574b048 -2024-09-06T11:06:20.422Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:20.423Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:20.423Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.425Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:20.432Z SERIAL « 0x011d00a90c00000100d87f7f7f7f00000300000000030100007f7f7f7f7fe0 (31 bytes) -2024-09-06T11:06:20.433Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.434Z DRIVER « [REQ] [SendDataBridge] - callback id: 12 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -40 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:20.435Z DRIVER all queues idle -2024-09-06T11:06:20.458Z SERIAL « 0x012a00a8000201219f030b011241225e11dd3aed1a52dbd71535ed73d8c21cda4 (44 bytes) - a71a99d9c3a395f9b00d857 -2024-09-06T11:06:20.460Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.464Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -40 dBm - └─[Security2CCMessageEncapsulation] - │ sequence number: 11 - │ extensions: - │ · type: SPAN - │ sender EI: 0x225e11dd3aed1a52dbd71535ed73d8c2 - │ key: 0xb7b96a994522ea514b5221b875a186fe - │ IV: 0xa39fcca46e8b106c62ebae3681 - │ plaintext: 0x9f0c02 - │ auth tag: 0x71a99d9c3a395f9b - │ security class: Temporary - └─[Security2CCTransferEnd] - key verified: true - request complete: false -2024-09-06T11:06:20.466Z DRIVER all queues busy -2024-09-06T11:06:20.467Z SERIAL » 0x011b00a902010f9f03fa00cf52afa2509d6c2ea7994925000000000d67 (29 bytes) -2024-09-06T11:06:20.468Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 13 - └─[Security2CCMessageEncapsulation] - │ sequence number: 250 - │ key: 0xb7b96a994522ea514b5221b875a186fe - │ IV: 0xe156e343223bf29819bbb2d422 - │ ciphertext: 0xcf52af - │ auth data: 0x0201e3701855000ffa00 - │ auth tag: 0xa2509d6c2ea79949 - │ security class: Temporary - └─[Security2CCNetworkKeyGet] - security class: S2_Authenticated -2024-09-06T11:06:20.475Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:20.477Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:20.478Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.478Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:20.495Z SERIAL « 0x011d00a90d00000100d87f7f7f7f00000300000000030100007f7f7f7f7fe1 (31 bytes) -2024-09-06T11:06:20.495Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.495Z DRIVER « [REQ] [SendDataBridge] - callback id: 13 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -40 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:20.496Z DRIVER all queues idle -2024-09-06T11:06:20.520Z SERIAL « 0x012800a80002011f9f030c009c7e53ff58733226cf3cd584d3413893a4bdc6c75 (42 bytes) - e6f6ff8de26e200d865 -2024-09-06T11:06:20.521Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.521Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -40 dBm - └─[Security2CCMessageEncapsulation] - │ sequence number: 12 - │ key: 0xb7b96a994522ea514b5221b875a186fe - │ IV: 0x37d690bb6872a4ce0b2dd0ce90 - │ plaintext: 0x9f0a02656ef5c0f020f3c14238c04a1748b7e1 - │ auth tag: 0xc75e6f6ff8de26e2 - │ security class: Temporary - └─[Security2CCNetworkKeyReport] - security class: S2_Authenticated -2024-09-06T11:06:20.522Z DRIVER all queues busy -2024-09-06T11:06:20.522Z SERIAL » 0x010f00a90201039f01fb25000000000e17 (17 bytes) -2024-09-06T11:06:20.523Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 14 - └─[Security2CCNonceGet] - sequence number: 251 -2024-09-06T11:06:20.528Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:20.530Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:20.531Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.531Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:20.547Z SERIAL « 0x011d00a90e00000100d87f7f7f7f00000300000000030100007f7f7f7f7fe2 (31 bytes) -2024-09-06T11:06:20.547Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.548Z DRIVER « [REQ] [SendDataBridge] - callback id: 14 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -40 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:20.568Z SERIAL « 0x011d00a8000201149f020d0157511bf33a3480769c3e7d9afe122f3a00d8be (31 bytes) -2024-09-06T11:06:20.569Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.570Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -40 dBm - └─[Security2CCNonceReport] - sequence number: 13 - SOS: true - MOS: false - receiver entropy: 0x57511bf33a3480769c3e7d9afe122f3a -2024-09-06T11:06:20.571Z SERIAL » 0x012c00a90201209f03fc0112418506fbb6b7acaa5d2cab7bb2e3b27383bac8505 (46 bytes) - dce3f14b5bcf625000000000fe9 -2024-09-06T11:06:20.572Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 15 - └─[Security2CCMessageEncapsulation] - │ sequence number: 252 - │ extensions: - │ · type: SPAN - │ sender EI: 0x8506fbb6b7acaa5d2cab7bb2e3b27383 - │ key: 0xdda415256006027530b2d9548c898f93 - │ IV: 0x8aee8f37a57f2cc07fc0165301 - │ ciphertext: 0xbac8 - │ auth data: 0x0201e37018550020fc0112418506fbb6b7acaa5d2cab7bb2e3b2738 - 3 - │ auth tag: 0x505dce3f14b5bcf6 - │ security class: S2_Authenticated - └─[Security2CCNetworkKeyVerify] -2024-09-06T11:06:20.581Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:20.584Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:20.584Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.584Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:20.603Z SERIAL « 0x011d00a90f00000100d87f7f7f7f00000300000000030100007f7f7f7f7fe3 (31 bytes) -2024-09-06T11:06:20.604Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.604Z DRIVER « [REQ] [SendDataBridge] - callback id: 15 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -40 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:20.605Z DRIVER all queues idle -2024-09-06T11:06:20.621Z SERIAL « 0x010c00a8000201039f010e00d813 (14 bytes) -2024-09-06T11:06:20.622Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.623Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -40 dBm - └─[Security2CCNonceGet] - sequence number: 14 -2024-09-06T11:06:20.623Z DRIVER all queues busy -2024-09-06T11:06:20.624Z SERIAL » 0x012000a90201149f02fd01ad34627ca5036d711ed9bda0f974a0a805000000001 (34 bytes) - 077 -2024-09-06T11:06:20.624Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x05 - │ callback id: 16 - └─[Security2CCNonceReport] - sequence number: 253 - SOS: true - MOS: false - receiver entropy: 0xad34627ca5036d711ed9bda0f974a0a8 -2024-09-06T11:06:20.632Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:20.634Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:20.635Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.635Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:20.652Z SERIAL « 0x011d00a91000000100d87f7f7f7f00000300000000030100007f7f7f7f7ffc (31 bytes) -2024-09-06T11:06:20.653Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.653Z DRIVER « [REQ] [SendDataBridge] - callback id: 16 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -40 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:20.654Z DRIVER all queues idle -2024-09-06T11:06:20.678Z SERIAL « 0x012a00a8000201219f030f0112415d61103d55ec8c59e4596409a49b356aeffb8 (44 bytes) - 8cefa034d69ed486800d8c9 -2024-09-06T11:06:20.679Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.680Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -40 dBm - └─[Security2CCMessageEncapsulation] - │ sequence number: 15 - │ extensions: - │ · type: SPAN - │ sender EI: 0x5d61103d55ec8c59e4596409a49b356a - │ key: 0xb7b96a994522ea514b5221b875a186fe - │ IV: 0xd22b7682253ba15c3758dbafba - │ plaintext: 0x9f0c02 - │ auth tag: 0xcefa034d69ed4868 - │ security class: Temporary - └─[Security2CCTransferEnd] - key verified: true - request complete: false -2024-09-06T11:06:20.680Z DRIVER all queues busy -2024-09-06T11:06:20.681Z SERIAL » 0x011b00a902010f9f03fe00dc94a1dd4047c4bdd5636325000000001188 (29 bytes) -2024-09-06T11:06:20.681Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 17 - └─[Security2CCMessageEncapsulation] - │ sequence number: 254 - │ key: 0xb7b96a994522ea514b5221b875a186fe - │ IV: 0x450ef19eac1f4fcc3cd60e4a22 - │ ciphertext: 0xdc94a1 - │ auth data: 0x0201e3701855000ffe00 - │ auth tag: 0xdd4047c4bdd56363 - │ security class: Temporary - └─[Security2CCNetworkKeyGet] - security class: S2_AccessControl -2024-09-06T11:06:20.688Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:20.691Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:20.691Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.692Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:20.710Z SERIAL « 0x011d00a91100000100d87f7f7f7f00000300000000030100007f7f7f7f7ffd (31 bytes) -2024-09-06T11:06:20.711Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.711Z DRIVER « [REQ] [SendDataBridge] - callback id: 17 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -40 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:20.712Z DRIVER all queues idle -2024-09-06T11:06:20.736Z SERIAL « 0x012800a80002011f9f0310007b887158e82fd8f28813ca7ad7252bbc57be23329 (42 bytes) - addab8955f59400d8e7 -2024-09-06T11:06:20.737Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.737Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -40 dBm - └─[Security2CCMessageEncapsulation] - │ sequence number: 16 - │ key: 0xb7b96a994522ea514b5221b875a186fe - │ IV: 0x24bf53df1009ed271dc0c70083 - │ plaintext: 0x9f0a0431132050077310b6f7032f91c79c2eb8 - │ auth tag: 0x329addab8955f594 - │ security class: Temporary - └─[Security2CCNetworkKeyReport] - security class: S2_AccessControl -2024-09-06T11:06:20.738Z DRIVER all queues busy -2024-09-06T11:06:20.739Z SERIAL » 0x010f00a90201039f01ff2500000000120f (17 bytes) -2024-09-06T11:06:20.739Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 18 - └─[Security2CCNonceGet] - sequence number: 255 -2024-09-06T11:06:20.744Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:20.747Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:20.747Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.747Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:20.765Z SERIAL « 0x011d00a91200000100d87f7f7f7f00000300000000030100007f7f7f7f7ffe (31 bytes) -2024-09-06T11:06:20.766Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.767Z DRIVER « [REQ] [SendDataBridge] - callback id: 18 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -40 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:20.787Z SERIAL « 0x011d00a8000201149f0211017043a279fa75f948f7efb04f19ba2b6400d8d5 (31 bytes) -2024-09-06T11:06:20.788Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.788Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -40 dBm - └─[Security2CCNonceReport] - sequence number: 17 - SOS: true - MOS: false - receiver entropy: 0x7043a279fa75f948f7efb04f19ba2b64 -2024-09-06T11:06:20.789Z SERIAL » 0x012c00a90201209f0300011241c37f885fc30fb241169d5a07cf20e49c30358d9 (46 bytes) - f187271abe729250000000013dd -2024-09-06T11:06:20.790Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 19 - └─[Security2CCMessageEncapsulation] - │ sequence number: 0 - │ extensions: - │ · type: SPAN - │ sender EI: 0xc37f885fc30fb241169d5a07cf20e49c - │ key: 0xfca06923982033f3af9dfc7c1e4ad45a - │ IV: 0x9d5c9f2165fee2958c4706dcb2 - │ ciphertext: 0x3035 - │ auth data: 0x0201e3701855002000011241c37f885fc30fb241169d5a07cf20e49 - c - │ auth tag: 0x8d9f187271abe729 - │ security class: S2_AccessControl - └─[Security2CCNetworkKeyVerify] -2024-09-06T11:06:20.799Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:20.802Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:20.802Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.802Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:20.822Z SERIAL « 0x011d00a91300000100d87f7f7f7f00000300000000030100007f7f7f7f7fff (31 bytes) -2024-09-06T11:06:20.822Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.823Z DRIVER « [REQ] [SendDataBridge] - callback id: 19 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -40 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:20.823Z DRIVER all queues idle -2024-09-06T11:06:20.840Z SERIAL « 0x010c00a8000201039f011200d80f (14 bytes) -2024-09-06T11:06:20.840Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.841Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -40 dBm - └─[Security2CCNonceGet] - sequence number: 18 -2024-09-06T11:06:20.842Z DRIVER all queues busy -2024-09-06T11:06:20.842Z SERIAL » 0x012000a90201149f02010107cacc9410ba384e1bc41726646a0f4305000000001 (34 bytes) - 408 -2024-09-06T11:06:20.842Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x05 - │ callback id: 20 - └─[Security2CCNonceReport] - sequence number: 1 - SOS: true - MOS: false - receiver entropy: 0x07cacc9410ba384e1bc41726646a0f43 -2024-09-06T11:06:20.850Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:20.852Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:20.853Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.853Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:20.870Z SERIAL « 0x011d00a91400000100d87f7f7f7f00000300000000030100007f7f7f7f7ff8 (31 bytes) -2024-09-06T11:06:20.870Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.871Z DRIVER « [REQ] [SendDataBridge] - callback id: 20 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -40 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:20.872Z DRIVER all queues idle -2024-09-06T11:06:20.893Z SERIAL « 0x012a00a8000201219f03130112417fe84947259b5e2e8928b9403ba31f76e8ee7 (44 bytes) - eacf461255bd62b7300d815 -2024-09-06T11:06:20.895Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.895Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -40 dBm - └─[Security2CCMessageEncapsulation] - │ sequence number: 19 - │ extensions: - │ · type: SPAN - │ sender EI: 0x7fe84947259b5e2e8928b9403ba31f76 - │ key: 0xb7b96a994522ea514b5221b875a186fe - │ IV: 0xad7af31c44e01f9e33c9a7618d - │ plaintext: 0x9f0c02 - │ auth tag: 0xacf461255bd62b73 - │ security class: Temporary - └─[Security2CCTransferEnd] - key verified: true - request complete: false -2024-09-06T11:06:20.896Z DRIVER all queues busy -2024-09-06T11:06:20.897Z SERIAL » 0x011b00a902010f9f0302007ba09d1d3df417a05bc5c125000000001595 (29 bytes) -2024-09-06T11:06:20.897Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 21 - └─[Security2CCMessageEncapsulation] - │ sequence number: 2 - │ key: 0xb7b96a994522ea514b5221b875a186fe - │ IV: 0xafeda3f17e2a549bcf64140ddf - │ ciphertext: 0x7ba09d - │ auth data: 0x0201e3701855000f0200 - │ auth tag: 0x1d3df417a05bc5c1 - │ security class: Temporary - └─[Security2CCNetworkKeyGet] - security class: S0_Legacy -2024-09-06T11:06:20.904Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:20.906Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:20.907Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.907Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:20.925Z SERIAL « 0x011d00a91500000100d87f7f7f7f00000300000000030100007f7f7f7f7ff9 (31 bytes) -2024-09-06T11:06:20.925Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.925Z DRIVER « [REQ] [SendDataBridge] - callback id: 21 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -40 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:20.926Z DRIVER all queues idle -2024-09-06T11:06:20.949Z SERIAL « 0x012800a80002011f9f031400416f80eb7bb315bd0231aa5f1607dfbff3f62ea9d (42 bytes) - 4bf77d292be2600d8e7 -2024-09-06T11:06:20.950Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.950Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -40 dBm - └─[Security2CCMessageEncapsulation] - │ sequence number: 20 - │ key: 0xb7b96a994522ea514b5221b875a186fe - │ IV: 0x0135b5b4649df09d0248f90521 - │ plaintext: 0x9f0a800102030405060708090a0b0c0d0e0f10 - │ auth tag: 0xa9d4bf77d292be26 - │ security class: Temporary - └─[Security2CCNetworkKeyReport] - security class: S0_Legacy -2024-09-06T11:06:20.951Z DRIVER all queues busy -2024-09-06T11:06:20.952Z SERIAL » 0x010f00a90201039f0103250000000016f7 (17 bytes) -2024-09-06T11:06:20.952Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 22 - └─[Security2CCNonceGet] - sequence number: 3 -2024-09-06T11:06:20.957Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:20.960Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:20.960Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.961Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:20.977Z SERIAL « 0x011d00a91600000100d87f7f7f7f00000300000000030100007f7f7f7f7ffa (31 bytes) -2024-09-06T11:06:20.977Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:20.978Z DRIVER « [REQ] [SendDataBridge] - callback id: 22 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -40 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:20.999Z SERIAL « 0x011d00a8000201149f021501091c800986edf36a0ce9bf0661115d0200d811 (31 bytes) -2024-09-06T11:06:20.999Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:21.000Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -40 dBm - └─[Security2CCNonceReport] - sequence number: 21 - SOS: true - MOS: false - receiver entropy: 0x091c800986edf36a0ce9bf0661115d02 -2024-09-06T11:06:21.001Z SERIAL » 0x012c00a90201209f03040112416290fb8a42a89951ce81afe6cdd48ca4a917e61 (46 bytes) - 456b1fa93b4c325000000001782 -2024-09-06T11:06:21.001Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 23 - └─[Security2CCMessageEncapsulation] - │ sequence number: 4 - │ extensions: - │ · type: SPAN - │ sender EI: 0x6290fb8a42a89951ce81afe6cdd48ca4 - │ key: 0xece479ca82cc867c1db471e86eab2248 - │ IV: 0x1e8989f03565943a6ea872458f - │ ciphertext: 0xa917 - │ auth data: 0x0201e37018550020040112416290fb8a42a89951ce81afe6cdd48ca - 4 - │ auth tag: 0xe61456b1fa93b4c3 - │ security class: S0_Legacy - └─[Security2CCNetworkKeyVerify] -2024-09-06T11:06:21.010Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:21.013Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:21.014Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:21.014Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:21.034Z SERIAL « 0x011d00a91700000100d87f7f7f7f00000300000000030100007f7f7f7f7ffb (31 bytes) -2024-09-06T11:06:21.034Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:21.035Z DRIVER « [REQ] [SendDataBridge] - callback id: 23 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -40 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:21.036Z DRIVER all queues idle -2024-09-06T11:06:21.053Z SERIAL « 0x010c00a8000201039f011600d80b (14 bytes) -2024-09-06T11:06:21.054Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:21.054Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -40 dBm - └─[Security2CCNonceGet] - sequence number: 22 -2024-09-06T11:06:21.055Z DRIVER all queues busy -2024-09-06T11:06:21.055Z SERIAL » 0x012000a90201149f020501571ca2fca15ce3f4bcaf85fba9bb5baf05000000001 (34 bytes) - 891 -2024-09-06T11:06:21.056Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x05 - │ callback id: 24 - └─[Security2CCNonceReport] - sequence number: 5 - SOS: true - MOS: false - receiver entropy: 0x571ca2fca15ce3f4bcaf85fba9bb5baf -2024-09-06T11:06:21.063Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:21.066Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:21.066Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:21.067Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:21.086Z SERIAL « 0x011d00a91800000100d87f7f7f7f00000300000000030100007f7f7f7f7ff4 (31 bytes) -2024-09-06T11:06:21.087Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:21.087Z DRIVER « [REQ] [SendDataBridge] - callback id: 24 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -40 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:21.088Z DRIVER all queues idle -2024-09-06T11:06:21.112Z SERIAL « 0x012a00a8000201219f03170112412df2186d0c12da2220d6068b9e71eaf22ac48 (44 bytes) - d268675166ac0ffca00d8a1 -2024-09-06T11:06:21.113Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:21.114Z DRIVER « [Node 001] [REQ] [BridgeApplicationCommand] - │ RSSI: -40 dBm - └─[Security2CCMessageEncapsulation] - │ sequence number: 23 - │ extensions: - │ · type: SPAN - │ sender EI: 0x2df2186d0c12da2220d6068b9e71eaf2 - │ key: 0xb7b96a994522ea514b5221b875a186fe - │ IV: 0xae171ae0b28a0017cb37cd11ac - │ plaintext: 0x9f0c02 - │ auth tag: 0x268675166ac0ffca - │ security class: Temporary - └─[Security2CCTransferEnd] - key verified: true - request complete: false -2024-09-06T11:06:21.114Z DRIVER all queues busy -2024-09-06T11:06:21.115Z SERIAL » 0x011b00a902010f9f03060091f4995c5a4d73611d4bf8250000000019ec (29 bytes) -2024-09-06T11:06:21.115Z DRIVER » [Node 001] [REQ] [SendDataBridge] - │ source node id: 2 - │ transmit options: 0x25 - │ callback id: 25 - └─[Security2CCMessageEncapsulation] - │ sequence number: 6 - │ key: 0xb7b96a994522ea514b5221b875a186fe - │ IV: 0xe799eb8dcddb0a4233c9cf3a80 - │ ciphertext: 0x91f499 - │ auth data: 0x0201e3701855000f0600 - │ auth tag: 0x5c5a4d73611d4bf8 - │ security class: Temporary - └─[Security2CCTransferEnd] - key verified: false - request complete: true -2024-09-06T11:06:21.122Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:21.125Z SERIAL « 0x010401a90152 (6 bytes) -2024-09-06T11:06:21.125Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:21.125Z DRIVER « [RES] [SendDataBridge] - was sent: true -2024-09-06T11:06:21.143Z SERIAL « 0x011d00a91900000100d87f7f7f7f00000300000000030100007f7f7f7f7ff5 (31 bytes) -2024-09-06T11:06:21.144Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:21.144Z DRIVER « [REQ] [SendDataBridge] - callback id: 25 - transmit status: OK, took 10 ms - routing attempts: 1 - protocol & route speed: Z-Wave, 100 kbit/s - routing scheme: LWR - ACK RSSI: -40 dBm - ACK channel no.: 0 - TX channel no.: 0 -2024-09-06T11:06:21.145Z DRIVER Security S2 bootstrapping successful with these security classes: - · S2_AccessControl - · S2_Authenticated - · S2_Unauthenticated - · S0_Legacy -2024-09-06T11:06:21.145Z CNTRLR » [Node 001] querying protocol info... -2024-09-06T11:06:21.146Z SERIAL » 0x0104004101bb (6 bytes) -2024-09-06T11:06:21.146Z DRIVER » [REQ] [GetNodeProtocolInfo] - payload: 0x01 -2024-09-06T11:06:21.152Z SERIAL « [ACK] (0x06) -2024-09-06T11:06:21.152Z SERIAL « 0x010a0141d3960102010000f2 (12 bytes) -2024-09-06T11:06:21.152Z SERIAL » [ACK] (0x06) -2024-09-06T11:06:21.153Z DRIVER « [RES] [GetNodeProtocolInfo] - payload: 0xd3960102010000 -2024-09-06T11:06:21.154Z CNTRLR « [Node 001] received response for protocol info: - basic device class: Static Controller - generic device class: Remote Controller - specific device class: Unused - node type: Controller - is always listening: true - is frequent listening: false - can route messages: true - supports security: false - supports beaming: true - maximum data rate: 100000 kbps - protocol version: 3 -2024-09-06T11:06:21.154Z CNTRLR [Node 001] Interview stage completed: ProtocolInfo -2024-09-06T11:06:21.154Z DRIVER Finished joining network -2024-09-06T11:06:21.154Z DRIVER all queues idle diff --git a/test/secondary_current.log b/test/secondary_current.log deleted file mode 120000 index 152667c81684..000000000000 --- a/test/secondary_current.log +++ /dev/null @@ -1 +0,0 @@ -secondary_2024-09-06.log \ No newline at end of file From ada70558d8e40e32cf009d6b4ce7121b30ea83f6 Mon Sep 17 00:00:00 2001 From: AlCalzone Date: Fri, 20 Sep 2024 13:28:44 +0200 Subject: [PATCH 03/10] feat: log debugging information for S0 encryption in dev mode (#7181) --- packages/cc/src/cc/SecurityCC.ts | 37 ++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/packages/cc/src/cc/SecurityCC.ts b/packages/cc/src/cc/SecurityCC.ts index 75bbe5c173d6..c3757a36b13a 100644 --- a/packages/cc/src/cc/SecurityCC.ts +++ b/packages/cc/src/cc/SecurityCC.ts @@ -656,6 +656,11 @@ export class SecurityCCCommandEncapsulation extends SecurityCC { this.secondFrame = !!(frameControl & 0b10_0000); this.decryptedCCBytes = frameControlAndDecryptedCC.subarray(1); + + // Remember for debugging purposes + this.authData = authData; + this.authCode = authCode; + this.iv = iv; } else { this.encapsulated = options.encapsulated; options.encapsulated.encapsulatingCC = this as any; @@ -687,6 +692,12 @@ export class SecurityCCCommandEncapsulation extends SecurityCC { } public nonce: Buffer | undefined; + // Only used testing/for debugging purposes + private iv?: Buffer; + private authData?: Buffer; + private authCode?: Buffer; + private ciphertext?: Buffer; + public getPartialCCSessionId(): Record | undefined { if (this.sequenced) { return { @@ -750,6 +761,12 @@ export class SecurityCCCommandEncapsulation extends SecurityCC { ); const authCode = computeMAC(authData, this.authKey); + // Remember for debugging purposes + this.iv = iv; + this.authData = authData; + this.authCode = authCode; + this.ciphertext = ciphertext; + this.payload = Buffer.concat([ senderNonce, ciphertext, @@ -780,6 +797,26 @@ export class SecurityCCCommandEncapsulation extends SecurityCC { } } } + // Log the plaintext in integration tests and development mode + if ( + process.env.NODE_ENV === "test" + || process.env.NODE_ENV === "development" + ) { + if (this.iv) { + message.IV = buffer2hex(this.iv); + } + if (this.ciphertext) { + message.ciphertext = buffer2hex(this.ciphertext); + } else if (this.decryptedCCBytes) { + message.plaintext = buffer2hex(this.decryptedCCBytes); + } + if (this.authData) { + message["auth data"] = buffer2hex(this.authData); + } + if (this.authCode) { + message["auth code"] = buffer2hex(this.authCode); + } + } return { ...super.toLogEntry(host), message, From 900e9dd7968d764319ee896f60ca72ff12f9368e Mon Sep 17 00:00:00 2001 From: AlCalzone Date: Mon, 23 Sep 2024 10:04:52 +0200 Subject: [PATCH 04/10] chore: ask about Z-Wave controller and firmware in support requests (#7185) --- .../request-support-investigate-issue.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/DISCUSSION_TEMPLATE/request-support-investigate-issue.yml b/.github/DISCUSSION_TEMPLATE/request-support-investigate-issue.yml index 469c0c76e329..3ceca1788307 100644 --- a/.github/DISCUSSION_TEMPLATE/request-support-investigate-issue.yml +++ b/.github/DISCUSSION_TEMPLATE/request-support-investigate-issue.yml @@ -76,6 +76,19 @@ body: If you are using something non-standard, tell us here: ... + - type: textarea + id: controller + attributes: + label: Z-Wave Controller (Stick/Dongle/...) + description: | + Some issues are known to be caused by the Z-Wave controller. + Please let us know which controller and firmware you are using: + + value: | + Manufacturer: ... + Model name: ... + Firmware version: ... + - type: textarea id: devices attributes: From 067b22a200edbdc194af5138518904afb8c1a0d1 Mon Sep 17 00:00:00 2001 From: AlCalzone Date: Tue, 24 Sep 2024 12:06:45 +0200 Subject: [PATCH 05/10] fix(config): update Zooz devices (#7186) --- .../config/config/devices/0x027a/zen14.json | 3 ++- .../config/config/devices/0x027a/zen30.json | 12 +++--------- .../config/config/devices/0x027a/zen32.json | 8 +------- .../config/config/devices/0x027a/zen34.json | 3 ++- .../config/config/devices/0x027a/zen51.json | 12 +++--------- .../config/config/devices/0x027a/zen52.json | 12 +++--------- .../config/config/devices/0x027a/zen71.json | 10 ++-------- .../config/config/devices/0x027a/zen72.json | 10 ++-------- .../config/config/devices/0x027a/zen73.json | 3 ++- .../config/config/devices/0x027a/zen74.json | 3 ++- .../config/config/devices/0x027a/zen76.json | 10 ++-------- .../config/config/devices/0x027a/zen77.json | 10 ++-------- .../config/config/devices/0x027a/zse11.json | 19 ++++++++++++------- .../config/config/devices/0x027a/zse18.json | 3 ++- 14 files changed, 40 insertions(+), 78 deletions(-) diff --git a/packages/config/config/devices/0x027a/zen14.json b/packages/config/config/devices/0x027a/zen14.json index 8a7f5314affb..4ed70ca087d2 100644 --- a/packages/config/config/devices/0x027a/zen14.json +++ b/packages/config/config/devices/0x027a/zen14.json @@ -1,8 +1,9 @@ +// 800 series (LR) starting with firmware 2.0 { "manufacturer": "Zooz", "manufacturerId": "0x027a", "label": "ZEN14", - "description": "700 Series Outdoor Double Plug", + "description": "Outdoor Double Plug", "devices": [ { "productType": "0x7000", diff --git a/packages/config/config/devices/0x027a/zen30.json b/packages/config/config/devices/0x027a/zen30.json index 543abcfa507a..ea3d0795362c 100644 --- a/packages/config/config/devices/0x027a/zen30.json +++ b/packages/config/config/devices/0x027a/zen30.json @@ -14,14 +14,8 @@ { "manufacturer": "Zooz", "manufacturerId": "0x027a", - "label": [ - { - "$if": "firmwareVersion >= 4.10", - "value": "ZEN30 800LR" - }, - "ZEN30" - ], - "description": "Dimmer & Dry Contact Relay", + "label": "ZEN30", + "description": "Double Switch", "devices": [ { "productType": "0xa000", @@ -316,7 +310,7 @@ { // This device exposes a Multilevel Switch (Dimmer) on endpoint 0, and a Binary Switch (Relay) on endpoint 1 // Our heuristic currently detects endpoint 1 as unnecessary and hides it from the user. - // This problem is fixed in firmare 3.20 and higher + // This problem is fixed in firmware 3.20 and higher "$if": "firmwareVersion < 3.20", "preserveEndpoints": "*", "preserveRootApplicationCCValueIDs": true diff --git a/packages/config/config/devices/0x027a/zen32.json b/packages/config/config/devices/0x027a/zen32.json index 5c434aeedc5e..ea07a5e56108 100644 --- a/packages/config/config/devices/0x027a/zen32.json +++ b/packages/config/config/devices/0x027a/zen32.json @@ -12,13 +12,7 @@ { "manufacturer": "Zooz", "manufacturerId": "0x027a", - "label": [ - { - "$if": "firmwareVersion >= 2.10 && firmwareVersion < 10.0", - "value": "ZEN32 800LR" - }, - "ZEN32" - ], + "label": "ZEN32", "description": "Scene Controller", "devices": [ { diff --git a/packages/config/config/devices/0x027a/zen34.json b/packages/config/config/devices/0x027a/zen34.json index 2208d270e45f..228bf8226d97 100644 --- a/packages/config/config/devices/0x027a/zen34.json +++ b/packages/config/config/devices/0x027a/zen34.json @@ -1,8 +1,9 @@ +// 800 series (LR) starting with firmware 2.0 { "manufacturer": "Zooz", "manufacturerId": "0x027a", "label": "ZEN34", - "description": "Z-Wave Plus 700 Series Remote Switch", + "description": "Remote Switch", "devices": [ { "productType": "0x0004", diff --git a/packages/config/config/devices/0x027a/zen51.json b/packages/config/config/devices/0x027a/zen51.json index 3f1f33ae40d6..91ef286abf60 100644 --- a/packages/config/config/devices/0x027a/zen51.json +++ b/packages/config/config/devices/0x027a/zen51.json @@ -1,14 +1,8 @@ { "manufacturer": "Zooz", "manufacturerId": "0x027a", - "label": [ - { - "$if": "productType === 0x0904", - "value": "ZEN51 LR" - }, - "ZEN51" - ], - "description": "700 Series Dry Contact Relay", + "label": "ZEN51", + "description": "Dry Contact Relay", "devices": [ { // Regular Z-Wave version: @@ -17,7 +11,7 @@ "zwaveAllianceId": 4610 }, { - // Long Range capable version: + // Long Range capable version (firmware 1.50+): "productType": "0x0904", "productId": "0x0201" } diff --git a/packages/config/config/devices/0x027a/zen52.json b/packages/config/config/devices/0x027a/zen52.json index 9515bc6aeed4..4965de3eaad2 100644 --- a/packages/config/config/devices/0x027a/zen52.json +++ b/packages/config/config/devices/0x027a/zen52.json @@ -1,14 +1,8 @@ { "manufacturer": "Zooz", "manufacturerId": "0x027a", - "label": [ - { - "$if": "productType === 0x0904", - "value": "ZEN52 LR" - }, - "ZEN52" - ], - "description": "700 Series Double Relay", + "label": "ZEN52", + "description": "Double Relay", "devices": [ { // Regular Z-Wave version: @@ -17,7 +11,7 @@ "zwaveAllianceId": 4609 }, { - // Long Range capable version: + // Long Range capable version (firmware 1.50+): "productType": "0x0904", "productId": "0x0202" } diff --git a/packages/config/config/devices/0x027a/zen71.json b/packages/config/config/devices/0x027a/zen71.json index 6efdaf4901d2..2a7e41e72d71 100644 --- a/packages/config/config/devices/0x027a/zen71.json +++ b/packages/config/config/devices/0x027a/zen71.json @@ -12,14 +12,8 @@ { "manufacturer": "Zooz", "manufacturerId": "0x027a", - "label": [ - { - "$if": "firmwareVersion >= 3.10 && firmwareVersion < 10.0", - "value": "ZEN71 800LR" - }, - "ZEN71" - ], - "description": "ON/OFF Switch", + "label": "ZEN71", + "description": "On/Off Switch", "devices": [ { "productType": "0x7000", diff --git a/packages/config/config/devices/0x027a/zen72.json b/packages/config/config/devices/0x027a/zen72.json index 09f92812ad37..5c41051ea8e2 100644 --- a/packages/config/config/devices/0x027a/zen72.json +++ b/packages/config/config/devices/0x027a/zen72.json @@ -11,14 +11,8 @@ { "manufacturer": "Zooz", "manufacturerId": "0x027a", - "label": [ - { - "$if": "firmwareVersion >= 3.10 && firmwareVersion < 10.0", - "value": "ZEN72 800LR" - }, - "ZEN72" - ], - "description": "Dimmer Switch", + "label": "ZEN72", + "description": "Dimmer", "devices": [ { "productType": "0x7000", diff --git a/packages/config/config/devices/0x027a/zen73.json b/packages/config/config/devices/0x027a/zen73.json index 870419eec725..0eea34def0ab 100644 --- a/packages/config/config/devices/0x027a/zen73.json +++ b/packages/config/config/devices/0x027a/zen73.json @@ -1,8 +1,9 @@ +// 800 series (LR) starting with firmware 2.10 { "manufacturer": "Zooz", "manufacturerId": "0x027a", "label": "ZEN73", - "description": "700 Toggle Switch", + "description": "Toggle Switch", "devices": [ { "productType": "0x7000", diff --git a/packages/config/config/devices/0x027a/zen74.json b/packages/config/config/devices/0x027a/zen74.json index 990e65421c30..98ebdf98dc9b 100644 --- a/packages/config/config/devices/0x027a/zen74.json +++ b/packages/config/config/devices/0x027a/zen74.json @@ -1,8 +1,9 @@ +// 800 series (LR) starting with firmware 2.10 { "manufacturer": "Zooz", "manufacturerId": "0x027a", "label": "ZEN74", - "description": "700 Toggle Dimmer", + "description": "Toggle Dimmer", "devices": [ { "productType": "0x7000", diff --git a/packages/config/config/devices/0x027a/zen76.json b/packages/config/config/devices/0x027a/zen76.json index b3ae7068fdee..c21e3330d17a 100644 --- a/packages/config/config/devices/0x027a/zen76.json +++ b/packages/config/config/devices/0x027a/zen76.json @@ -8,14 +8,8 @@ { "manufacturer": "Zooz", "manufacturerId": "0x027a", - "label": [ - { - "$if": "firmwareVersion >= 3.10 && firmwareVersion < 10.0", - "value": "ZEN76 800LR" - }, - "ZEN76" - ], - "description": "S2 ON/OFF Switch", + "label": "ZEN76", + "description": "S2 On/Off Switch", "devices": [ { "productType": "0x7000", diff --git a/packages/config/config/devices/0x027a/zen77.json b/packages/config/config/devices/0x027a/zen77.json index 031af09f9278..08055624a7a3 100644 --- a/packages/config/config/devices/0x027a/zen77.json +++ b/packages/config/config/devices/0x027a/zen77.json @@ -14,14 +14,8 @@ { "manufacturer": "Zooz", "manufacturerId": "0x027a", - "label": [ - { - "$if": "firmwareVersion >= 4.10 && firmwareVersion < 10.0", - "value": "ZEN77 800LR" - }, - "ZEN77" - ], - "description": "S2 Dimmer Switch", + "label": "ZEN77", + "description": "S2 Dimmer", "devices": [ { "productType": "0x7000", diff --git a/packages/config/config/devices/0x027a/zse11.json b/packages/config/config/devices/0x027a/zse11.json index 311fd3dd90f1..5cf22f9c3f8c 100644 --- a/packages/config/config/devices/0x027a/zse11.json +++ b/packages/config/config/devices/0x027a/zse11.json @@ -1,3 +1,4 @@ +// 800 series (LR) starting with firmware 2.0 { "manufacturer": "Zooz", "manufacturerId": "0x027a", @@ -133,16 +134,20 @@ ] } ], - "compat": { - "commandClasses": { - "remove": { - // The wakeup destination cannot be set using Supervision, resulting in missing wakeup reports - "Supervision": { - "endpoints": "*" + "compat": [ + { + // On the 500 series version of this device, the wakeup destination + // cannot be set using Supervision, resulting in missing wakeup reports + "$if": "firmwareVersion < 2.0", + "commandClasses": { + "remove": { + "Supervision": { + "endpoints": "*" + } } } } - }, + ], "metadata": { "inclusion": "Put your Z-Wave hub into inclusion mode and click the Z-Wave button 3 times as quickly as possible. The LED indicator will start blinking to confirm inclusion mode and turn off once inclusion is completed. The sensor will automatically pair as a repeater if connected to USB power, no special button sequence required", "exclusion": "1. Bring the sensor within direct range of your Z-Wave gateway (hub).\n2. Put the Z-Wave hub into exclusion mode (not sure how to do that? ask@getzooz.com).\n3. Press and release the Z-Wave button 3 times quickly.\n4. Your hub will confirm exclusion and the sensor will disappear from your controller's device list", diff --git a/packages/config/config/devices/0x027a/zse18.json b/packages/config/config/devices/0x027a/zse18.json index 87a7438f6b8e..f975c90a1382 100644 --- a/packages/config/config/devices/0x027a/zse18.json +++ b/packages/config/config/devices/0x027a/zse18.json @@ -1,8 +1,9 @@ +// 800 series (LR) starting with firmware 2.0 { "manufacturer": "Zooz", "manufacturerId": "0x027a", "label": "ZSE18", - "description": "Motion and Vibration Sensor", + "description": "Motion Sensor", "devices": [ { "productType": "0x0301", From 33e8438bf0481aef41bf4417f33068a1e5ac8bfc Mon Sep 17 00:00:00 2001 From: AlCalzone Date: Tue, 24 Sep 2024 12:10:02 +0200 Subject: [PATCH 06/10] fix(config): update Z-Wave SDK warnings to mention fixed versions (#7187) --- .../devices/0x0000/700_800_series_controller.json | 10 ++++++---- packages/config/config/devices/0x027a/zac93.json | 9 +++------ .../config/config/devices/0x027a/zst10_700.json | 8 ++------ packages/config/config/devices/0x027a/zst39lr.json | 9 +++------ .../config/devices/templates/master_template.json | 13 +++++++++---- 5 files changed, 23 insertions(+), 26 deletions(-) diff --git a/packages/config/config/devices/0x0000/700_800_series_controller.json b/packages/config/config/devices/0x0000/700_800_series_controller.json index 924af101b3f8..9e4904072a1a 100644 --- a/packages/config/config/devices/0x0000/700_800_series_controller.json +++ b/packages/config/config/devices/0x0000/700_800_series_controller.json @@ -22,12 +22,14 @@ "$import": "~/templates/master_template.json#7xx_firmware_bug_pre_7_17_2" }, { - "$if": "firmwareVersion === 7.19.1", - "$import": "~/templates/master_template.json#7xx_firmware_bug_7_19_1" + // Not sure if this is a 700 or 800 series controller. Show the generic warning + "$if": "firmwareVersion >= 7.19.1 && firmwareVersion <= 7.21.3", + "$import": "~/templates/master_template.json#7xx_8xx_firmware_bug_7_19_to_7_21_3_or_7_22_1" }, { - "$if": "firmwareVersion === 7.19.3", - "$import": "~/templates/master_template.json#7xx_firmware_bug_7_19_3" + // 7.22.x is limited to 800 series + "$if": "firmwareVersion === 7.22.0", + "$import": "~/templates/master_template.json#8xx_firmware_bug_pre_7_22_1" } ] } diff --git a/packages/config/config/devices/0x027a/zac93.json b/packages/config/config/devices/0x027a/zac93.json index f83309112da5..0f6393e2d44b 100644 --- a/packages/config/config/devices/0x027a/zac93.json +++ b/packages/config/config/devices/0x027a/zac93.json @@ -17,13 +17,10 @@ // 700/800 series firmware bugs that affect multiple controllers "comments": [ // https://www.support.getzooz.com/kb/article/1158-zooz-ota-firmware-files/ - // These controllers started shipping with 7.18.1: - // 1.1 = 7.18.1 - // (1.3 = 1.4 = 1.10) = 7.18.3 - // 1.20 = 7.19.3 + // 1.40 = SDK 7.22.0. No fixed version available yet. { - "$if": "firmwareVersion === 1.20", - "$import": "~/templates/master_template.json#7xx_firmware_bug_7_19_3" + "$if": "firmwareVersion <= 1.40", + "$import": "~/templates/master_template.json#8xx_firmware_bug_pre_7_22_1" } ] } diff --git a/packages/config/config/devices/0x027a/zst10_700.json b/packages/config/config/devices/0x027a/zst10_700.json index ecfbcd2b375b..954c46baf073 100644 --- a/packages/config/config/devices/0x027a/zst10_700.json +++ b/packages/config/config/devices/0x027a/zst10_700.json @@ -21,12 +21,8 @@ "$import": "~/templates/master_template.json#7xx_firmware_bug_pre_7_17_2" }, { - "$if": "firmwareVersion === 7.19.1", - "$import": "~/templates/master_template.json#7xx_firmware_bug_7_19_1" - }, - { - "$if": "firmwareVersion === 7.19.3", - "$import": "~/templates/master_template.json#7xx_firmware_bug_7_19_3" + "$if": "firmwareVersion >= 7.19.1 && firmwareVersion <= 7.21.3", + "$import": "~/templates/master_template.json#7xx_firmware_bug_7_19_to_7_21_3" } ] } diff --git a/packages/config/config/devices/0x027a/zst39lr.json b/packages/config/config/devices/0x027a/zst39lr.json index b1cc638e48aa..fc5b5bb53f03 100644 --- a/packages/config/config/devices/0x027a/zst39lr.json +++ b/packages/config/config/devices/0x027a/zst39lr.json @@ -17,13 +17,10 @@ // 700/800 series firmware bugs that affect multiple controllers "comments": [ // https://www.support.getzooz.com/kb/article/1352-zst39-800-long-range-z-wave-stick-change-log/ - // These controllers started shipping with 7.18.1: - // 1.1 = 7.18.1 - // (1.3 = 1.4 = 1.10) = 7.18.3 - // 1.20 = 7.19.3 + // 1.50 = SDK 7.22.1 { - "$if": "firmwareVersion === 1.20", - "$import": "~/templates/master_template.json#7xx_firmware_bug_7_19_3" + "$if": "firmwareVersion < 1.50", + "$import": "~/templates/master_template.json#8xx_firmware_bug_pre_7_22_1" } ] } diff --git a/packages/config/config/devices/templates/master_template.json b/packages/config/config/devices/templates/master_template.json index e265113193bb..1da3c2049a0e 100644 --- a/packages/config/config/devices/templates/master_template.json +++ b/packages/config/config/devices/templates/master_template.json @@ -661,14 +661,19 @@ "level": "warning", "text": "Early 700 series firmware revisions had a bug that could cause the mesh to be flooded on some networks and the controller to become unresponsive. It appears that this bug is largely, if not completely, resolved as of SDK version 7.17.2.\nDirections for upgrading the firmware can be found at https://zwave-js.github.io/node-zwave-js/#/troubleshooting/otw-upgrade" }, - "7xx_firmware_bug_7_19_1": { + "7xx_firmware_bug_7_19_to_7_21_3": { "level": "warning", - "text": "Controller firmwares based on Z-Wave SDK 7.19.1 have a bug that causes the controller to randomly restart. It is strongly recommended to update to a firmware based on version 7.19.2, but not later since those firmwares have another bug causing the controller to become unresponsive." + "text": "700 series controller firmwares based on Z-Wave SDKs 7.19 through 7.21.3 are plagued by a variety of bugs causing instability of the controller and/or the mesh. It is strongly recommended to update to a firmware based on version 7.21.4 or later." }, - "7xx_firmware_bug_7_19_3": { + "8xx_firmware_bug_pre_7_22_1": { "level": "warning", - "text": "Controller firmwares based on Z-Wave SDK 7.19.3 have a bug that causes the controller to randomly hang during transmission until it is restarted. It is currently unclear if this bug is fixed in a later firmware version." + "text": "800 series controller firmwares based on Z-Wave SDKs before 7.22.1 are plagued by a variety of bugs causing instability of the controller and/or the mesh. It is strongly recommended to update to a firmware based on version 7.22.1 or later." }, + "7xx_8xx_firmware_bug_7_19_to_7_21_3_or_7_22_1": { + "level": "warning", + "text": "Controller firmwares based on Z-Wave SDKs 7.19 through 7.21.3 (700 series) or 7.22.0 (800 series) are plagued by a variety of bugs causing instability of the controller and/or the mesh. For 700 series controllers, it is strongly recommended to update to a firmware based on version 7.21.4 or later. For 800 series controllers, it is strongly recommended to update to a firmware based on version 7.22.1 or later." + }, + "500_series_controller_compat_flags": { // It seems that all 500 series controllers have a firmware bug: From 54284de6bd5952de0d8d058adf22655b052bca41 Mon Sep 17 00:00:00 2001 From: AlCalzone Date: Tue, 24 Sep 2024 12:56:56 +0200 Subject: [PATCH 07/10] feat: add driver preset to disable watchdog (#7188) --- packages/zwave-js/src/lib/driver/ZWaveOptions.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/packages/zwave-js/src/lib/driver/ZWaveOptions.ts b/packages/zwave-js/src/lib/driver/ZWaveOptions.ts index 528c8edc7d19..76633f027a3f 100644 --- a/packages/zwave-js/src/lib/driver/ZWaveOptions.ts +++ b/packages/zwave-js/src/lib/driver/ZWaveOptions.ts @@ -451,6 +451,16 @@ export const driverPresets = Object.freeze( }, }, + /** + * Prevents enabling the watchdog to be able to deal with controllers + * which frequently get restarted for seemingly no reason. + */ + NO_WATCHDOG: { + features: { + watchdog: false, + }, + }, + /** * Sends battery powered nodes to sleep more quickly in order to save battery. */ From 5d3c7f0ff003de24ee5bbd259306d25fd8f3a41d Mon Sep 17 00:00:00 2001 From: Dominic Griesel Date: Tue, 24 Sep 2024 13:00:47 +0200 Subject: [PATCH 08/10] chore: update changelog --- CHANGELOG.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 506444669934..e5ef2d184abe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,16 @@ +## __WORK IN PROGRESS__ +### Features +* Added `Controller.nvm` property to enable incremental modification of NVM contents on the fly (#7153) +* When the `NODE_ENV` env variable is set to `development`, debugging information for S0 encryption is included in logs (#7181) +* Add driver preset `NO_WATCHDOG` to disable watchdog (#7188) + +### Config file changes +* Update Z-Wave SDK warnings to mention recommended versions (#7187) +* Update Zooz devices (#7186) + ## 13.3.1 (2024-09-17) ### Bugfixes * Fixed the identification of the primary controller role on some older controllers (#7174) From 61124739497433aba6b9532428165990547b9391 Mon Sep 17 00:00:00 2001 From: Dominic Griesel Date: Tue, 24 Sep 2024 13:01:03 +0200 Subject: [PATCH 09/10] chore: release v13.4.0 ### Features * Added `Controller.nvm` property to enable incremental modification of NVM contents on the fly (#7153) * When the `NODE_ENV` env variable is set to `development`, debugging information for S0 encryption is included in logs (#7181) * Add driver preset `NO_WATCHDOG` to disable watchdog (#7188) ### Config file changes * Update Z-Wave SDK warnings to mention recommended versions (#7187) * Update Zooz devices (#7186) --- CHANGELOG.md | 2 +- package.json | 2 +- packages/cc/package.json | 2 +- packages/config/package.json | 2 +- packages/core/package.json | 2 +- packages/eslint-plugin/package.json | 2 +- packages/flash/package.json | 2 +- packages/host/package.json | 2 +- packages/maintenance/package.json | 2 +- packages/nvmedit/package.json | 2 +- packages/serial/package.json | 2 +- packages/testing/package.json | 2 +- packages/zwave-js/package.json | 2 +- 13 files changed, 13 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e5ef2d184abe..8f6a5152461b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ -## __WORK IN PROGRESS__ +## 13.4.0 (2024-09-24) ### Features * Added `Controller.nvm` property to enable incremental modification of NVM contents on the fly (#7153) * When the `NODE_ENV` env variable is set to `development`, debugging information for S0 encryption is included in logs (#7181) diff --git a/package.json b/package.json index 12fac5c95cec..4ab9875ba542 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@zwave-js/repo", - "version": "13.3.1", + "version": "13.4.0", "private": true, "description": "Z-Wave driver written entirely in JavaScript/TypeScript", "keywords": [], diff --git a/packages/cc/package.json b/packages/cc/package.json index 5b985e3cfc71..a8f917ba41f2 100644 --- a/packages/cc/package.json +++ b/packages/cc/package.json @@ -1,6 +1,6 @@ { "name": "@zwave-js/cc", - "version": "13.3.1", + "version": "13.4.0", "description": "zwave-js: Command Classes", "keywords": [], "publishConfig": { diff --git a/packages/config/package.json b/packages/config/package.json index b25a88ae6341..b1209a07013d 100644 --- a/packages/config/package.json +++ b/packages/config/package.json @@ -1,6 +1,6 @@ { "name": "@zwave-js/config", - "version": "13.3.1", + "version": "13.4.0", "description": "zwave-js: configuration files", "publishConfig": { "access": "public" diff --git a/packages/core/package.json b/packages/core/package.json index 3ea49d856daa..32d2a025921b 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@zwave-js/core", - "version": "13.3.0", + "version": "13.4.0", "description": "zwave-js: core components", "keywords": [], "publishConfig": { diff --git a/packages/eslint-plugin/package.json b/packages/eslint-plugin/package.json index 17e1e1d81cd9..03205b2a5904 100644 --- a/packages/eslint-plugin/package.json +++ b/packages/eslint-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@zwave-js/eslint-plugin", - "version": "13.3.0", + "version": "13.4.0", "description": "zwave-js: custom ESLint rules", "private": true, "keywords": [], diff --git a/packages/flash/package.json b/packages/flash/package.json index d1a724502b72..b394b6eac4b9 100644 --- a/packages/flash/package.json +++ b/packages/flash/package.json @@ -1,6 +1,6 @@ { "name": "@zwave-js/flash", - "version": "13.3.1", + "version": "13.4.0", "description": "zwave-js: firmware flash utility", "keywords": [], "publishConfig": { diff --git a/packages/host/package.json b/packages/host/package.json index f5c92a335150..5d87d4586793 100644 --- a/packages/host/package.json +++ b/packages/host/package.json @@ -1,6 +1,6 @@ { "name": "@zwave-js/host", - "version": "13.3.1", + "version": "13.4.0", "description": "zwave-js: Host abstractions", "keywords": [], "publishConfig": { diff --git a/packages/maintenance/package.json b/packages/maintenance/package.json index 3b5f65bec555..c96f02f1149d 100644 --- a/packages/maintenance/package.json +++ b/packages/maintenance/package.json @@ -1,6 +1,6 @@ { "name": "@zwave-js/maintenance", - "version": "13.3.0", + "version": "13.4.0", "description": "zwave-js: maintenance scripts", "private": true, "keywords": [], diff --git a/packages/nvmedit/package.json b/packages/nvmedit/package.json index 508962cb56fd..8c45912b4ad8 100644 --- a/packages/nvmedit/package.json +++ b/packages/nvmedit/package.json @@ -1,6 +1,6 @@ { "name": "@zwave-js/nvmedit", - "version": "13.3.0", + "version": "13.4.0", "description": "zwave-js: library to edit NVM backups", "keywords": [], "publishConfig": { diff --git a/packages/serial/package.json b/packages/serial/package.json index 8b72aa6fdb5a..cda29a77e55f 100644 --- a/packages/serial/package.json +++ b/packages/serial/package.json @@ -1,6 +1,6 @@ { "name": "@zwave-js/serial", - "version": "13.3.1", + "version": "13.4.0", "description": "zwave-js: Serialport driver", "publishConfig": { "access": "public" diff --git a/packages/testing/package.json b/packages/testing/package.json index 8ec40e31475a..2a7a99b83935 100644 --- a/packages/testing/package.json +++ b/packages/testing/package.json @@ -1,6 +1,6 @@ { "name": "@zwave-js/testing", - "version": "13.3.1", + "version": "13.4.0", "description": "zwave-js: testing utilities", "keywords": [], "publishConfig": { diff --git a/packages/zwave-js/package.json b/packages/zwave-js/package.json index e585e745790f..34efbaae7547 100644 --- a/packages/zwave-js/package.json +++ b/packages/zwave-js/package.json @@ -1,6 +1,6 @@ { "name": "zwave-js", - "version": "13.3.1", + "version": "13.4.0", "description": "Z-Wave driver written entirely in JavaScript/TypeScript", "keywords": [], "type": "commonjs", From ff25b5efd8a25add586ab492e7e89993d6531dbc Mon Sep 17 00:00:00 2001 From: AlCalzone Date: Wed, 25 Sep 2024 09:29:27 +0200 Subject: [PATCH 10/10] docs: update FAQ on secondary controllers (#7190) --- docs/getting-started/faq.md | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/docs/getting-started/faq.md b/docs/getting-started/faq.md index bb650169fe98..dccba751dbc8 100644 --- a/docs/getting-started/faq.md +++ b/docs/getting-started/faq.md @@ -2,12 +2,20 @@ ## Does Z-Wave JS support secondary controllers? -Yes and no. +Mostly. -Z-Wave JS expects to **be the primary controller** in the network and it will try to assume that role when started. It will not work correctly as a secondary controller. +Slightly longer answer:\ +On startup, Z-Wave JS detects whether the Z-Wave module it controls is a primary controller or a secondary/inclusion controller. -It does however support **having secondary controllers in the network**. This includes: +Its default operation mode is acting as a **primary controller**, or assuming that role if there is none in the network. In this mode, it supports **having secondary controllers in the network**. This includes: - Including/excluding a secondary controller - Letting secondary controllers (inclusion controllers) include and exclude devices - Perform network key exchange with devices included by a secondary controller + +Z-Wave JS also supports joining other networks as a **secondary controller**. This mode is not meant for controlling a smart home, because reports are sent to the primary controller. + +> [!WARNING] Secondary controller support is still experimental and has some limitations: +> +> - Including devices on behalf of the primary controller does not work +> - Devices won't be interviewed by default. Triggering an interview manually may set up the lifelines incorrectly.