mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
69 lines
1.9 KiB
C
69 lines
1.9 KiB
C
|
// Copyright 2015-2019 Espressif Systems (Shanghai) PTE LTD
|
||
|
//
|
||
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
// you may not use this file except in compliance with the License.
|
||
|
// You may obtain a copy of the License at
|
||
|
//
|
||
|
// http://www.apache.org/licenses/LICENSE-2.0
|
||
|
//
|
||
|
// Unless required by applicable law or agreed to in writing, software
|
||
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
// See the License for the specific language governing permissions and
|
||
|
// limitations under the License.
|
||
|
|
||
|
#pragma once
|
||
|
#include "esp_err.h"
|
||
|
#include <stdint.h>
|
||
|
#include <stdbool.h>
|
||
|
#include "sdkconfig.h"
|
||
|
|
||
|
#include "esp_flash.h"
|
||
|
|
||
|
/** Internal API, don't use in the applications */
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
|
||
|
/** @brief Initialise the default SPI flash chip
|
||
|
*
|
||
|
* Called by OS startup code. You do not need to call this in your own applications.
|
||
|
*/
|
||
|
#ifdef CONFIG_SPI_FLASH_USE_LEGACY_IMPL
|
||
|
#define esp_flash_init_default_chip(...) ({ESP_OK;})
|
||
|
#else
|
||
|
esp_err_t esp_flash_init_default_chip(void);
|
||
|
#endif
|
||
|
|
||
|
/**
|
||
|
* Enable OS-level SPI flash protections in IDF
|
||
|
*
|
||
|
* Called by OS startup code. You do not need to call this in your own applications.
|
||
|
*
|
||
|
* @return ESP_OK if success, otherwise failed. See return value of ``esp_flash_init_os_functions``.
|
||
|
*/
|
||
|
#ifdef CONFIG_SPI_FLASH_USE_LEGACY_IMPL
|
||
|
#define esp_flash_app_init(...) ({ESP_OK;})
|
||
|
#else
|
||
|
esp_err_t esp_flash_app_init(void);
|
||
|
#endif
|
||
|
|
||
|
/**
|
||
|
* Initialize OS-level functions for a specific chip.
|
||
|
*
|
||
|
* @param chip The chip to init os functions.
|
||
|
* @param host_id Which SPI host to use, 1 for SPI1, 2 for SPI2 (HSPI), 3 for SPI3 (VSPI)
|
||
|
*
|
||
|
* @return
|
||
|
* - ESP_OK if success
|
||
|
* - ESP_ERR_INVALID_ARG if host_id is invalid
|
||
|
*/
|
||
|
esp_err_t esp_flash_init_os_functions(esp_flash_t *chip, int host_id);
|
||
|
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|