Fork of Tangara with customizations
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 
 
tangara-fw/lib/fatfs/test_apps
jacqueline 6e73f1a22e Upgrade fatfs component version il y a 2 ans
..
flash_ro Upgrade fatfs component version il y a 2 ans
flash_wl Upgrade fatfs component version il y a 2 ans
sdcard Upgrade fatfs component version il y a 2 ans
test_fatfs_common Upgrade fatfs component version il y a 2 ans
.build-test-rules.yml Upgrade fatfs component version il y a 2 ans
README.md fork the esp-idf fatfs for f_forward and exfat support il y a 2 ans

README.md

fatfs component target tests

This directory contains tests for fatfs component which are run on chip targets.

See also test_fatfs_host directory for the tests which run on a Linux host.

Fatfs tests can be executed with different diskio backends: diskio_sdmmc (SD cards over SD or SPI interface), diskio_spiflash (wear levelling in internal flash) and diskio_rawflash (read-only, no wear levelling, internal flash). There is one test app here for each of these backends:

  • sdcard — runs fatfs tests with an SD card over SDMMC or SDSPI interface
  • flash_wl - runs fatfs test in a wear_levelling partition in SPI flash
  • flash_ro - runs fatfs test in a read-only (no wear levelling) partition in SPI flash

These test apps define:

  • test functions
  • setup/teardown routines
  • build/test configurations
  • pytest test runners

The actual test cases (many of which are common between the test apps) are defined in the test_fatfs_common component.