Hello,
We tried using pcd_network_core_app_version() to read the network core version (presumably set by CONFIG_FW_INFO_FIRMWARE_VERSION in our hci_ipc.conf) from the app core. To do this, we set the following flags to the app core prj.conf:
CONFIG_PCD=y
CONFIG_PCD_APP=y
CONFIG_FW_INFO=y
CONFIG_PCD_READ_NETCORE_APP_VERSION=y
However, we got a build error: "/opt/nordic/ncs/v2.6.1/zephyr/subsys/dfu/boot/mcuboot.c:23:10: fatal error: zephyr/fw_info.h: No such file or directory"
Went in mcuboot.c and updated the include to: #include <fw_info.h>. Now it builds. But it does not run.
Is there an example out there of how to do this properly?
Thanks,
Ever