This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

Changing the default stack profile of the Zigbee App

Hello,

I am using the nRF Connect SDK v1.5.1 and using the Zigbee Projects.

I wanted to know if and how to change the default stack profile of the Zigbee App. The following link suggests that the default stack profile is - 

0x02 (STACK_PRO), I wanted to try the  0x00 (STACK_NETWORK_SELECT) profile.
Is it possible to change the default profile and if yes where can I change it?
Thanks, and Regards,
Yash.
Parents
  • Hei,

    The following defines:

    /** Network Selection Stack Profile Id*/
    #define STACK_NETWORK_SELECT  0x00
    /** 2007 Stack Profile Id*/
    #define STACK_2007            0x01
    /** Pro Stack Profile Id */
    #define STACK_PRO             0x02
    

    are enumeration for all available stack profiles and doesn't mean they are compiled-in. The defines that determine which stack profile is compiled-in are in zb_config.h:

    #define ZB_PRO_STACK
    //#define ZB_STACK_PROFILE_2007
    

    So the Zigbee PRO stack profile is the compiled-in profile, and also the lates one. Why do you want to switch to other profile?

    The only way to switch profiles will be recompiling the ZBOSS stack, which is only available for members of the ZBOSS Open Initiative (ZOI).

    Best regards,

    Marjeris

Reply
  • Hei,

    The following defines:

    /** Network Selection Stack Profile Id*/
    #define STACK_NETWORK_SELECT  0x00
    /** 2007 Stack Profile Id*/
    #define STACK_2007            0x01
    /** Pro Stack Profile Id */
    #define STACK_PRO             0x02
    

    are enumeration for all available stack profiles and doesn't mean they are compiled-in. The defines that determine which stack profile is compiled-in are in zb_config.h:

    #define ZB_PRO_STACK
    //#define ZB_STACK_PROFILE_2007
    

    So the Zigbee PRO stack profile is the compiled-in profile, and also the lates one. Why do you want to switch to other profile?

    The only way to switch profiles will be recompiling the ZBOSS stack, which is only available for members of the ZBOSS Open Initiative (ZOI).

    Best regards,

    Marjeris

Children
Related