Skip to content

Commit

Permalink
Merge pull request #174 from mcci-catena/issue173
Browse files Browse the repository at this point in the history
Fix #173: this is v3.0.2
  • Loading branch information
terrillmoore authored May 24, 2021
2 parents 5afd36b + f716c0b commit 659445b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This repository is MCCI's version of [Arduino_Core_STM32](https://github.com/stm

For general information, please check the stm32duino [README.md](https://github.com/stm32duino/Arduino_Core_STM32#arduino-core-support-for-stm32-based-boards), especially the [Getting Started](https://github.com/stm32duino/Arduino_Core_STM32#getting-started) section.

[![GitHub release](https://img.shields.io/github/release/mcci-catena/Arduino_Core_STM32.svg)](https://github.com/mcci-catena/Arduino_Core_STM32/releases/latest) [![GitHub commits](https://img.shields.io/github/commits-since/mcci-catena/Arduino_Core_STM32/latest.svg)](https://github.com/mcci-catena/Arduino_Core_STM32/compare/v3.0.1...master)
[![GitHub release](https://img.shields.io/github/release/mcci-catena/Arduino_Core_STM32.svg)](https://github.com/mcci-catena/Arduino_Core_STM32/releases/latest) [![GitHub commits](https://img.shields.io/github/commits-since/mcci-catena/Arduino_Core_STM32/latest.svg)](https://github.com/mcci-catena/Arduino_Core_STM32/compare/v3.0.2...master)

**Contents:**
<!-- markdownlint-disable MD033 -->
Expand Down Expand Up @@ -156,6 +156,8 @@ Remember to restart the IDE whenever you change `platform.txt`, `boards.txt` or

## Release History

- [v3.0.2](https://github.com/mcci-catena/Arduino_Core_STM32/releases/tag/v3.0.2) Patch release. Update `mccibootloader_image` tool to v0.4.0 ([#171](https://github.com/mcci-catena/Arduino_Core_STM32/issues/171)) to fix problem with ELF files with unusual number of program headers.

- [v3.0.1](https://github.com/mcci-catena/Arduino_Core_STM32/releases/tag/v3.0.1) Patch release. Make "download with bootloader" the default choice in the IDE ([#158](https://github.com/mcci-catena/Arduino_Core_STM32/issues/158)). Windows "download with bootloader was broken for DFU ([#164](https://github.com/mcci-catena/Arduino_Core_STM32/issues/164)) and STLink ([#167](https://github.com/mcci-catena/Arduino_Core_STM32/issues/167)).

- [v3.0.0](https://github.com/mcci-catena/Arduino_Core_STM32/releases/tag/v3.0.0) Switch to true semantic versioning [#150](https://github.com/mcci-catena/Arduino_Core_STM32/issues/150). Add support for MCCI trusted bootloader [#148](https://github.com/mcci-catena/Arduino_Core_STM32/issues/148), [#149](https://github.com/mcci-catena/Arduino_Core_STM32/issues/149), [#151](https://github.com/mcci-catena/Arduino_Core_STM32/issues/151), [#153](https://github.com/mcci-catena/Arduino_Core_STM32/issues/153). Enable interrupts on entry to reset vector for consistency with ST bootloader.
Expand Down
2 changes: 1 addition & 1 deletion cores/arduino/Arduino.h
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
/// \ref _mcci_arduino_version_calc() to compare relative versions.
///
#define _mcci_arduino_version \
_mcci_arduino_version_calc(3, 0, 1, 0) /* v3.0.1 */
_mcci_arduino_version_calc(3, 0, 2, 0) /* v3.0.2 */

///
/// \brief get major version code from semantic version value
Expand Down
2 changes: 1 addition & 1 deletion platform.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# https://github.com/arduino/Arduino/wiki/Arduino-IDE-1.5-3rd-party-Hardware-specification

name=MCCI Catena STM32 Boards
version=3.0.1
version=3.0.2

# STM compile variables
# ----------------------
Expand Down

0 comments on commit 659445b

Please sign in to comment.