From 6eb42e394d96e4e884eebae7668a584ffe0b3503 Mon Sep 17 00:00:00 2001 From: Valerii Koval Date: Fri, 3 Nov 2023 18:24:25 +0200 Subject: [PATCH 1/5] Update Zephyr to v3.5.0 --- platform.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform.json b/platform.json index f4a3cdaf..a9cf14a2 100644 --- a/platform.json +++ b/platform.json @@ -298,7 +298,7 @@ "type": "framework", "optional": true, "owner": "platformio", - "version": "~2.30400.0" + "version": "~2.30500.0" }, "tool-stm32duino": { "type": "uploader", From a2d15c06f7759a48d5cf17a1e0312ddaf6231576 Mon Sep 17 00:00:00 2001 From: Valerii Koval Date: Wed, 8 Nov 2023 12:43:30 +0200 Subject: [PATCH 2/5] Add missing macro for LoRa E5 Dev Board Resolves #738 --- boards/lora_e5_dev_board.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boards/lora_e5_dev_board.json b/boards/lora_e5_dev_board.json index 1f0e4aca..92b6cc2b 100644 --- a/boards/lora_e5_dev_board.json +++ b/boards/lora_e5_dev_board.json @@ -8,7 +8,7 @@ "extra_flags": "-DSTM32WLxx -DSTM32WLE5xx", "f_cpu": "48000000L", "framework_extra_flags": { - "arduino": "-DUSE_CM4_STARTUP_FILE" + "arduino": "-DUSE_CM4_STARTUP_FILE -DARDUINO_GENERIC_WLE5JCIX" }, "mcu": "stm32wle5jc", "product_line": "STM32WLE5xx", From 91d444f9772e3ece070fcb5753dcfb0f0111b1b6 Mon Sep 17 00:00:00 2001 From: daniel-starke Date: Tue, 28 Nov 2023 14:02:22 +0100 Subject: [PATCH 3/5] Add Mbed support for NUCELO_H723ZG. (#740) Mbed has added support for NUCELO_H723ZG with version 6.17.0. This has already been added to platformio with version 16.1.0 as default Mbed version. Make this Mbed support for this board also available in platformio. Signed-off-by: Daniel Starke --- boards/nucleo_h723zg.json | 1 + 1 file changed, 1 insertion(+) diff --git a/boards/nucleo_h723zg.json b/boards/nucleo_h723zg.json index c9a8e656..ef714850 100644 --- a/boards/nucleo_h723zg.json +++ b/boards/nucleo_h723zg.json @@ -26,6 +26,7 @@ "frameworks": [ "arduino", "stm32cube", + "mbed", "zephyr" ], "name": "ST Nucleo H723ZG", From 443c2e5b5fd82c16f9961fec5e5b041af54fcca1 Mon Sep 17 00:00:00 2001 From: valeros Date: Wed, 29 Nov 2023 16:11:22 +0200 Subject: [PATCH 4/5] Remove obsolete warning about linker script settings Resolves #745 --- builder/main.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/builder/main.py b/builder/main.py index f5c17dbc..8df00252 100644 --- a/builder/main.py +++ b/builder/main.py @@ -347,14 +347,6 @@ def __configure_upload_port(env): AlwaysBuild(env.Alias("upload", upload_source, upload_actions)) -# -# Information about obsolete method of specifying linker scripts -# - -if any("-Wl,-T" in f for f in env.get("LINKFLAGS", [])): - print("Warning! '-Wl,-T' option for specifying linker scripts is deprecated. " - "Please use 'board_build.ldscript' option in your 'platformio.ini' file.") - # # Default targets # From 6df0d056e0994a78825f5b1373b4f8e788886d38 Mon Sep 17 00:00:00 2001 From: valeros Date: Thu, 30 Nov 2023 12:30:38 +0200 Subject: [PATCH 5/5] Bump version to 17.1.0 --- platform.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform.json b/platform.json index a9cf14a2..6fdf1e5e 100644 --- a/platform.json +++ b/platform.json @@ -18,7 +18,7 @@ "type": "git", "url": "https://github.com/platformio/platform-ststm32.git" }, - "version": "17.0.0", + "version": "17.1.0", "frameworks": { "mbed": { "package": "framework-mbed",