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

nRF8001 low power mode

Hi all,

i have a device with the nrf8001 module. I can connect this to a smartphone and send data through the UART protocol. After that i disconnect the device and i have to put this in low power. For do that i call the functions:

lib_aci_radio_reset(); lib_aci_sleep();

but the device consuption is 0.5mA, is correct execute that function or i have to do some things else? can i reduce the current to uA? Thanks

Parents
  • 500uA is too high for the sleep state. When the nRF8001 is sleeping it should be in (I_sleep) 0.5uA. Make sure that there is no wakeup on the nRF8001, i.e. the REQN line should be high at all times.

    Is this a custom board created by you ? You can take a look at the measurement methods to make sure that you are meaasuring only the current drawn by the nRF8001 and not by the additional micro controller as well.

    www.nordicsemi.com/.../61839706

    See section 8 in the below application note www.nordicsemi.com/.../28783492

    Use the ACI Sleep command to put the nRF8001 to sleep.
    lib_aci_sleep() After sending the sleep command make sure that the mcu has actually clocked the sleep command to the nRF8001 before putting the mcu itself to sleep. Additionally at this point when the mcu is going to sleep ensure that the REQN line is not lowered. [Edited]

Reply
  • 500uA is too high for the sleep state. When the nRF8001 is sleeping it should be in (I_sleep) 0.5uA. Make sure that there is no wakeup on the nRF8001, i.e. the REQN line should be high at all times.

    Is this a custom board created by you ? You can take a look at the measurement methods to make sure that you are meaasuring only the current drawn by the nRF8001 and not by the additional micro controller as well.

    www.nordicsemi.com/.../61839706

    See section 8 in the below application note www.nordicsemi.com/.../28783492

    Use the ACI Sleep command to put the nRF8001 to sleep.
    lib_aci_sleep() After sending the sleep command make sure that the mcu has actually clocked the sleep command to the nRF8001 before putting the mcu itself to sleep. Additionally at this point when the mcu is going to sleep ensure that the REQN line is not lowered. [Edited]

Children
No Data
Related