Other Parts Discussed in Thread: CC2640R2F
Tool/software: TI-RTOS
Hi,
I am using CC2640R2 launchpad and i added an accelerometer board to the lauchpad.
After adding accelerometer board, overall power consumption increased so much.
I made a few experiment to find problem;
When CC2640R2 launchpad works standalone, it draws nearly 48.83uA
When CC2640R2 laucnhpad is connected to the accelerometer board, it draws nearly 104.20uA.
I am communicating with accelerometer board by using SPI interface.
After launchpad start, i configure the accelerometer as power down mode.
Accelerometer draws nearly 90nA during power down mode according to its datasheet.
I supplied accelerometer's 3.3V from 3.3V pin on the CC2640R2 Launchpad.
The list of connection between accelerometer board and CC2640R2 board
CC2640R2_LAUNCHXL_SPI0_MOSI | PIN_INPUT_EN | PIN_PULLDOWN,
CC2640R2_LAUNCHXL_SPI0_MISO | PIN_INPUT_EN | PIN_PULLDOWN,
CC2640R2_LAUNCHXL_SPI0_CLK | PIN_INPUT_EN | PIN_PULLDOWN,
ACC_SPI_CS_PIN | PIN_GPIO_OUTPUT_EN | PIN_GPIO_HIGH,
ACC_INT_PIN | PIN_INPUT_EN | PIN_PULLDOWN,
ACC_SPI_CS_PIN is a chip select pin for accelerometer board and uses active low. Also, when i do not communicate with accelerometer board, i drive cs pin output high.
ACC_INT_PIN is an interrupt pin.
I measured that how much current flows through these Vcc and INT and CS pins after accelerometer configuration.
I measured as 0uA because of my measurement device sensitivity. This means that accelerometer board does not have any big contribution to increasing power consumption.
However, there is a difference between 55.37uA. between with accelerometer board and without accelerometer board.
Here is a brief information about accelerometer default pin status;
SPI serial clock pin > open drain
SPI chip select > input with internal pull-up
SPI data output > input with internal pull-up
SPI data input > input open drain
INT pin > push-pull output forced to GND.
I think, internal pull-up resistor in accelerometer board should not be problem.
I could not find, what causes this much current flow ?
Any help would appreciated.
Have a nice day.
Thank you .