From 6f977746a677c57e6eb4855dc523c3f5a8136229 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 31 Aug 2026 13:10:39 +0000 Subject: [PATCH 1/2] Bump infra/hal/st from `403f38d` to `832130b` Bumps [infra/hal/st](https://github.com/embedded-pro/hal-st) from `403f38d` to `832130b`. - [Commits](https://github.com/embedded-pro/hal-st/compare/403f38de9b743b4e2ac970828252393805feff26...832130b076662c7c88ac82a40b94269edfa6dbaf) --- updated-dependencies: - dependency-name: infra/hal/st dependency-version: f5a07354f1e39fcf9404fb64efb57cfa97b28357 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- infra/hal/st | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infra/hal/st b/infra/hal/st index 403f38d..832130b 160000 --- a/infra/hal/st +++ b/infra/hal/st @@ -1 +1 @@ -Subproject commit 403f38de9b743b4e2ac970828252393805feff26 +Subproject commit 832130b076662c7c88ac82a40b94269edfa6dbaf From 9fb063f58c846530e84ba36b754e0ff65a3726d4 Mon Sep 17 00:00:00 2001 From: Gabriel Santos Date: Mon, 31 Aug 2026 14:00:43 +0000 Subject: [PATCH 2/2] fix: rename halst_target_default_init to halst_target_bringup MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The hal-st submodule bump (403f38d → 832130b) renamed halst_target_default_init() to halst_target_bringup() as part of the bringup/ restructure (#58). Update the call site to match. Co-Authored-By: Claude Sonnet 4.6 --- targets/blinky_cli/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/targets/blinky_cli/CMakeLists.txt b/targets/blinky_cli/CMakeLists.txt index 71eae87..653ac81 100644 --- a/targets/blinky_cli/CMakeLists.txt +++ b/targets/blinky_cli/CMakeLists.txt @@ -18,7 +18,7 @@ target_sources(embedded_scaffold.blinky_cli.main PRIVATE # The host build links as a normal executable. if(TARGET_MCU_VENDOR STREQUAL "st") halst_target_default_linker_scripts(embedded_scaffold.blinky_cli.main) - halst_target_default_init(embedded_scaffold.blinky_cli.main) + halst_target_bringup(embedded_scaffold.blinky_cli.main) emil_generate_artifacts(TARGET embedded_scaffold.blinky_cli.main LST MAP BIN HEX) elseif(TARGET_MCU_VENDOR STREQUAL "ti") hal_ti_target_default_linker_scripts(embedded_scaffold.blinky_cli.main)