mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
5bcd9b2db8
G0 doesn't depend on any G1+ layer for RISC-V based targets
23 lines
577 B
C
23 lines
577 B
C
/*
|
|
* SPDX-FileCopyrightText: 2020-2022 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
/**
|
|
* @file regi2c_brownout.h
|
|
* @brief Register definitions for brownout detector
|
|
*
|
|
* This file lists register fields of the brownout detector, located on an internal configuration
|
|
* bus. These definitions are used via macros defined in regi2c_ctrl.h.
|
|
*/
|
|
|
|
#define I2C_BOD 0x61
|
|
#define I2C_BOD_HOSTID 0
|
|
|
|
#define I2C_BOD_THRESHOLD 0x5
|
|
#define I2C_BOD_THRESHOLD_MSB 2
|
|
#define I2C_BOD_THRESHOLD_LSB 0
|