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

High power consumption in shutdown

The device has high power consumption when in shutdown, around 0,5mA. It uses SPI and TWI in normal operation but I have implemented the work around according the errata but still the problem persist. Am I missing something here?

    *(uint32_t *)0x40003FFC = 0;
    *(uint32_t *)0x40003FFC;
    *(uint32_t *)0x40003FFC = 1;

    *(uint32_t *)0x40004FFC = 0;
    *(uint32_t *)0x40004FFC;
    *(uint32_t *)0x40004FFC = 1;

    *(uint32_t *)0x40023FFC = 0;
    *(uint32_t *)0x40023FFC;
    *(uint32_t *)0x40023FFC = 1;


    nrf_drv_twi_disable(&m_twi_master);
    nrf_drv_twi_uninit(&m_twi_master);

Parents Reply Children
No Data
Related