mFrame
載入中...
搜尋中...
無符合項目
Supervisory

Circuit Integration:

// Integration with supervisory circuit expecting active-high
void setup_supervisory_circuit_interface() {
// Supervisory circuit monitors LPR for system power state
LowPowerRequestConfig config = {
.enable = true,
.polarity = LowPowerRequestPinPolarity::HIGH_TRUE_POLARITY,
.override = LowPowerRequestOutputOverride::NOT_FORCED
};
configure_low_power_request(&config);
// Supervisory circuit interprets:
// LOW = System active, normal power management
// HIGH = System requesting low power, reduce monitoring frequency
}