i am using VS code, nrf Connect SDK version 1.7.0, nrf 5340 DK board. Attempting to run the CLI example.
The Cmakelist.txt:
#
# Copyright (c) 2020 Nordic Semiconductor ASA
#
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
#
cmake_minimum_required(VERSION 3.20.0)
list(INSERT OVERLAY_CONFIG 0 ../common/overlay-ot-defaults.conf)
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
project(openthread_cli)
# NORDIC SDK APP START
target_sources(app PRIVATE src/main.c)
# NORDIC SDK APP END
target_sources_ifdef(CONFIG_BT app PRIVATE src/ble.c)
Issue: File not found: C:/Nodic/Apps/CLI_Test/../common/overlay-ot-defaults.conf
Is this conf file the correct one to be used and if so where is it located?