mirror of
https://github.com/espressif/esp-idf
synced 2025-03-23 07:59:11 -04:00
- Support SOC ROOT clock source switch - Support CPU frequency change - Support RTC SLOW clock source switch - Support RTC SLOW clock + RC FAST calibration Remove FPGA build for esp32h2
26 lines
363 B
C
26 lines
363 B
C
/*
|
|
* SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
// The HAL layer for PMU
|
|
|
|
#pragma once
|
|
|
|
#include "soc/soc_caps.h"
|
|
#include "hal/pmu_ll.h"
|
|
#include "hal/pmu_types.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct {
|
|
pmu_dev_t *dev;
|
|
} pmu_hal_context_t;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|