My app is similar to BLE UART example. I have some UART errors when data is ent too fast so I'm trying to move to LIBUARTE as described in this ticket but I'm getting linker errors as below.
Output/MYPROJ Debug/Obj/nrf_libuarte_drv.o: In function `nrfx_ppi_channel_include_in_group': undefined reference to `nrfx_ppi_channels_include_in_group' Output/MYPROJ Debug/Obj/nrf_libuarte_drv.o: In function `ppi_channel_configure': undefined reference to `nrfx_ppi_channel_alloc' undefined reference to `nrfx_ppi_channel_assign' undefined reference to `nrfx_ppi_channel_fork_assign' Output/MYPROJ Debug/Obj/nrf_libuarte_drv.o: In function `ppi_group_configure': undefined reference to `nrfx_ppi_group_alloc' undefined reference to `nrfx_ppi_group_enable' Output/MYPROJ Debug/Obj/nrf_libuarte_drv.o: In function `ppi_ch_free': undefined reference to `nrfx_ppi_channel_disable' undefined reference to `nrfx_ppi_channel_free' Output/MYPROJ Debug/Obj/nrf_libuarte_drv.o: In function `ppi_group_free': undefined reference to `nrfx_ppi_group_free' Output/MYPROJ Debug/Obj/nrf_libuarte_drv.o: In function `ppi_ch_enable': undefined reference to `nrfx_ppi_channel_enable' Output/MYPROJ Debug/Obj/nrf_libuarte_drv.o: In function `ppi_ch_disable': undefined reference to `nrfx_ppi_channel_disable' Output/MYPROJ Debug/Obj/nrf_libuarte_drv.o: In function `nrf_libuarte_drv_init': undefined reference to `nrfx_timer_init' Output/MYPROJ Debug/Obj/nrf_libuarte_drv.o: In function `nrf_libuarte_drv_rx_start': undefined reference to `nrfx_timer_enable' undefined reference to `nrfx_timer_clear' Output/MYPROJ Debug/Obj/nrf_libuarte_async.o: In function `nrf_libuarte_async_init': undefined reference to `nrfx_ppi_channel_alloc' undefined reference to `nrfx_ppi_channel_assign' undefined reference to `nrfx_ppi_channel_fork_assign' undefined reference to `nrfx_ppi_channel_assign' undefined reference to `nrfx_ppi_channel_fork_assign' Output/MYPROJ Debug/Obj/nrf_libuarte_async.o: In function `nrf_libuarte_async_enable': undefined reference to `nrfx_ppi_channel_enable' undefined reference to `nrfx_ppi_channel_enable' Build failed
I'm sure this is simple but I'm hitting a wall... can you put me out of my misery?
Thanks