Hi,
I am developing nrf52832 on zephyr platform, I have seen a very useful GitHub library you guys have created called 'NordicPlayground' https://github.com/NordicPlayground. There are many useful examples implemented for zephyr os. I just made my NFC tag on nrf52 talk to my andriod phone. Much appreciate !!
Now i have a encounter a problem, i have added 'nrfxlib' into my project as west external module, put it in 'modules/lib', but 'fw-nrfconnect-nrf' has fail the adding by west, after config the west.yml file :
- name: fw-nrfconnect-nrf revision: 0d455a2454f4afb20d218cdec9c1922101e02d39 path: fw-nrfconnect-nrf remote: ncs
i do 'west update', pull it into my project, and then cmake ....., it fails the cmake saying :
self._parse_block(_T_ENDIF, node, node)
File "/home/sasha/gitlab/zephyr/scripts/kconfig/kconfiglib.py", line 2886, in _parse_block
if self.srctree else "unset or blank"))
kconfiglib.KconfigError: /home/sasha/gitlab/fw-nrfconnect-nrf/subsys/bootloader/Kconfig:24: '/home/sasha/gitlab/zephyr/../nrf/subsys/partition_manager/Kconfig.template.build_strategy' not found (in 'source "${ZEPHYR_BASE}/../nrf/subsys/partition_manager/Kconfig.template.build_strategy"'). Check that environment variables are set correctly (e.g. $srctree, which is set to '/home/sasha/gitlab/zephyr'). Also note that unset environment variables expand to the empty string.
CMake Error at /home/sasha/gitlab/zephyr/cmake/kconfig.cmake:210 (message):
command failed with return code: 1
Call Stack (most recent call first):
/home/sasha/gitlab/zephyr/cmake/app/boilerplate.cmake:461 (include)
CMakeLists.txt:5 (include)
would you help me with that? is it possiable for this lib used as external module for zephyr, 'nrfxlib' work perfectly fine, it would be super great if i can get access to this lib too
Thank in advance