├── .gitignore ├── AUTHORS ├── Android.mk ├── HOWTO ├── I2C.txt ├── INSTALL ├── LICENSE ├── Makefile ├── Makefile.am ├── README.md ├── TODO ├── compiler.h ├── configure.ac ├── dev_table.c ├── gpl-2.0.txt ├── i2c.c ├── init.c ├── init.h ├── main.c ├── parsers ├── Android.mk ├── Makefile ├── Makefile.am ├── binary.c ├── binary.h ├── hex.c ├── hex.h └── parser.h ├── port.c ├── port.h ├── protocol.txt ├── serial.h ├── serial_common.c ├── serial_platform.c ├── serial_posix.c ├── serial_w32.c ├── stm32.c ├── stm32.h ├── stm32flash.1 ├── utils.c └── utils.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stm32duino/stm32flash/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stm32duino/stm32flash/HEAD/AUTHORS -------------------------------------------------------------------------------- /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stm32duino/stm32flash/HEAD/Android.mk -------------------------------------------------------------------------------- /HOWTO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stm32duino/stm32flash/HEAD/HOWTO -------------------------------------------------------------------------------- /I2C.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stm32duino/stm32flash/HEAD/I2C.txt -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stm32duino/stm32flash/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stm32duino/stm32flash/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stm32duino/stm32flash/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stm32duino/stm32flash/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stm32duino/stm32flash/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- 1 | 2 | AUTHORS: 3 | - Add contributors from Geoffrey's commits 4 | 5 | -------------------------------------------------------------------------------- /compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stm32duino/stm32flash/HEAD/compiler.h -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stm32duino/stm32flash/HEAD/configure.ac -------------------------------------------------------------------------------- /dev_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stm32duino/stm32flash/HEAD/dev_table.c -------------------------------------------------------------------------------- /gpl-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stm32duino/stm32flash/HEAD/gpl-2.0.txt -------------------------------------------------------------------------------- /i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stm32duino/stm32flash/HEAD/i2c.c -------------------------------------------------------------------------------- /init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stm32duino/stm32flash/HEAD/init.c -------------------------------------------------------------------------------- /init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stm32duino/stm32flash/HEAD/init.h -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stm32duino/stm32flash/HEAD/main.c -------------------------------------------------------------------------------- /parsers/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stm32duino/stm32flash/HEAD/parsers/Android.mk -------------------------------------------------------------------------------- /parsers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stm32duino/stm32flash/HEAD/parsers/Makefile -------------------------------------------------------------------------------- /parsers/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stm32duino/stm32flash/HEAD/parsers/Makefile.am -------------------------------------------------------------------------------- /parsers/binary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stm32duino/stm32flash/HEAD/parsers/binary.c -------------------------------------------------------------------------------- /parsers/binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stm32duino/stm32flash/HEAD/parsers/binary.h -------------------------------------------------------------------------------- /parsers/hex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stm32duino/stm32flash/HEAD/parsers/hex.c -------------------------------------------------------------------------------- /parsers/hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stm32duino/stm32flash/HEAD/parsers/hex.h -------------------------------------------------------------------------------- /parsers/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stm32duino/stm32flash/HEAD/parsers/parser.h -------------------------------------------------------------------------------- /port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stm32duino/stm32flash/HEAD/port.c -------------------------------------------------------------------------------- /port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stm32duino/stm32flash/HEAD/port.h -------------------------------------------------------------------------------- /protocol.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stm32duino/stm32flash/HEAD/protocol.txt -------------------------------------------------------------------------------- /serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stm32duino/stm32flash/HEAD/serial.h -------------------------------------------------------------------------------- /serial_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stm32duino/stm32flash/HEAD/serial_common.c -------------------------------------------------------------------------------- /serial_platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stm32duino/stm32flash/HEAD/serial_platform.c -------------------------------------------------------------------------------- /serial_posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stm32duino/stm32flash/HEAD/serial_posix.c -------------------------------------------------------------------------------- /serial_w32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stm32duino/stm32flash/HEAD/serial_w32.c -------------------------------------------------------------------------------- /stm32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stm32duino/stm32flash/HEAD/stm32.c -------------------------------------------------------------------------------- /stm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stm32duino/stm32flash/HEAD/stm32.h -------------------------------------------------------------------------------- /stm32flash.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stm32duino/stm32flash/HEAD/stm32flash.1 -------------------------------------------------------------------------------- /utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stm32duino/stm32flash/HEAD/utils.c -------------------------------------------------------------------------------- /utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stm32duino/stm32flash/HEAD/utils.h --------------------------------------------------------------------------------