This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

nRF52 Thingy with power profile kit

Hi, i want to connect nRF52 Thingy with nRF6707 power profile kit to measure the current acquire by thingy.

How to connect the thingy to power profile kit

And also i have one more external device with battery . i want to calculate the how much current taken by the device from that battery

battery volt                 (2.8 V - 4.2V)

Device operating volt (3V)

Parents
  • Hi Sunil

    When an application is in the _WFE(); state, it is in system ON low power mode. 

    1. When the device is in system OFF mode you need to set the wake-up conditions before you go into system OFF mode. By default, the SDK examples set the press of a button as the wake-up source, but this can be set to be, for example a timer from an external MCU or similar.

    2. If you want to enter sleep mode System ON, you can call the nrf_pwr_mgmt_run() function.

    3 & 4. You can check out our RTC example for how to set up a counter and implement that in your sleep function.

    Best regards,

    Simon

  • To perform a Single Button configuration like

    One click (BUTTON_RELEASE)

    Double Click (BUTTON_RELEASE)

    Button Press for 3 seconds

    Button Press for 7 seconds.

    all these configuration should apply for only one BUTTON

    if this is case which one is better

    app_button.c or bsp.c

    2. how do i change the wake up button action.

       i.e -   by default while the system off state . when the button is pressed the system wake up. instead of that i need the

    wake up action to be change it to BUTTON _RELEASE .

    3. or wake up is to be done after the 3seconds of long press of a button.

Reply
  • To perform a Single Button configuration like

    One click (BUTTON_RELEASE)

    Double Click (BUTTON_RELEASE)

    Button Press for 3 seconds

    Button Press for 7 seconds.

    all these configuration should apply for only one BUTTON

    if this is case which one is better

    app_button.c or bsp.c

    2. how do i change the wake up button action.

       i.e -   by default while the system off state . when the button is pressed the system wake up. instead of that i need the

    wake up action to be change it to BUTTON _RELEASE .

    3. or wake up is to be done after the 3seconds of long press of a button.

Children
No Data
Related