Hi, I use CC2652P on my target, SimpLink SDK v4.20,.
When I test sleep current on my target, I found this:
If I close uart with UART_close(UartHandle) in TI Drivers, then sleep current on my target is 14uA.
If I didn't close uart, then sleep current on my target is 1.7mA.
And I initialized spi, i2c, adc in my code. Spi, i2c, adc remains open in init procedure, and they have no influence to sleep current.
In a word :
SPI, I2C, ADC open, UART open: 1.7mA
SPI, I2C, ADC open, UART close: 14uA.
So, is closing uart a necessary step for low power application?