I'm just starting to make a project using SDK 17.1, which is loosely based on a working, mature project based on SDK 15.2 and I'm hitting a bunch of issues. My path here is to copy an example (in my case beacon) and then strip everything out and add stuff back in slowly as needed.
Right now I'm just trying to nrfx_rtc, nrfx_spim, and printf via app_uart working to read in some sensor data and print to a terminal program. Everything compiles all the way to linking the .elf and I get:
- undefined reference to 'app_uart_init'
- undefined reference to 'nrfx_rtc_init'
- undefined reference to 'nrfx_spim_xfer'
app_uart doesn't seem to have any entries in sdk_config.h any more but the nrfx_rtc and nrtx_spim are both enabled so I'm not at all sure what's going on.
Any thoughts or things I should be looking at? This SDK has always confused the bejesus out of me so I don't have any clue where it's all going wrong.
Adam