esp-idf/examples/storage
Ivan Grokhotkov 27e1490bfc
examples: sd_card: fix example test not getting the expected name
SD card example prints the line which looks like:

   Name: 00000

If only part of the line is received, the regular expression in the
test still matches, and partial name is obtained. Later the example
test expects to see the same name in the file read from the SD card.
This check fails, because only partial name was received earlier.

Fix by adding a CR to the regular expression so that the entire name
is matched.
2022-05-11 21:50:11 +02:00
..
custom_flash_driver Build & config: Remove leftover files from the unsupported "make" build system 2021-11-11 15:32:36 +01:00
ext_flash_fatfs spi_flash: refactor the spi_flash clock configuration, and add support for esp32c2 2022-04-26 15:22:37 +08:00
fatfsgen change: renamed FATFS convenience mounting functions 2022-04-11 08:44:40 +00:00
nvs_rw_blob Build & config: Remove leftover files from the unsupported "make" build system 2021-11-11 15:32:36 +01:00
nvs_rw_value Build & config: Remove leftover files from the unsupported "make" build system 2021-11-11 15:32:36 +01:00
nvs_rw_value_cxx Build & config: Remove leftover files from the unsupported "make" build system 2021-11-11 15:32:36 +01:00
partition_api Build & config: Remove leftover files from the unsupported "make" build system 2021-11-11 15:32:36 +01:00
parttool Build & config: Remove leftover files from the unsupported "make" build system 2021-11-11 15:32:36 +01:00
sd_card examples: sd_card: fix example test not getting the expected name 2022-05-11 21:50:11 +02:00
semihost_vfs semihosting: drop absolute path support 2022-05-05 09:12:42 +00:00
spiffs spiffs: Add esp_spiffs_check() function 2022-04-08 19:40:56 +00:00
spiffsgen ci: Fix pre-check stage failing tests 2022-03-03 01:37:10 +05:30
wear_levelling change: renamed FATFS convenience mounting functions 2022-04-11 08:44:40 +00:00
README.md Replace all DOS line endings with Unix 2018-07-12 19:10:37 +08:00

Storage Examples

Storage and management of user and system data in modules flash and on external memory / devices.

See the README.md file in the upper level examples directory for more information about examples.