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.

POWER SAVING

Other Parts Discussed in Thread: MSP430F4152, CC2592

HELLO ,

I am using the MSP430F4152_QFP interfaced  with SABLE-x-R2(LAIRD).I have only using UART program (P6.5 of MSP to DIO0 of SABLE  and  P6.6 of MSP to DIO1 for communiacation).The data to get from the meter (analog value via MSP) to be send to the SABLE board. 

Then I use CC2592 connected with SABLE-x-R2 for power extender.The pin connection are DIO_14 of SABLE to PA_EnN to 2592,DIO_8 to LNA_EN and DIO_4 to HGM.

I use the BLE5 server program.And in the ble_server. c part the PA is made high. 

static PIN_Config SPPBLEAppPinTable[] =
{
Board_RLED | PIN_GPIO_OUTPUT_EN | PIN_GPIO_LOW | PIN_PUSHPULL | PIN_DRVSTR_MIN, /* LED initially off ---HGM */
Board_GLED | PIN_GPIO_OUTPUT_EN | PIN_GPIO_HIGH | PIN_PUSHPULL | PIN_DRVSTR_MIN, /* LED initially off ---PA */
Board_BLED | PIN_GPIO_OUTPUT_EN | PIN_GPIO_LOW | PIN_PUSHPULL | PIN_DRVSTR_MIN, /* LED initially off ---LNA */

PIN_TERMINATE
};

void SPPBLEServer_current(void)
{
hGpioPin = PIN_open(&pinGpioState, SPPBLEAppPinTable);
PINCC26XX_setMux(hGpioPin, Board_BLED,IOC_PORT_RFC_GPO0);
PINCC26XX_setMux(hGpioPin, Board_GLED, IOC_PORT_RFC_GPO1);
}

Use the current function in the initialize function :

 

SPPBLEServer_current();

// Create an RTOS queue for message from profile to be sent to app.
appMsgQueue = Util_constructQueue(&appMsg);

 Check the current.It shows the current is more that 3.7 mA.

  

I checked the current that I have attached with it.

How can I reduce the current value.

It is a customized board.

regards,

Srijit.