1 /*
2  * SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #pragma once
8 
9 #include <stdint.h>
10 
11 void flash_update_id(void);
12 
13 int init_spi_flash(void);
14 
15 #ifdef CONFIG_SOC_SERIES_ESP32
16 int flash_get_wp_pin(void);
17 #endif
18