├── .clang-format ├── .gitignore ├── .vscode ├── c_cpp_properties.json ├── settings.json └── tasks.json ├── LICENSE ├── Makefile ├── README.md ├── sd_card ├── atmosphere │ └── contents │ │ └── 420000000000000E │ │ └── toolbox.json └── config │ └── sys-ftpd │ └── config.ini ├── source ├── console.c ├── console.h ├── ftp.c ├── ftp.h ├── led.c ├── led.h ├── main.c ├── minIni.c ├── minIni.h ├── minIni │ ├── minGlue-FatFs.h │ ├── minGlue-ccs.h │ ├── minGlue-efsl.h │ ├── minGlue-ffs.h │ ├── minGlue-mdd.h │ ├── minGlue-stdio.h │ ├── minGlue.h │ └── wxMinIni.h ├── util.c └── util.h └── sys-ftpd.json /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cathery/sys-ftpd/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cathery/sys-ftpd/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cathery/sys-ftpd/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cathery/sys-ftpd/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cathery/sys-ftpd/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cathery/sys-ftpd/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cathery/sys-ftpd/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cathery/sys-ftpd/HEAD/README.md -------------------------------------------------------------------------------- /sd_card/atmosphere/contents/420000000000000E/toolbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cathery/sys-ftpd/HEAD/sd_card/atmosphere/contents/420000000000000E/toolbox.json -------------------------------------------------------------------------------- /sd_card/config/sys-ftpd/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cathery/sys-ftpd/HEAD/sd_card/config/sys-ftpd/config.ini -------------------------------------------------------------------------------- /source/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cathery/sys-ftpd/HEAD/source/console.c -------------------------------------------------------------------------------- /source/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cathery/sys-ftpd/HEAD/source/console.h -------------------------------------------------------------------------------- /source/ftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cathery/sys-ftpd/HEAD/source/ftp.c -------------------------------------------------------------------------------- /source/ftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cathery/sys-ftpd/HEAD/source/ftp.h -------------------------------------------------------------------------------- /source/led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cathery/sys-ftpd/HEAD/source/led.c -------------------------------------------------------------------------------- /source/led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cathery/sys-ftpd/HEAD/source/led.h -------------------------------------------------------------------------------- /source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cathery/sys-ftpd/HEAD/source/main.c -------------------------------------------------------------------------------- /source/minIni.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cathery/sys-ftpd/HEAD/source/minIni.c -------------------------------------------------------------------------------- /source/minIni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cathery/sys-ftpd/HEAD/source/minIni.h -------------------------------------------------------------------------------- /source/minIni/minGlue-FatFs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cathery/sys-ftpd/HEAD/source/minIni/minGlue-FatFs.h -------------------------------------------------------------------------------- /source/minIni/minGlue-ccs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cathery/sys-ftpd/HEAD/source/minIni/minGlue-ccs.h -------------------------------------------------------------------------------- /source/minIni/minGlue-efsl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cathery/sys-ftpd/HEAD/source/minIni/minGlue-efsl.h -------------------------------------------------------------------------------- /source/minIni/minGlue-ffs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cathery/sys-ftpd/HEAD/source/minIni/minGlue-ffs.h -------------------------------------------------------------------------------- /source/minIni/minGlue-mdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cathery/sys-ftpd/HEAD/source/minIni/minGlue-mdd.h -------------------------------------------------------------------------------- /source/minIni/minGlue-stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cathery/sys-ftpd/HEAD/source/minIni/minGlue-stdio.h -------------------------------------------------------------------------------- /source/minIni/minGlue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cathery/sys-ftpd/HEAD/source/minIni/minGlue.h -------------------------------------------------------------------------------- /source/minIni/wxMinIni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cathery/sys-ftpd/HEAD/source/minIni/wxMinIni.h -------------------------------------------------------------------------------- /source/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cathery/sys-ftpd/HEAD/source/util.c -------------------------------------------------------------------------------- /source/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cathery/sys-ftpd/HEAD/source/util.h -------------------------------------------------------------------------------- /sys-ftpd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cathery/sys-ftpd/HEAD/sys-ftpd.json --------------------------------------------------------------------------------