1 /*
2  * SPDX-FileCopyrightText: 2015-2021 Espressif Systems (Shanghai) CO LTD
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 
8 #ifndef __ESP_BROWNOUT_H
9 #define __ESP_BROWNOUT_H
10 
11 #ifdef __cplusplus
12 extern "C" {
13 #endif
14 
15 void esp_brownout_init(void);
16 
17 void esp_brownout_disable(void);
18 
19 #ifdef __cplusplus
20 }
21 #endif
22 
23 #endif
24