You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- if: ((IDF_VERSION_MAJOR == 5 and IDF_VERSION_MINOR >= 3) or (IDF_VERSION_MAJOR > 5)) and (IDF_TARGET in ["esp32", "esp32c3"])
80
80
reason: Example is meant to be run under QEMU, which currently only supports ESP32 and ESP32-C3
81
81
82
-
spi_nand_flash/examples/nand_flash:
83
-
disable:
84
-
- if: IDF_VERSION_MAJOR < 5
85
-
reason: The spi_nand_flash component is compatible with IDF version v5.0 and above, due to a change in the f_mkfs API in versions above v5.0, which is not supported in older IDF versions.
86
-
87
82
spi_nand_flash/test_app:
88
83
disable:
89
84
- if: IDF_VERSION_MAJOR < 5
90
85
reason: The spi_nand_flash component is compatible with IDF version v5.0 and above, due to a change in the f_mkfs API in versions above v5.0, which is not supported in older IDF versions.
86
+
- if: IDF_VERSION_MAJOR < 6 and CONFIG_NAME == "bdl"
87
+
reason: BDL support requires the esp_blockdev interface, available starting from IDF version v6.0.
91
88
92
89
spi_nand_flash/host_test:
93
90
enable:
94
91
- if: IDF_TARGET == "linux"
95
92
disable:
96
93
- if: IDF_VERSION_MAJOR < 5
97
94
reason: The spi_nand_flash component is compatible with IDF version v5.0 and above, due to a change in the f_mkfs API in versions above v5.0, which is not supported in older IDF versions.
98
-
disable:
99
95
- if: IDF_VERSION_MAJOR == 5 and (IDF_VERSION_MINOR < 3)
100
96
reason: Fails to build on older versions of IDF
97
+
98
+
spi_nand_flash_fatfs/examples/nand_flash:
99
+
disable:
100
+
- if: IDF_VERSION_MAJOR < 5
101
+
reason: The spi_nand_flash component is compatible with IDF version v5.0 and above, due to a change in the f_mkfs API in versions above v5.0, which is not supported in older IDF versions.
0 commit comments