From bfe309718b7fdd82ed53024f186ca5650b46dbb8 Mon Sep 17 00:00:00 2001 From: Faycal Kilali <53886202+faycalki@users.noreply.github.com> Date: Thu, 21 Aug 2025 17:08:31 -0400 Subject: [PATCH] Implement postboot procedure Implementation: postboot procedure for firmware flashing --- tcl/airsense-info.tcl | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/tcl/airsense-info.tcl b/tcl/airsense-info.tcl index e13abd4..4e9d61d 100644 --- a/tcl/airsense-info.tcl +++ b/tcl/airsense-info.tcl @@ -92,3 +92,13 @@ proc h {} { echo "\tp : print all values" echo "\th : show this help screen" } + +# ------------------------------------------------------------------ +# Faycal Kilalis Postboot fix + +proc postboot {} { + # resume execution at the reset vector + echo "Jumping to application…" + reset run +} +# ------------------------------------------------------------------