├── .gitignore ├── LICENSE ├── Makefile ├── README ├── TODO ├── VERSION ├── argparse ├── argparse.c ├── argparse.h ├── argparse_binimagecmd.c ├── argparse_binimagecmd.h ├── argparse_commcmd.c ├── argparse_commcmd.h ├── argparse_elfcmd.c └── argparse_elfcmd.h ├── binimage ├── esptool_binimage.c └── esptool_binimage.h ├── elf ├── esptool_elf.c ├── esptool_elf.h ├── esptool_elf_enums.h ├── esptool_elf_object.c └── esptool_elf_object.h ├── espcomm ├── delay.c ├── delay.h ├── espcomm.c ├── espcomm.h ├── espcomm_boards.c └── espcomm_boards.h ├── infohelper ├── infohelper.c └── infohelper.h ├── local ├── Makefile.local.LINUX ├── Makefile.local.OSX └── Makefile.local.WINDOWS ├── main.c └── serialport ├── serialport.c └── serialport.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/esptool-ck/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/esptool-ck/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/esptool-ck/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/esptool-ck/HEAD/README -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/esptool-ck/HEAD/TODO -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.0.3 -------------------------------------------------------------------------------- /argparse/argparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/esptool-ck/HEAD/argparse/argparse.c -------------------------------------------------------------------------------- /argparse/argparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/esptool-ck/HEAD/argparse/argparse.h -------------------------------------------------------------------------------- /argparse/argparse_binimagecmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/esptool-ck/HEAD/argparse/argparse_binimagecmd.c -------------------------------------------------------------------------------- /argparse/argparse_binimagecmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/esptool-ck/HEAD/argparse/argparse_binimagecmd.h -------------------------------------------------------------------------------- /argparse/argparse_commcmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/esptool-ck/HEAD/argparse/argparse_commcmd.c -------------------------------------------------------------------------------- /argparse/argparse_commcmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/esptool-ck/HEAD/argparse/argparse_commcmd.h -------------------------------------------------------------------------------- /argparse/argparse_elfcmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/esptool-ck/HEAD/argparse/argparse_elfcmd.c -------------------------------------------------------------------------------- /argparse/argparse_elfcmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/esptool-ck/HEAD/argparse/argparse_elfcmd.h -------------------------------------------------------------------------------- /binimage/esptool_binimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/esptool-ck/HEAD/binimage/esptool_binimage.c -------------------------------------------------------------------------------- /binimage/esptool_binimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/esptool-ck/HEAD/binimage/esptool_binimage.h -------------------------------------------------------------------------------- /elf/esptool_elf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/esptool-ck/HEAD/elf/esptool_elf.c -------------------------------------------------------------------------------- /elf/esptool_elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/esptool-ck/HEAD/elf/esptool_elf.h -------------------------------------------------------------------------------- /elf/esptool_elf_enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/esptool-ck/HEAD/elf/esptool_elf_enums.h -------------------------------------------------------------------------------- /elf/esptool_elf_object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/esptool-ck/HEAD/elf/esptool_elf_object.c -------------------------------------------------------------------------------- /elf/esptool_elf_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/esptool-ck/HEAD/elf/esptool_elf_object.h -------------------------------------------------------------------------------- /espcomm/delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/esptool-ck/HEAD/espcomm/delay.c -------------------------------------------------------------------------------- /espcomm/delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/esptool-ck/HEAD/espcomm/delay.h -------------------------------------------------------------------------------- /espcomm/espcomm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/esptool-ck/HEAD/espcomm/espcomm.c -------------------------------------------------------------------------------- /espcomm/espcomm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/esptool-ck/HEAD/espcomm/espcomm.h -------------------------------------------------------------------------------- /espcomm/espcomm_boards.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/esptool-ck/HEAD/espcomm/espcomm_boards.c -------------------------------------------------------------------------------- /espcomm/espcomm_boards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/esptool-ck/HEAD/espcomm/espcomm_boards.h -------------------------------------------------------------------------------- /infohelper/infohelper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/esptool-ck/HEAD/infohelper/infohelper.c -------------------------------------------------------------------------------- /infohelper/infohelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/esptool-ck/HEAD/infohelper/infohelper.h -------------------------------------------------------------------------------- /local/Makefile.local.LINUX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/esptool-ck/HEAD/local/Makefile.local.LINUX -------------------------------------------------------------------------------- /local/Makefile.local.OSX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/esptool-ck/HEAD/local/Makefile.local.OSX -------------------------------------------------------------------------------- /local/Makefile.local.WINDOWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/esptool-ck/HEAD/local/Makefile.local.WINDOWS -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/esptool-ck/HEAD/main.c -------------------------------------------------------------------------------- /serialport/serialport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/esptool-ck/HEAD/serialport/serialport.c -------------------------------------------------------------------------------- /serialport/serialport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommie/esptool-ck/HEAD/serialport/serialport.h --------------------------------------------------------------------------------