esp-idf/components/esp_hw_support/include/esp_private/sleep_sys_periph.h

35 wiersze
722 B
C

/*
* SPDX-FileCopyrightText: 2022-2024 Espressif Systems (Shanghai) CO LTD
*
* SPDX-License-Identifier: Apache-2.0
*/
#pragma once
#include <stdint.h>
#include <stdbool.h>
#include "sdkconfig.h"
#ifdef __cplusplus
extern "C" {
#endif
/**
* @file sleep_sys_periph.h
*
* This file contains declarations of digital peripheral retention related functions in light sleep mode.
*/
/**
* @brief Whether to allow the TOP power domain to be powered off.
*
* In light sleep mode, only when the system can provide enough memory
* for digital peripheral retention, the TOP power domain can be powered off.
*
* @return True to allow power off
*/
bool peripheral_domain_pd_allowed(void);
#ifdef __cplusplus
}
#endif