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

Maximum Group subscription of a node in BLE Mesh with NRF52832

The value of 

ACCESS_SUBSCRIPTION_LIST_COUNT  is 7,

but when I add more than 3 group in subscription of a node, its shows insufficient resources error.

What is maximum number of group I can subscribe in a node?

I need at least 10 group to add to a single node.

Parents Reply
  • Hi. 

    In order to add more than 3 subscription addresses, you need to increase the max. number of non-virtual addresses. 

    in access.c: line137: 

    /** Maximum number of non-virtual addresses.
     * - Generic OnOff publication
     * - Health publication
     * - Subscription address
     */
    #define DSM_NONVIRTUAL_ADDR_MAX                         (3)

    This value is set to 3 by default in the SDK. Increase it to add more subscription addresses. 

    Best regards,
    Joakim

Children
Related