CONFIG_ZBOSS_TRACE_MASK

Trace mask of ZBOSS stack logs

Type: hex

Help

Selectively enable Zigbee binary trace logs. The mask value should be a bitwise OR of values assigned to selected modules.

Available modules are:

  • 0x8000 SPI platform implementation

  • 0x4000 Zigbee Green Power

  • 0x2000 Custom components

  • 0x1000 UART and NCP transport

  • 0x0800 Application

  • 0x0400 MAC Lower Layer

  • 0x0200 Zigbee Light Link

  • 0x0100 Zigbee Cluster Library

  • 0x0080 Security

  • 0x0040 Zigbee Device Object

  • 0x0020 Zigbee Smart Energy

  • 0x0010 Application Support layer

  • 0x0008 Network layer

  • 0x0004 MAC layer

  • 0x0002 Memory management

  • 0x0001 Common

For example, in order to enable traces related to OTA DFU, one should set this option to 0x4100.

Note: For general debugging purposes, please use 0x0C48.

Direct dependencies

ZIGBEE

(Includes any dependencies from ifs and menus.)

Default

  • 0x0000

Kconfig definition

At <nRF>/subsys/zigbee/Kconfig:161

Included via <Zephyr>/Kconfig:8<Zephyr>/Kconfig.zephyr:9<BuildDir>/Kconfig/Kconfig.modules:1<nRF>/Kconfig.nrf:25<nRF>/subsys/Kconfig:40

Menu path: (Top) → Modules → Nordic nRF Connect → Enable Zigbee stack → Zigbee Log configuration

config ZBOSS_TRACE_MASK
    hex "Trace mask of ZBOSS stack logs"
    range 0x0000 0xFFFF
    default 0x0000
    depends on ZIGBEE
    help
      Selectively enable Zigbee binary trace logs.
      The mask value should be a bitwise OR of values assigned to selected modules.

      Available modules are:

      - 0x8000 SPI platform implementation
      - 0x4000 Zigbee Green Power
      - 0x2000 Custom components
      - 0x1000 UART and NCP transport
      - 0x0800 Application
      - 0x0400 MAC Lower Layer
      - 0x0200 Zigbee Light Link
      - 0x0100 Zigbee Cluster Library
      - 0x0080 Security
      - 0x0040 Zigbee Device Object
      - 0x0020 Zigbee Smart Energy
      - 0x0010 Application Support layer
      - 0x0008 Network layer
      - 0x0004 MAC layer
      - 0x0002 Memory management
      - 0x0001 Common

      For example, in order to enable traces related to OTA DFU, one should set this option to 0x4100.

      Note: For general debugging purposes, please use 0x0C48.

(The ‘depends on’ condition includes propagated dependencies from ifs and menus.)