mFrame
載入中...
搜尋中...
無符合項目
Ultra-Low

Power Configuration:

// Configuration for maximum power savings
LowPowerModeRegulatorsConfig ultra_low_power = {
.lpIREF = false, // Disable internal reference
.bandgapMode = BandgapMode::DISABLED, // Disable bandgap if possible
.coreLDOOption = LowPowerModeCoreLdoOption::MINIMAL_REGULATION
};
// Note: This may significantly limit wake-up capabilities
if (can_use_ultra_low_power_mode()) {
spc_configure_low_power_regulators(&ultra_low_power);
}