Hi,
I am trying to test the radio example from Eclipse. So i took one of my projects on SDK15.2 that works with the NRF52832, I cloned it and renamed it.
The arborescence is like that :
Radio_test
/.settings
/Debug
/Device
/Project
/Release
/SDK
/system
So I deleted files in Project and replaced them by files from the examples.
I have also added the "cli" library in SDK/components/libraries/, because I hadn't it. Then I have added this path like that : "../SDK/components/libraries/cli", in Project, Properties, in Includes from GNU ARM Cross Assembler and GNU ARM Cross C Compiler for both configurations, Debug and Release.
I have also added the sdk_config.h and and ble_app_template_gcc_nrf52.ld in my Project directory.
I have added also the experimental_libuarte library in SDK, and added it in the same way as before. I did that also for cli/uart.
Finally, in my main.c file, I have added #define CLI_EXAMPLE_LOG_QUEUE_SIZE (4) before NRF_CLI_UART_DEF call. Is it the good thing to do ?
Now i have some errors, with nrf_libuarte_async.c and nrf_libuarte.c, from the experimental_libuarte library, because of unresolved Symbols.
I have also some errors, with two headers, nrf_timer.h from SDK/modules/nrfx/hal and nrfx_timer.h from SDK/modules/nrfx/drivers/include which have some undeclared define.
I think all these errors are connected, but don't know why.
Thanks for your help,