example(h563-uds-bootloader): enable H5 flash fidelity gates + RSA step budget#339
Merged
Conversation
…ep budget Turn on the opt-in error_flags + read_while_write fidelity gates for the H563 OTA bootloader example now that its firmware satisfies them (program-error checking, SRAM-resident flash routines). Bump max_steps to 15M so the RSA-2048 secure-boot image verification completes. Full OTA smoke passes 14/14 to APP-B v2 with the honest model.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Enables the opt-in STM32H5 FLASH fidelity gates (
error_flags,read_while_write) for theh563-uds-bootloaderexample, now that the example's firmware (in udslib) satisfies them — it checks program-error flags, clears them via NSCCR, and runs the erase/program routines from SRAM. With the gates on, the simulator refuses a misaligned program (INCERR) and a read-while-write erase of the running bank, so the example exercises the honest model rather than the forgiving default.Also bumps the smoke
max_stepsto 15M so the RSA-2048 secure-boot image verification completes.The full OTA smoke passes 14/14 to APP-B v2 with both gates enabled. (The firmware side — RSA secure boot, vendor LL drivers, etc. — is the companion udslib change w1ne/udslib#93; this PR only flips the example's simulator config.)