samples/nrf/onoff_level_light: Convert to new MCUmgr header paths

Header paths changed.

Signed-off-by: Dominik Ermel <dominik.ermel@nordicsemi.no>
This commit is contained in:
Dominik Ermel 2022-11-10 12:51:47 +00:00 committed by Carles Cufí
commit 31d4a2e7bd
2 changed files with 5 additions and 5 deletions

View file

@ -16,7 +16,7 @@
#include "transition.h" #include "transition.h"
#if defined(CONFIG_MCUMGR) #if defined(CONFIG_MCUMGR)
#include <zephyr/mgmt/mcumgr/smp_bt.h> #include <zephyr/mgmt/mcumgr/transport/smp_bt.h>
#include "smp_svr.h" #include "smp_svr.h"
#endif #endif

View file

@ -12,16 +12,16 @@
#include <zephyr/kernel.h> #include <zephyr/kernel.h>
#ifdef CONFIG_MCUMGR_CMD_FS_MGMT #ifdef CONFIG_MCUMGR_CMD_FS_MGMT
#include "fs_mgmt/fs_mgmt.h" #include <zephyr/mgmt/mcumgr/grp/fs_mgmt/fs_mgmt.h>
#endif #endif
#ifdef CONFIG_MCUMGR_CMD_IMG_MGMT #ifdef CONFIG_MCUMGR_CMD_IMG_MGMT
#include "img_mgmt/img_mgmt.h" #include <zephyr/mgmt/mcumgr/grp/img_mgmt/img_mgmt.h>
#endif #endif
#ifdef CONFIG_MCUMGR_CMD_OS_MGMT #ifdef CONFIG_MCUMGR_CMD_OS_MGMT
#include "os_mgmt/os_mgmt.h" #include <zephyr/mgmt/mcumgr/grp/os_mgmt/os_mgmt.h>
#endif #endif
#ifdef CONFIG_MCUMGR_CMD_STAT_MGMT #ifdef CONFIG_MCUMGR_CMD_STAT_MGMT
#include "stat_mgmt/stat_mgmt.h" #include <zephyr/mgmt/mcumgr/grp/stat_mgmt/stat_mgmt.h>
#endif #endif
/* Define an example stats group; approximates seconds since boot. */ /* Define an example stats group; approximates seconds since boot. */