From 0c9cc7328ccc92a0867dba7bc7a58cdaaa93e266 Mon Sep 17 00:00:00 2001 From: Frederic Pillon Date: Thu, 11 Jan 2024 15:33:40 +0100 Subject: [PATCH] ci(stm32cube): update BLE path Signed-off-by: Frederic Pillon --- CI/update/stm32cube.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CI/update/stm32cube.py b/CI/update/stm32cube.py index ae7023efb9..e9c87edcd2 100644 --- a/CI/update/stm32cube.py +++ b/CI/update/stm32cube.py @@ -688,7 +688,7 @@ def updateBleRepo(): def applyBlePatch(): print(" Applying patches to ble library") - BLE_patch_path = repo_local_path / repo_ble_name / "extras" / "STM32Cube_FW" + BLE_patch_path = repo_local_path / repo_ble_name / "extras" / "STM32_WPAN" patch_list = [] if BLE_patch_path.is_dir(): @@ -755,10 +755,10 @@ def updateBleLibrary(): else: cube_name = f"{repo_generic_name}WB" cube_path = repo_local_path / cube_name - ble_path = repo_local_path / repo_ble_name / "src" / "utility" / "STM32Cube_FW" + ble_path = repo_local_path / repo_ble_name / "src" / "utility" / "STM32_WPAN" cube_version = cube_versions["WB"] - ble_commit_msg = f"chore: update STM32Cube_FW from Cube version {cube_version}" + ble_commit_msg = f"chore: update STM32_WPAN from Cube version {cube_version}" for file in ble_file_list: file_path = Path(cube_path / file)