Z-Way Nonsecure Inclusion for Multichannel Devices

Discussions about Z-Way software and Z-Wave technology in general
Post Reply
N2641D
Posts: 29
Joined: 06 Feb 2019 13:34

Z-Way Nonsecure Inclusion for Multichannel Devices

Post by N2641D »

I’m developing Z-Wave enddevices based on Z-Wave 700 series (ZGM130S). Since I have got some issues with Z-Way inclusions of multichannel devices for the command classes SECURITY/SECURITY2 I expected a software bug at my end. I now used Silicon Labs’ pre-certified example project PowerStrip and found that Z-Way shows the same issues too. An extract of the PowerStrip command classes are (the dots ... represent further command classes):

// main device (endpoint #0)
static uint8_t cmdClassListNonSecureNotIncluded[] = {…, COMMAND_CLASS_SECURITY, COMMAND_CLASS_SECURITY_2, ...};
static uint8_t cmdClassListNonSecureIncludedSecure[] = {…, COMMAND_CLASS_SECURITY, COMMAND_CLASS_SECURITY_2, ...};
static uint8_t cmdClassListSecure[] = {…};
// endpoint #1
static uint8_t ep1_noSec_InclNonSecure[] = {…, COMMAND_CLASS_SECURITY, COMMAND_CLASS_SECURITY_2};
static uint8_t ep1_noSec_InclSecure[] = {…, COMMAND_CLASS_SECURITY, COMMAND_CLASS_SECURITY_2};
static uint8_t ep1_sec_InclSecure[] = {...};
// endpoint #2
static uint8_t ep2_noSec_InclNonSecure[] = {…, COMMAND_CLASS_SECURITY, COMMAND_CLASS_SECURITY_2};
static uint8_t ep2_noSec_InclSecure[] = {…, COMMAND_CLASS_SECURITY, COMMAND_CLASS_SECURITY_2};
static uint8_t ep2_sec_InclSecure[] = {…};

From my understanding, COMMAND_CLASS_SECURITY and COMMAND_CLASS_SECURITY_2 should be offered at endpoint level (here endpoint #1 and endpoint #2) even if the inclusion is Nonsecure (see above list: ep1_noSec_InclNonSecure and ep2_noSec_InclNonSecure). The Z-Way Nonsecure interview result, however, is “pic01”. When I try to force an interview after the inclusion, the Z-Way response is an error message “pic02”.

Any suggestion / any advice?

Thanks.
Attachments
pic02.png
pic02.png (157.34 KiB) Viewed 1240 times
pic01.png
pic01.png (149.03 KiB) Viewed 1240 times
User avatar
PoltoS
Posts: 7649
Joined: 26 Jan 2011 19:36

Re: Z-Way Nonsecure Inclusion for Multichannel Devices

Post by PoltoS »

Hello!

This is a known issue, and will be solved in v3.2.4 (or v4.0.0). For now just skip it as it does not affect functionality
Post Reply