├── .gitignore ├── LICENSE ├── README.md ├── boot_control_definition.h ├── bootloader_message.h └── main.c /.gitignore: -------------------------------------------------------------------------------- 1 | a.out 2 | misc.img 3 | .vscode -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F-19-F/abslot-tool/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F-19-F/abslot-tool/HEAD/README.md -------------------------------------------------------------------------------- /boot_control_definition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F-19-F/abslot-tool/HEAD/boot_control_definition.h -------------------------------------------------------------------------------- /bootloader_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F-19-F/abslot-tool/HEAD/bootloader_message.h -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F-19-F/abslot-tool/HEAD/main.c --------------------------------------------------------------------------------