Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -586,14 +586,14 @@ User can add a STM32 based board following this [wiki](https://github.com/stm32d
| :green_heart: | STM32H503RB | Generic Board | *2.7.0* | |
| :green_heart: | STM32H562RGT | WeAct H562RGT | *2.9.0* | |
| :green_heart: | STM32H562RGT<br>STM32H562RIT | Generic Board | *2.9.0* | |
| :yellow_heart: | STM32H562RGV<br>STM32H562RIV | Generic Board | **2.13.0** | |
| :yellow_heart: | STM32H562RGV<br>STM32H562RIV | Generic Board | **3.0.0** | |
| :green_heart: | STM32H563IIKxQ | Generic Board | *2.6.0* | |
| :green_heart: | STM32H563RGT<br>STM32H563RIT | Generic Board | *2.8.1* | |
| :yellow_heart: | STM32H563RGV<br>STM32H563RIV | Generic Board | **2.13.0** | |
| :yellow_heart: | STM32H563RGV<br>STM32H563RIV | Generic Board | **3.0.0** | |
| :green_heart: | STM32H563ZG<br>STM32H563ZI | Generic Board | *2.6.0* | |
| :green_heart: | STM32H573IIKxQ | Generic Board | *2.6.0* | |
| :green_heart: | STM32H573RIT | Generic Board | *2.8.1* | |
| :yellow_heart: | STM32H573RIV | Generic Board | **2.13.0** | |
| :yellow_heart: | STM32H573RIV | Generic Board | **3.0.0** | |
| :green_heart: | STM32H573ZI | Generic Board | *2.6.0* | |

### Generic STM32H7 boards
Expand Down Expand Up @@ -878,7 +878,7 @@ User can add a STM32 based board following this [wiki](https://github.com/stm32d
| :----: | :-------: | ---- | :-----: | :---- |
| :green_heart: | STM32L4R5ZIYx | [Swan R5](https://blues.com/products/swan) | *2.1.0* | |
| :green_heart: | STM32L433CC | [Cygnet](https://blues.com/products) | *2.8.0* | |
| :yellow_heart: | STM32U575CITx | [Heron](https://blues.com/products) | **2.13.0** | |
| :yellow_heart: | STM32U575CITx | [Heron](https://blues.com/products) | **3.0.0** | |

### [Elecgator](https://www.elecgator.com/) boards

Expand Down
4 changes: 2 additions & 2 deletions libraries/SrcWrapper/inc/stm32_def.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
/**
* @brief STM32 core version number
*/
#define STM32_CORE_VERSION_MAJOR (0x02U) /*!< [31:24] major version */
#define STM32_CORE_VERSION_MINOR (0x0DU) /*!< [23:16] minor version */
#define STM32_CORE_VERSION_MAJOR (0x03U) /*!< [31:24] major version */
#define STM32_CORE_VERSION_MINOR (0x00U) /*!< [23:16] minor version */
#define STM32_CORE_VERSION_PATCH (0x00U) /*!< [15:8] patch version */
/*
* Extra label for development:
Expand Down
6 changes: 3 additions & 3 deletions platform.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# https://arduino.github.io/arduino-cli/latest/platform-specification/

name=STM32 boards groups (Board to be selected from Tools submenu 'Board part number')
version=2.13.0-dev
version=3.0.0-dev


# Define variables used multiple times in platform file
Expand All @@ -26,8 +26,8 @@ tools_bin_path.linux={runtime.tools.STM32Tools.path}/linux
core_stm32_dir={build.core.path}/stm32
api_dir={build.core.path}/api
hal_dir={build.system.path}/Drivers/{build.series}_HAL_Driver
cmsis_dir={runtime.tools.CMSIS-6.2.0.path}/CMSIS
cmsis_dsp={runtime.tools.CMSIS_DSP-1.16.2.path}
cmsis_dir={runtime.tools.CMSIS-6.3.0.path}/CMSIS
cmsis_dsp={runtime.tools.CMSIS_DSP-1.17.0.path}
cmsis_nn={runtime.tools.CMSIS_NN-7.0.0.path}
cmsis_dev_dir={build.system.path}/Drivers/CMSIS/Device/ST/{build.series}
usbd_core_dir={build.system.path}/Middlewares/ST/STM32_USB_Device_Library/Core
Expand Down
Loading