mirror of
https://github.com/espressif/esp-idf.git
synced 2026-05-30 17:46:32 +03:00
License of soc component is changed from Apache-2.0 to Apache-2.0 OR MIT to be able to use it in esp-stub-lib
12 lines
267 B
C
12 lines
267 B
C
/*
|
|
* SPDX-FileCopyrightText: 2025 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0 OR MIT
|
|
*/
|
|
|
|
#include "soc/power_supply_periph.h"
|
|
|
|
const power_supply_signal_conn_t power_supply_periph_signal = {
|
|
.irq = ETS_RTC_CORE_INTR_SOURCE,
|
|
};
|