├── .gitignore ├── .gitmodules ├── .travis.yml ├── LICENSE.txt ├── Makefile ├── README.md ├── format.sh ├── include ├── sdkconfig.h └── spiffs_config.h ├── main.cpp └── 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 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrr/mkspiffs/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrr/mkspiffs/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrr/mkspiffs/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrr/mkspiffs/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrr/mkspiffs/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrr/mkspiffs/HEAD/README.md -------------------------------------------------------------------------------- /format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrr/mkspiffs/HEAD/format.sh -------------------------------------------------------------------------------- /include/sdkconfig.h: -------------------------------------------------------------------------------- 1 | // Dummy file to be replaced by build script. 2 | -------------------------------------------------------------------------------- /include/spiffs_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrr/mkspiffs/HEAD/include/spiffs_config.h -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrr/mkspiffs/HEAD/main.cpp -------------------------------------------------------------------------------- /tclap/Arg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrr/mkspiffs/HEAD/tclap/Arg.h -------------------------------------------------------------------------------- /tclap/ArgException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrr/mkspiffs/HEAD/tclap/ArgException.h -------------------------------------------------------------------------------- /tclap/ArgTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrr/mkspiffs/HEAD/tclap/ArgTraits.h -------------------------------------------------------------------------------- /tclap/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrr/mkspiffs/HEAD/tclap/COPYING -------------------------------------------------------------------------------- /tclap/CmdLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrr/mkspiffs/HEAD/tclap/CmdLine.h -------------------------------------------------------------------------------- /tclap/CmdLineInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrr/mkspiffs/HEAD/tclap/CmdLineInterface.h -------------------------------------------------------------------------------- /tclap/CmdLineOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrr/mkspiffs/HEAD/tclap/CmdLineOutput.h -------------------------------------------------------------------------------- /tclap/Constraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrr/mkspiffs/HEAD/tclap/Constraint.h -------------------------------------------------------------------------------- /tclap/DocBookOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrr/mkspiffs/HEAD/tclap/DocBookOutput.h -------------------------------------------------------------------------------- /tclap/HelpVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrr/mkspiffs/HEAD/tclap/HelpVisitor.h -------------------------------------------------------------------------------- /tclap/IgnoreRestVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrr/mkspiffs/HEAD/tclap/IgnoreRestVisitor.h -------------------------------------------------------------------------------- /tclap/MultiArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrr/mkspiffs/HEAD/tclap/MultiArg.h -------------------------------------------------------------------------------- /tclap/MultiSwitchArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrr/mkspiffs/HEAD/tclap/MultiSwitchArg.h -------------------------------------------------------------------------------- /tclap/OptionalUnlabeledTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrr/mkspiffs/HEAD/tclap/OptionalUnlabeledTracker.h -------------------------------------------------------------------------------- /tclap/StandardTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrr/mkspiffs/HEAD/tclap/StandardTraits.h -------------------------------------------------------------------------------- /tclap/StdOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrr/mkspiffs/HEAD/tclap/StdOutput.h -------------------------------------------------------------------------------- /tclap/SwitchArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrr/mkspiffs/HEAD/tclap/SwitchArg.h -------------------------------------------------------------------------------- /tclap/UnlabeledMultiArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrr/mkspiffs/HEAD/tclap/UnlabeledMultiArg.h -------------------------------------------------------------------------------- /tclap/UnlabeledValueArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrr/mkspiffs/HEAD/tclap/UnlabeledValueArg.h -------------------------------------------------------------------------------- /tclap/ValueArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrr/mkspiffs/HEAD/tclap/ValueArg.h -------------------------------------------------------------------------------- /tclap/ValuesConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrr/mkspiffs/HEAD/tclap/ValuesConstraint.h -------------------------------------------------------------------------------- /tclap/VersionVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrr/mkspiffs/HEAD/tclap/VersionVisitor.h -------------------------------------------------------------------------------- /tclap/Visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrr/mkspiffs/HEAD/tclap/Visitor.h -------------------------------------------------------------------------------- /tclap/XorHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrr/mkspiffs/HEAD/tclap/XorHandler.h -------------------------------------------------------------------------------- /tclap/ZshCompletionOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrr/mkspiffs/HEAD/tclap/ZshCompletionOutput.h --------------------------------------------------------------------------------