gitextract_tqp4d6q6/ ├── .gitignore ├── Makefile ├── README.md ├── components/ │ ├── epaper/ │ │ ├── DefaultFont.c │ │ ├── DejaVuSans18.c │ │ ├── DejaVuSans24.c │ │ ├── EPD.c │ │ ├── EPD.h │ │ ├── EPDspi.c │ │ ├── EPDspi.h │ │ ├── SmallFont.c │ │ ├── Ubuntu16.c │ │ ├── comic24.c │ │ ├── component.mk │ │ ├── dejavuX.c │ │ ├── minya24.c │ │ └── tooney32.c │ ├── mkspiffs/ │ │ ├── .travis.yml │ │ ├── Makefile.projbuild │ │ ├── component.mk │ │ └── src/ │ │ ├── Makefile │ │ ├── Makefile.original │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── main.cpp │ │ ├── mkspiffs │ │ ├── spiffs/ │ │ │ ├── esp_spiffs.c │ │ │ ├── esp_spiffs.h │ │ │ ├── spiffs.h │ │ │ ├── spiffs_cache.c │ │ │ ├── spiffs_check.c │ │ │ ├── spiffs_config.h │ │ │ ├── spiffs_gc.c │ │ │ ├── spiffs_hydrogen.c │ │ │ ├── spiffs_nucleus.c │ │ │ └── spiffs_nucleus.h │ │ └── tclap/ │ │ ├── Arg.h │ │ ├── ArgException.h │ │ ├── ArgTraits.h │ │ ├── COPYING │ │ ├── CmdLine.h │ │ ├── CmdLineInterface.h │ │ ├── CmdLineOutput.h │ │ ├── Constraint.h │ │ ├── DocBookOutput.h │ │ ├── HelpVisitor.h │ │ ├── IgnoreRestVisitor.h │ │ ├── MultiArg.h │ │ ├── MultiSwitchArg.h │ │ ├── OptionalUnlabeledTracker.h │ │ ├── StandardTraits.h │ │ ├── StdOutput.h │ │ ├── SwitchArg.h │ │ ├── UnlabeledMultiArg.h │ │ ├── UnlabeledValueArg.h │ │ ├── ValueArg.h │ │ ├── ValuesConstraint.h │ │ ├── VersionVisitor.h │ │ ├── Visitor.h │ │ ├── XorHandler.h │ │ └── ZshCompletionOutput.h │ ├── spidriver/ │ │ ├── component.mk │ │ ├── spi_master_lobo.c │ │ └── spi_master_lobo.h │ ├── spiffs/ │ │ ├── component.mk │ │ ├── esp_spiffs.c │ │ ├── esp_spiffs.h │ │ ├── list.c │ │ ├── list.h │ │ ├── mutex.c │ │ ├── mutex.h │ │ ├── spiffs.h │ │ ├── spiffs_cache.c │ │ ├── spiffs_check.c │ │ ├── spiffs_config.h │ │ ├── spiffs_gc.c │ │ ├── spiffs_hydrogen.c │ │ ├── spiffs_nucleus.c │ │ ├── spiffs_nucleus.h │ │ ├── spiffs_vfs.c │ │ └── spiffs_vfs.h │ └── spiffs_image/ │ ├── Makefile.projbuild │ ├── component.mk │ ├── image/ │ │ ├── fonts/ │ │ │ ├── BigFont.fon │ │ │ ├── DejaVuSans12.fon │ │ │ ├── DejaVuSans18.fon │ │ │ ├── DejaVuSans24.fon │ │ │ ├── DotMatrix_M.fon │ │ │ ├── Grotesk24x48.fon │ │ │ ├── SmallFont.fon │ │ │ ├── Ubuntu.fon │ │ │ ├── arial_bold.fon │ │ │ ├── ocrfont.c │ │ │ └── swiss721_outline.fon │ │ └── spiffs.info │ └── spiffs_image.img ├── main/ │ ├── Kconfig.projbuild │ ├── component.mk │ ├── ePaper.c │ ├── ePaper.h │ ├── img1.h │ ├── img2.h │ ├── img3.h │ └── img_hacking.c ├── partitions_example.csv └── sdkconfig.defaults