Hi guys. What do you suggest when i have to use multiple uart devices?
As noted, the nRF52832 itself only has a single UART. If your "UART devices" are suitable, you could multiplex this single UART among them - either using the internal pin crossbar, or some external arrangement (or a bit of both).
If that's not suitable, then you will need to add additional UARTs - in software, or as external hardware (or both). In this case, there is nothing particularly special to the nRF - it's just the same as adding extra UARTs to any microcontroller.
A further option, if multiple UARTs is really critical to your project, would be to choose a different chip which does have enough UARTs in the first place!
As noted, the nRF52832 itself only has a single UART. If your "UART devices" are suitable, you could multiplex this single UART among them - either using the internal pin crossbar, or some external arrangement (or a bit of both).
If that's not suitable, then you will need to add additional UARTs - in software, or as external hardware (or both). In this case, there is nothing particularly special to the nRF - it's just the same as adding extra UARTs to any microcontroller.
A further option, if multiple UARTs is really critical to your project, would be to choose a different chip which does have enough UARTs in the first place!
I read UART part in nRF52 v13 document.
There is following paragraph
The UART driver can use multiple instances of the UART/UARTE peripherals, and it provides a common API for both peripheral types.
I guess it means that if there are the multiple instances then nRF52832 can do multiple UART connection.