Current situation:
I am using uarte to communicate over UART, at Individual level this works.
I have serial mesh DFU implemented in my application and at individual level this works. (I see the serial_uart_init uses NRF_UART0 directly)
Now I have to integrate both in same application. I tried it and I'm getting following error
1> build/aio_Debug/obj/nrfx_uarte.o: In function `UARTE0_UART0_IRQHandler': 1> /home/shubham/aio/nRF_SDKs/nRF5_SDK_15.2.0_9412b96/modules/nrfx/drivers/src/nrfx_uarte.c:575: multiple definition of `UARTE0_UART0_IRQHandler' 1> build/aio_Debug/obj/serial_uart.o:/home/shubham/aio/nRF_SDKs/nrf5SDKforMeshv310src/mesh/serial/src/serial_uart.c:60: first defined here Build failed
Rather I would like to know how to use both UARTs is there any simpler way to integrate both usages?