I'm trying to build support for uart async api by adding:
CONFIG_SERIAL=y
CONFIG_UART_ASYNC_API=y
to my prj.conf. Without CONFIG_UART_ASYNC_API the app compiles, but uart_callback_set fails (as expected). When I add CONFIG_UART_ASYNC_API to get support for CONFIG_UART_ASYNC_API, then the build fails with messages like this:
/opt/nordic/ncs/v1.7.1/toolchain/bin/../lib/gcc/arm-none-eabi/9.2.1/../../../../arm-none-eabi/bin/ld.bfd: /Users/denis/sandbox/itamar/workspace/zephyr/drivers/serial/uart_nrfx_uarte.c:530: undefined reference to `nrfx_timer_increment'
Do I need something else to get the nrfx timer support?