current consumption due to SPI FLASH on DA14531 module

I see extended sleep current consumption near 1,2uA on USB basic development  kit, but only when disconnect FLASH after boot (by DIP's). When the flash is still connected, the current is near 24uA. How it looks on DA14531 module? I saw in some docummentation, that SPI FLASH is disconnected after boot. So is it hardware or software disconnected in module? 

The basic question is what extended sleep current is on DA14531 module? 1,2uA (like on dev kit with DIP1-5 OFF) or 24uA (like on dev kit with DIP1-5 ON)?

Parents Reply
  • Thank You fro fast response.

    In iBeacon example I see there is flash power down

    void user_app_on_init(void)
    {
        /* If we have booted from flash then it will still be in active mode, power down to 
             reduce current consumption. */
        (void)spi_flash_power_down();	
        
        #if defined (__DA14531__) && defined (TX_POWER_2d5Bm)
                /* Set output power to maximum value (+2.5dBm) */
                rf_pa_pwr_set(RF_TX_PWR_LVL_PLUS_2d5);
        #endif
    
        default_app_on_init();
    }

    I measured currents one more time and have:

    9uA with connected and powered down FLASH (earlier I saw 24uA due to connecting FLASH ON-THE-FLY while program running, now changed DIP's before powering and have 9uA)

    1,2uA with disconnected FLASH (disabling DIP's after boot).

    So, if DA14531 module has SPI FLASH connected in the same manner as USB kit, how can I obtain near 2uA? Is it possible?

Children