support for wear levelling in fatfs partition generator

Closes https://github.com/espressif/esp-idf/issues/5785
This commit is contained in:
Martin Gano
2021-09-22 00:32:54 +02:00
committed by Martin Gaňo
parent fcd634faec
commit 7460deeae8
24 changed files with 649 additions and 175 deletions

View File

@@ -29,5 +29,12 @@ class TooLongNameException(Exception):
pass
class WLNotInitialized(Exception):
"""
Exception is raised when the user tries to write fatfs not initialized with wear levelling
"""
pass
class FatalError(Exception):
pass