Merge branch 'fix/undeprecate_esp_vfs_fat_register' into 'master'

fix(fatfs): temp remove deprecated attribute from esp_vfs_fat_register

Closes IDFCI-2045

See merge request espressif/esp-idf!29168
This commit is contained in:
Martin Vychodil
2024-02-22 22:54:13 +08:00
2 changed files with 3 additions and 1 deletions

View File

@@ -406,7 +406,7 @@ esp_err_t esp_vfs_fat_info(const char* base_path, uint64_t* out_total_bytes, uin
* @deprecated Please use `esp_vfs_fat_register_cfg` instead * @deprecated Please use `esp_vfs_fat_register_cfg` instead
*/ */
esp_err_t esp_vfs_fat_register(const char* base_path, const char* fat_drive, esp_err_t esp_vfs_fat_register(const char* base_path, const char* fat_drive,
size_t max_files, FATFS** out_fs) __attribute__((deprecated("Please use esp_vfs_fat_register_cfg instead"))); size_t max_files, FATFS** out_fs);
/** /**
* @deprecated Please use `esp_vfs_fat_spiflash_mount_rw_wl` instead * @deprecated Please use `esp_vfs_fat_spiflash_mount_rw_wl` instead

View File

@@ -429,6 +429,7 @@ examples/peripherals/usb/device:
reason: lack of runners with usb_device tag reason: lack of runners with usb_device tag
depends_components: depends_components:
- usb - usb
- fatfs
depends_filepatterns: depends_filepatterns:
- examples/peripherals/usb/device/**/* - examples/peripherals/usb/device/**/*
@@ -454,6 +455,7 @@ examples/peripherals/usb/host:
reason: lack of runners with usb_host_flash_disk tag reason: lack of runners with usb_host_flash_disk tag
depends_components: depends_components:
- usb - usb
- fatfs
depends_filepatterns: depends_filepatterns:
- components/hal/usb*.c - components/hal/usb*.c
- components/hal/include/hal/usb*.h - components/hal/include/hal/usb*.h