├── .gitignore ├── CHANGELOG ├── README.md ├── examples ├── blinky │ ├── Makefile │ ├── blinky.c │ └── blinky.ld └── cdcacm │ ├── Makefile │ ├── cdcacm.c │ ├── cdcacm.ld │ └── cdcacm_test.py ├── scripts ├── black_magic_probe_flash.scr ├── dfu.py └── stm32_mem.py └── src ├── Makefile ├── luftboot.c └── luftboot.ld /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paparazzi/luftboot/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paparazzi/luftboot/HEAD/CHANGELOG -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paparazzi/luftboot/HEAD/README.md -------------------------------------------------------------------------------- /examples/blinky/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paparazzi/luftboot/HEAD/examples/blinky/Makefile -------------------------------------------------------------------------------- /examples/blinky/blinky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paparazzi/luftboot/HEAD/examples/blinky/blinky.c -------------------------------------------------------------------------------- /examples/blinky/blinky.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paparazzi/luftboot/HEAD/examples/blinky/blinky.ld -------------------------------------------------------------------------------- /examples/cdcacm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paparazzi/luftboot/HEAD/examples/cdcacm/Makefile -------------------------------------------------------------------------------- /examples/cdcacm/cdcacm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paparazzi/luftboot/HEAD/examples/cdcacm/cdcacm.c -------------------------------------------------------------------------------- /examples/cdcacm/cdcacm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paparazzi/luftboot/HEAD/examples/cdcacm/cdcacm.ld -------------------------------------------------------------------------------- /examples/cdcacm/cdcacm_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paparazzi/luftboot/HEAD/examples/cdcacm/cdcacm_test.py -------------------------------------------------------------------------------- /scripts/black_magic_probe_flash.scr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paparazzi/luftboot/HEAD/scripts/black_magic_probe_flash.scr -------------------------------------------------------------------------------- /scripts/dfu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paparazzi/luftboot/HEAD/scripts/dfu.py -------------------------------------------------------------------------------- /scripts/stm32_mem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paparazzi/luftboot/HEAD/scripts/stm32_mem.py -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paparazzi/luftboot/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/luftboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paparazzi/luftboot/HEAD/src/luftboot.c -------------------------------------------------------------------------------- /src/luftboot.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paparazzi/luftboot/HEAD/src/luftboot.ld --------------------------------------------------------------------------------