mirror of
https://github.com/espressif/esp-idf.git
synced 2026-04-27 19:13:21 +00:00
30 lines
498 B
C
30 lines
498 B
C
/*
|
|
* SPDX-FileCopyrightText: 2025 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
// The LL layer for ESP32-S31 PMU register operations
|
|
|
|
#pragma once
|
|
|
|
#include <stdlib.h>
|
|
#include <stdbool.h>
|
|
#include "soc/soc.h"
|
|
#include "esp_attr.h"
|
|
#include "hal/assert.h"
|
|
#include "soc/pmu_struct.h"
|
|
#include "hal/pmu_types.h"
|
|
#include "hal/misc.h"
|
|
#include "hal/config.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
// TODO: ["ESP32S31"] IDF-14642
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|