@brief Format the active file system * @retval int Error code */
| 491 | * @retval int Error code |
| 492 | */ |
| 493 | inline int fileSystemFormat() |
| 494 | { |
| 495 | CHECK_FS(format) |
| 496 | return fileSystem->format(); |
| 497 | } |
| 498 | |
| 499 | /** @brief Perform a consistency check/repair on the active file system |
| 500 | * @retval int 0 if OK, < 0 unrecoverable errors, > 0 repairs required |
no test coverage detected