mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
27 lines
461 B
C
27 lines
461 B
C
|
|
/*
|
|
* SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include "hal/brownout_hal.h"
|
|
#include "esp_attr.h"
|
|
#include "hal/regi2c_ctrl.h"
|
|
#include "soc/regi2c_brownout.h"
|
|
|
|
void brownout_hal_config(const brownout_hal_config_t *cfg)
|
|
{
|
|
// TODO: IDF-5711
|
|
}
|
|
|
|
void brownout_hal_intr_enable(bool enable)
|
|
{
|
|
// TODO: IDF-5711
|
|
}
|
|
|
|
IRAM_ATTR void brownout_hal_intr_clear(void)
|
|
{
|
|
// TODO: IDF-5711
|
|
}
|