Hi,
I am working on zigbee demo "light_switch" with NCS2.8 Add-on SDK.I enabled MCUboot according to the steps in the course "Lesson 9 – Bootloaders and DFU/FOTA"
1 enable "SB_CONFIG_BOOTLOADER_MCUBOOT=y" in sysbuild.conf
2 enable "CONFIG_NCS_SAMPLE_MCUMGR_BT_OTA_DFU=y" in overlay-multiprotocol_ble.conf.
#
# Copyright (c) 2024 Nordic Semiconductor ASA
#
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
#
# BLE configuration
CONFIG_BT=y
CONFIG_BT_SMP=y
CONFIG_BT_PERIPHERAL=y
CONFIG_BT_DEVICE_NAME="Zigbee_Switch"
CONFIG_BT_DEVICE_APPEARANCE=833
CONFIG_BT_MAX_CONN=1
CONFIG_BT_MAX_PAIRED=1
CONFIG_BT_PHY_UPDATE=n
# Enable the NUS service
CONFIG_BT_NUS=y
# Enable bonding
CONFIG_SETTINGS=y
CONFIG_BT_SETTINGS=y
CONFIG_NCS_SAMPLE_MCUMGR_BT_OTA_DFU=y
SB_CONFIG_BOOTLOADER_MCUBOOT=y
But it compiles with the following error " fatal error: zboss_api.h: No such file or directory".
...