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
  • 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. 

  • Hi,

    We can disable the UART/SPI/I2C this way but is it possible to initialize new peripheral ?

    For example ,

    I am using UART0 and UART1, 

    I am using SPI2 and I2C3. 

    Now i want to disable I2C3 at runtime and initialize UART3. 

    Is it possible to do it ?

    Regards,

    Smitesh Mali

  • 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