├── Makefile ├── README.md ├── balong_flash.c ├── flasher.c ├── flasher.h ├── hdlcio.h ├── hdlcio_linux.c ├── hdlcio_win32.c ├── lzma ├── 7zTypes.h ├── Alloc.c ├── Alloc.h ├── Compiler.h ├── LzmaDec.c ├── LzmaDec.h └── Precomp.h ├── ptable.c ├── ptable.h ├── signver.c ├── signver.h ├── util.c ├── util.h └── winbuild ├── Release └── balong_flash.exe ├── balong_flash.sln ├── balong_flash ├── balong_flash.vcxproj ├── balong_flash.vcxproj.filters ├── getopt.c ├── getopt.h └── printf.h └── zlib ├── adler32.c ├── crc32.c ├── crc32.h ├── deflate.h ├── gzguts.h ├── inffast.c ├── inffast.h ├── inffixed.h ├── inflate.c ├── inflate.h ├── inftrees.c ├── inftrees.h ├── trees.c ├── trees.h ├── uncompr.c ├── zconf.h ├── zlib.h ├── zutil.c └── zutil.h /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forth32/balongflash/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forth32/balongflash/HEAD/README.md -------------------------------------------------------------------------------- /balong_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forth32/balongflash/HEAD/balong_flash.c -------------------------------------------------------------------------------- /flasher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forth32/balongflash/HEAD/flasher.c -------------------------------------------------------------------------------- /flasher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forth32/balongflash/HEAD/flasher.h -------------------------------------------------------------------------------- /hdlcio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forth32/balongflash/HEAD/hdlcio.h -------------------------------------------------------------------------------- /hdlcio_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forth32/balongflash/HEAD/hdlcio_linux.c -------------------------------------------------------------------------------- /hdlcio_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forth32/balongflash/HEAD/hdlcio_win32.c -------------------------------------------------------------------------------- /lzma/7zTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forth32/balongflash/HEAD/lzma/7zTypes.h -------------------------------------------------------------------------------- /lzma/Alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forth32/balongflash/HEAD/lzma/Alloc.c -------------------------------------------------------------------------------- /lzma/Alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forth32/balongflash/HEAD/lzma/Alloc.h -------------------------------------------------------------------------------- /lzma/Compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forth32/balongflash/HEAD/lzma/Compiler.h -------------------------------------------------------------------------------- /lzma/LzmaDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forth32/balongflash/HEAD/lzma/LzmaDec.c -------------------------------------------------------------------------------- /lzma/LzmaDec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forth32/balongflash/HEAD/lzma/LzmaDec.h -------------------------------------------------------------------------------- /lzma/Precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forth32/balongflash/HEAD/lzma/Precomp.h -------------------------------------------------------------------------------- /ptable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forth32/balongflash/HEAD/ptable.c -------------------------------------------------------------------------------- /ptable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forth32/balongflash/HEAD/ptable.h -------------------------------------------------------------------------------- /signver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forth32/balongflash/HEAD/signver.c -------------------------------------------------------------------------------- /signver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forth32/balongflash/HEAD/signver.h -------------------------------------------------------------------------------- /util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forth32/balongflash/HEAD/util.c -------------------------------------------------------------------------------- /util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forth32/balongflash/HEAD/util.h -------------------------------------------------------------------------------- /winbuild/Release/balong_flash.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forth32/balongflash/HEAD/winbuild/Release/balong_flash.exe -------------------------------------------------------------------------------- /winbuild/balong_flash.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forth32/balongflash/HEAD/winbuild/balong_flash.sln -------------------------------------------------------------------------------- /winbuild/balong_flash/balong_flash.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forth32/balongflash/HEAD/winbuild/balong_flash/balong_flash.vcxproj -------------------------------------------------------------------------------- /winbuild/balong_flash/balong_flash.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forth32/balongflash/HEAD/winbuild/balong_flash/balong_flash.vcxproj.filters -------------------------------------------------------------------------------- /winbuild/balong_flash/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forth32/balongflash/HEAD/winbuild/balong_flash/getopt.c -------------------------------------------------------------------------------- /winbuild/balong_flash/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forth32/balongflash/HEAD/winbuild/balong_flash/getopt.h -------------------------------------------------------------------------------- /winbuild/balong_flash/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forth32/balongflash/HEAD/winbuild/balong_flash/printf.h -------------------------------------------------------------------------------- /winbuild/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forth32/balongflash/HEAD/winbuild/zlib/adler32.c -------------------------------------------------------------------------------- /winbuild/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forth32/balongflash/HEAD/winbuild/zlib/crc32.c -------------------------------------------------------------------------------- /winbuild/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forth32/balongflash/HEAD/winbuild/zlib/crc32.h -------------------------------------------------------------------------------- /winbuild/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forth32/balongflash/HEAD/winbuild/zlib/deflate.h -------------------------------------------------------------------------------- /winbuild/zlib/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forth32/balongflash/HEAD/winbuild/zlib/gzguts.h -------------------------------------------------------------------------------- /winbuild/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forth32/balongflash/HEAD/winbuild/zlib/inffast.c -------------------------------------------------------------------------------- /winbuild/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forth32/balongflash/HEAD/winbuild/zlib/inffast.h -------------------------------------------------------------------------------- /winbuild/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forth32/balongflash/HEAD/winbuild/zlib/inffixed.h -------------------------------------------------------------------------------- /winbuild/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forth32/balongflash/HEAD/winbuild/zlib/inflate.c -------------------------------------------------------------------------------- /winbuild/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forth32/balongflash/HEAD/winbuild/zlib/inflate.h -------------------------------------------------------------------------------- /winbuild/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forth32/balongflash/HEAD/winbuild/zlib/inftrees.c -------------------------------------------------------------------------------- /winbuild/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forth32/balongflash/HEAD/winbuild/zlib/inftrees.h -------------------------------------------------------------------------------- /winbuild/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forth32/balongflash/HEAD/winbuild/zlib/trees.c -------------------------------------------------------------------------------- /winbuild/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forth32/balongflash/HEAD/winbuild/zlib/trees.h -------------------------------------------------------------------------------- /winbuild/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forth32/balongflash/HEAD/winbuild/zlib/uncompr.c -------------------------------------------------------------------------------- /winbuild/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forth32/balongflash/HEAD/winbuild/zlib/zconf.h -------------------------------------------------------------------------------- /winbuild/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forth32/balongflash/HEAD/winbuild/zlib/zlib.h -------------------------------------------------------------------------------- /winbuild/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forth32/balongflash/HEAD/winbuild/zlib/zutil.c -------------------------------------------------------------------------------- /winbuild/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forth32/balongflash/HEAD/winbuild/zlib/zutil.h --------------------------------------------------------------------------------