This is an automated email from the ASF dual-hosted git repository. xiaoxiang781216 pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/nuttx-ntfc.git
commit 0425facf69ef1d15f8724fa5ff41fec69a0001ff Author: raiden00pl <[email protected]> AuthorDate: Thu May 14 13:53:33 2026 +0200 multi.py: flash cores from manifest try to flash cores from manifest file. So far we have only build images which made sense only for host simulations, when we use real HW we have to flash the image Signed-off-by: raiden00pl <[email protected]> --- src/ntfc/multi.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ntfc/multi.py b/src/ntfc/multi.py index 69f68ad..52f9c6c 100644 --- a/src/ntfc/multi.py +++ b/src/ntfc/multi.py @@ -466,6 +466,7 @@ class MultiSessionRunner: if builder.need_build(): try: builder.build_all() + builder.flash_all() except Exception as e: logger.error( f"[Multi] Build failed for session "
