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
  • Yes, this should definitely be possible!

    You have to stop the RX / TX, as per the datasheet (wait for events and so forth) and then disable the peripheral. And for enabling do the exact same, just in reverse. 

    Take a look at the API reference for I2C and UART to see how to enable/disable the peripherals.

    This answer from Håkon also shows how to disable the UART peripheral:

    NRF_UARTE1->TASKS_STOPRX=1;
    while(NRF_UARTE1->EVENTS_RXTO == 0);
    NRF_UARTE1->EVENTS_RXTO = 0;
    NRF_UARTE1->TASKS_STOPTX = 1;
    while(NRF_UARTE1->EVENTS_TXSTOPPED == 0);
    NRF_UARTE1->EVENTS_TXSTOPPED = 0;
    NRF_UARTE1->ENABLE = 0;
    NRF_UARTE1->PSEL.TXD = 0xFFFFFFFF;
    NRF_P0_NS->OUTCLR = (1 << TXD_PIN);

    I attached a snippet from the UARTE chapter of the PS for the nRF9160, which is relevant when disabling this peripheral.

    For TWI (I2C) it should be something similar, just read the product specification. 

Children
Related