Hi
I am using NRF5340 chip in my custom designed board and I want to use all the 4 UARTs available in this chip at the same time.
The interesting problem which I am confronting is that three of these UARTs work properly and answer to their interrupts. The forth
UART can send data but it doesn't response to its receiving data. It's call back routine doesn't work. Another interesting matter is
that when I change the initializing sequence of these UARTs the non responding UART is also changes. For example when I
initialize the UARTs in my main as: uart0,uart1,uart2,uart3 the non responding uart is the last one ie. uart3. When I change the
initializing sequence for example as: uart0,uart1,uart3,uart2 the non responding uart is uart2 . Always the last initialized uart
doesn't respond. It seems that only three receiving interrupts are active.
I would be very thankful if you could guide me to solve this problem, because I need all 4 UARTs in my project.
Best regards