Current consumption for SPI and UART

Hi Support Team 

It seems that there is no current consumption information for SPI and UART of nRF54L15 in data sheet. We want to know the current consumption when SPI and UART run at 2Mbps. Could you provide us the information for evaluation? Many thanks.

Parents Reply
  • Hi Susheel

    It seems that the current consumption of UART send/receive data is the same as the current consumption of UART  dosen't send/receive any data.

    The following screenshot is the current consumption for uart dosen't send/receive any data.

    The following screenshot is the current consumption for the uart send and receive data every second with 2Mbps.

    The attachment is current data saved from PPK2.

    UART_Send_and_Receive_data.csv

    I select the Source meter mode of PPK2 for testing. 

    The VOUT of PPK2 connects the nRF54L15 DK's nRF54 pin(the middle pin of nRF54L15 DK's P6 connector);

    The GND of PPK2 connects the GND pin of nRF54L15 DK's P6 connector. And nRF54L15 DK doesn't connect PC with USB cable.

    And I also disable all other periperals which not used in this project.

    Can I think of the current consumption of uart operate in 2Mbps as 3.10mA?

    The following screenshot is the code simplified for testing.

    async_api.zip

Children
  • You are keeping the UART RX always enabled which should be keeping the HFCLK active all the time. The UART transfer itself add very small currents but the main current you are seeing is the HFCLK regulator being on all the time. 

    Change little bit of your code like this

    -#define RECEIVE_TIMEOUT 100
    +#define RECEIVE_TIMEOUT 100
    
    -    uart_rx_enable(uart_dev, rx_buf, sizeof rx_buf, SYS_FOREVER_US);
    +    uart_rx_enable(uart_dev, rx_buf, sizeof rx_buf, RECEIVE_TIMEOUT);
    
    
     case UART_RX_RDY:
         uart_tx(uart_dev, &evt->data.rx.buf[evt->data.rx.offset],
                 evt->data.rx.len, SYS_FOREVER_US);
    +    uart_rx_disable(uart_dev);
         break;

    And when you finish your transmit,then the uart rx should be disabled to release its dependency on the HFCLK. If no other peripheral is using HFCLK, then the HFCLK is turned off automatically.

Related