Add more doc about the bootloader (sequence diagrams and degraded cases).

This commit is contained in:
JF
2020-08-10 16:36:29 +02:00
parent 3b20c29ab9
commit d8c2c9ad01
4 changed files with 95 additions and 2 deletions

View File

@@ -0,0 +1,21 @@
@startuml
MCU -> Bootloader: reset
activate Bootloader
Bootloader -> Bootloader: Recover? (no)
Bootloader -> Bootloader: New version? (yes)
Bootloader -> Bootloader: Swap firmwares
note left: Copy current firmware from primary to secondary\nand copy the new firmware from secondary to primary
Bootloader -> Application: Jump to primary slot
deactivate Bootloader
activate Application
note right: This is the new version of the firmware
Application -> Application: Write the valid bit in flash memory
note right: The application should provide a way to\ncheck that it is running correctly\n(selftest, user confirmation,...)\nbefore setting the valid bit.
Application -> Application: Normal operations...
Application -> MCU: Reset
deactivate Application
@enduml