Select one of the symbols to view example projects that use it.
 
Outline
#include "spi_flash_chip_driver.h"
#include "spi_flash_chip_generic.h"
#include "spi_flash_chip_issi.h"
#include "spi_flash_chip_mxic.h"
#include "spi_flash_chip_gd.h"
#include "spi_flash_chip_winbond.h"
#include "spi_flash_chip_boya.h"
default_registered_chips
Files
loading...
SourceVuESP-IDF Framework and Examplescustom_flash_driver samplecomponents/custom_chip_driver/chip_drivers.c
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* Custom flash driver example This example code is in the Public Domain (or CC0 licensed, at your option.) Unless required by applicable law or agreed to in writing, this software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. *//* ... */ #include "spi_flash_chip_driver.h" #include "spi_flash_chip_generic.h" #include "spi_flash_chip_issi.h" #include "spi_flash_chip_mxic.h" #include "spi_flash_chip_gd.h" #include "spi_flash_chip_winbond.h" #include "spi_flash_chip_boya.h"7 includes extern const spi_flash_chip_t esp_flash_chip_eon; //Override the default chip driver provided by the IDF, CONFIG_SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST should be set const spi_flash_chip_t *default_registered_chips[] = { &esp_flash_chip_eon, &esp_flash_chip_issi, &esp_flash_chip_gd, &esp_flash_chip_mxic, &esp_flash_chip_winbond, &esp_flash_chip_boya, // Default chip drivers that will accept all chip ID. // FM and XMC chips are supposed to be supported by this chip driver. &esp_flash_chip_generic, NULL, }{...};
Details
Show:
from
Types: Columns: