This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

CC2745R10-Q1: CC2745 power shutdown current.

Expert 1075 points
Part Number: CC2745R10-Q1

Tool/software:

Hi TI Experts.

We are a module manufacturer.
We are now using TI CC2745R10 LP to verify the power shutdown current.
We use the SDK simplelink_lowpower_f3_sdk_9_10_00_83.
We call the following program and measure the current from the power monitor, which is 7uA.
How can we reduce the power consumption to <1uA?

int main()
{
  /* Register Application callback to trap asserts raised in the Stack */
  halAssertCback = AssertHandler;
  RegisterAssertCback(AssertHandler);

  GPIO_resetConfig(9);
  GPIO_resetConfig(10);
  GPIO_setConfig(9,GPIO_CFG_INPUT_INTERNAL|GPIO_CFG_PULL_DOWN_INTERNAL);
  GPIO_setConfig(10,GPIO_CFG_INPUT_INTERNAL|GPIO_CFG_PULL_DOWN_INTERNAL);
  Power_shutdown(0,0);

  Board_init();

  /* Update User Configuration of the stack */
  user0Cfg.appServiceInfo->timerTickPeriod = ICall_getTickPeriod();
  user0Cfg.appServiceInfo->timerMaxMillisecond  = ICall_getMaxMSecs();

  /* Initialize all applications tasks */
  appMain();

  /* Start the FreeRTOS scheduler */
  vTaskStartScheduler();

  return 0;

}

  • Hello,

    That seems to be the same power usage of the external flash. You may need to cut the trace that connects to the external flash to get a more accurate power measurement.

    Best,

    Nima Behmanesh