This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

nRF9160 multiplex UART and other peripherals

Hi,

We are using ncs 1.0.0 and modem fw version 1.0.1.

We are currently using 2 UART, 1 SPI and 1 I2C peripheral in our application. 

We want to use one more UART in our application. 

SPI and I2C peripherals are not frequently needed to be used in our application. 

So is it possible to disable SPI / I2C when not in use and initialize 3rd UART and use it in the application ?

Basically we want to multiplex use of SPI/I2C and UART peripheral so we can use more number of peripherals. 

Regards,

Smitesh Mali

 

Parents Reply Children
  • You can't initialize or uninitialize peripherals at runtime. And since I2C3 and UART3 share the same resources, you will have to do what I suggested in my previous reply, by writing to the registers directly.

    Disable I2C3 by first making sure to stop RX / TX and wait for any events and then writing to the ENABLE register. The enable UART3 by doing the exact opposite of what you would to disable it (write to the ENABLE register, then start RX / TX). 

Related