Hello Everybody,
I have an advance project where I'm using FreeRTOS in a nrf52833. Now I want to use 2 UARTs through the libUARTE library.
I saw a similar post where somebody attempted the same: Multiple UART on NRF52833
Unfortunately from the post is not clear how to get pass the linker problem:
.\_build\nrf52833_xxaa.axf: Error: L6218E: Undefined symbol app_timer_cnt_diff_compute (referred from nrf_libuarte_async.o).
.\_build\nrf52833_xxaa.axf: Error: L6218E: Undefined symbol app_timer_cnt_get (referred from nrf_libuarte_async.o).
The main problem seems to be that FreeRTOS defines the same functions as appTimer2, and so far I haven't seen a single example code where somebody manages to get FreeRTOS running and the libUARTE with 2 UARTs at the same time?
Can somebody help me?