Add README.
[gps-watch.git] / src / bootloader /
2020-01-08 Tilman Sauerbeckbootloader: Stay in bootloader when the middle left...
2020-01-06 Tilman Sauerbeckcommon: Move panic handler out of libcommon.
2020-01-05 Tilman Sauerbeckbuild: Use rustc to link the binaries instead of gcc.
2020-01-05 Tilman Sauerbeckbootloader: Mark jump_to_application() as noreturn.
2020-01-05 Tilman Sauerbeckbuild: Link libgcc from the command line instead of...
2020-01-05 Tilman Sauerbeckbuild: Don't link libraries we don't need.
2020-01-05 Tilman Sauerbeckbootloader: Never auto-start the application in the...
2020-01-05 Tilman Sauerbeckbootloader: Call clock::reset() before jumping to the...
2020-01-05 Tilman Sauerbeckbootloader: Disable the watchdog.
2020-01-05 Tilman Sauerbeckbootloader: Sanitize global interrupt handling.
2020-01-05 Tilman Sauerbeckbootloader: Use the same maximum size for both bootloaders.
2020-01-05 Tilman Sauerbeckbootloader: Reimplement flash::run_command() in C.
2020-01-05 Tilman Sauerbeckbootloader: Use distinct USB PIDs depending on location...
2020-01-05 Tilman Sauerbeckbootloader: Explicitly initialize the port module.
2020-01-05 Tilman Sauerbeckbootloader: Stop USB serial device before entering...
2020-01-05 Tilman Sauerbeckbootloader: Only attempt to jump to application if...
2020-01-05 Tilman Sauerbeckbootloader: Import bootloader-final.ld.
2020-01-05 Tilman Sauerbeckbootloader: Rename bootloader.ld to bootloader-intermed...
2020-01-05 Tilman Sauerbeckbootloader: Refuse to erase the second flash sector.
2020-01-05 Tilman Sauerbeckbootloader: Only begin serial communication if PTE24...
2020-01-05 Tilman Sauerbeckbootloader: configure PTE24 for push button use.
2020-01-05 Tilman Sauerbeckbootloader: Initialize systick on startup.
2020-01-05 Tilman Sauerbeckbootloader: Use USB VID 0xf055 and PID 0x635c.
2020-01-05 Tilman Sauerbeckcommon: Initialize the usb_serial module with an USB...
2020-01-05 Tilman Sauerbeckbootloader: Jump to application code after serial commu...
2020-01-05 Tilman Sauerbeckbootloader: Define application offset.
2020-01-05 Tilman Sauerbeckbootloader: Make run() function return a bool.
2020-01-05 Tilman Sauerbeckbootloader: Prepare implementation of COMMAND_START_APP.
2020-01-05 Tilman Sauerbeckbootloader: Call into the bootloader module from main().
2020-01-05 Tilman Sauerbeckbootloader: Add the bootloader module.
2019-12-30 Tilman Sauerbeckbootloader: Add the flash module.
2019-07-07 Tilman Sauerbeckbootloader: Initialize the usb_serial module on startup.
2019-07-07 Tilman Sauerbeckbootloader: Put the binary at offset 0x8000 in flash.
2019-07-07 Tilman Sauerbeckbootloader: Configure system and peripheral clocks.
2019-07-07 Tilman Sauerbeckbootloader: Fix address of SRAM in the target.
2019-07-07 Tilman Sauerbeckbootloader: Remove linker symbols __Vectors_Size and...
2019-07-07 Tilman Sauerbeckbootloader: Remove commented support for multiple ...
2019-07-07 Tilman Sauerbeckbuild: Add infrastructure for the bootloader program...