| 93 | // don't use it. See FastLED #2773 item 1.2. |
| 94 | |
| 95 | bool FileSystem::begin(FsImplPtr platform_filesystem) { |
| 96 | mFs = platform_filesystem; |
| 97 | if (!mFs) { |
| 98 | return false; |
| 99 | } |
| 100 | mFs->begin(); |
| 101 | return true; |
| 102 | } |
| 103 | |
| 104 | FileSystem::FileSystem() : mFs() {} |
| 105 |