2020-01-21 15:32:28 +00:00
|
|
|
|
2022-01-05 06:08:37 +00:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: 2020-2022 Espressif Systems (Shanghai) CO LTD
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
2020-01-21 15:32:28 +00:00
|
|
|
|
|
|
|
#include "hal/brownout_hal.h"
|
|
|
|
#include "soc/rtc_cntl_struct.h"
|
|
|
|
#include "soc/rtc_cntl_reg.h"
|
2022-01-05 06:08:37 +00:00
|
|
|
#include "esp_private/regi2c_ctrl.h"
|
2020-09-28 07:44:28 +00:00
|
|
|
#include "regi2c_brownout.h"
|
2020-01-21 15:32:28 +00:00
|
|
|
|
|
|
|
|
|
|
|
void brownout_hal_config(const brownout_hal_config_t *cfg)
|
|
|
|
{
|
2020-09-28 07:44:28 +00:00
|
|
|
REGI2C_WRITE_MASK(I2C_BOD, I2C_BOD_THRESHOLD, cfg->threshold);
|
2020-01-21 15:32:28 +00:00
|
|
|
typeof(RTCCNTL.brown_out) brown_out_reg = {
|
|
|
|
.out2_ena = 1,
|
|
|
|
.int_wait = 0x002,
|
|
|
|
.close_flash_ena = cfg->flash_power_down,
|
|
|
|
.pd_rf_ena = cfg->rf_power_down,
|
|
|
|
.rst_wait = 0x3ff,
|
|
|
|
.rst_ena = cfg->reset_enabled,
|
|
|
|
.ena = cfg->enabled,
|
2021-01-08 11:48:14 +00:00
|
|
|
.rst_sel = 1,
|
2020-01-21 15:32:28 +00:00
|
|
|
};
|
|
|
|
RTCCNTL.brown_out = brown_out_reg;
|
|
|
|
}
|
|
|
|
|
|
|
|
void brownout_hal_intr_enable(bool enable)
|
|
|
|
{
|
|
|
|
RTCCNTL.int_ena.rtc_brown_out = enable;
|
|
|
|
}
|
|
|
|
|
|
|
|
void brownout_hal_intr_clear(void)
|
|
|
|
{
|
|
|
|
RTCCNTL.int_clr.rtc_brown_out = 1;
|
|
|
|
}
|