Skip to content

Commit

Permalink
This is version v3.1.0-1
Browse files Browse the repository at this point in the history
  • Loading branch information
dhineshkumarmcci committed May 25, 2023
1 parent 5feb233 commit 063a8e9
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 2 deletions.
22 changes: 22 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ For general information, please check the stm32duino [README.md](https://github.
- [Sensors on Catena 4612, 4617, and 4618](#sensors-on-catena-4612-4617-and-4618)
- [Catena 4630 Features](#catena-4630-features)
- [Catena 480x Features](#catena-480x-features)
- [Model 4917 Features](#model-4917-features)
- [Troubleshooting](#troubleshooting)
- [Installing a Development Copy of this BSP](#installing-a-development-copy-of-this-bsp)
- [Release History](#release-history)
Expand Down Expand Up @@ -60,6 +61,7 @@ The Arduino IDE allows you to select the following items.
| MCCI Catena 4630 | Murata CMWX1ZZABZ module, STM32L082 | [4630](#catena-4630-features) | LiPo battery,ZMOD4410, PMS7003 |
| MCCI Catena 4801 | Murata CMWX1ZZABZ module, STM32L082 | [480x](#catena-480x-features) | Primary battery, Modbus |
| MCCI Catena 4802 | Murata CMWX1ZZABZ module, STM32L082 | [480x](#catena-480x-features) | Primary battery, Modbus, SHT31-DIS-F, I2C Expander |
| MCCI Model 4917 | Murata CMWX1ZZABZ module, STM32L082 | [4917](#model-4917-features) | Primary battery, JST-XH for OneWire sensor |

### Catena 461x Series

Expand Down Expand Up @@ -122,6 +124,24 @@ The 480x is a dedicated board for remote Modbus applications, using the Murata m
| Sensors | none | SHT31 |
| External interfaces | Modbus, TTL serial | Modbus, TTL serial, I2C Expander |

### Model 4917 Features

The 4917 is a dedicated board designed for temperature monitoring using onewire probe.

| Feature | 4917 |
|---------|------|
| TCXO Control | Controlled by code |
| Battery type | Primary (non-rechargeable) reference is 2x AAA cells |
| System voltage | 2.2V to 3.3V, depending on whether boost regulator is enabled. |
| Regulator control | EN output from CPU controls boost regulator. |
| High-side switch for power for external sensors | No |
| Screw terminals for external sensors | None |
| JST-XH for external sensors | Yes |
| Feather physical compatibility | No |
| USB | Yes, DFU download, runtime data |
| Sensors | None |
| External interfaces | TTL Serial |

## Troubleshooting

If you have any issue, you may [file an issue on GitHub](https://github.com/mcci-catena/Arduino_Core_STM32/issues/new). You may also submit a support request on the [MCCI support forum](http://portal.mcci.com).
Expand Down Expand Up @@ -156,6 +176,8 @@ Remember to restart the IDE whenever you change `platform.txt`, `boards.txt` or

## Release History

- [HEAD](https://github.com/mcci-catena/Arduino_Core_STM32/). Added support for new board Model 4917.

- [v3.0.5](https://github.com/mcci-catena/Arduino_Core_STM32/releases/tag/v3.0.5) Patch release. Don't use `<algorithm>` to implement `min()` and `max()` ([#184](https://github.com/mcci-catena/Arduino_Core_STM32/issues/184)). Prevent hangs if USB is enabled but D+/D- float to high/high ([#189](https://github.com/mcci-catena/Arduino_Core_STM32/issues/189), [#190](https://github.com/mcci-catena/Arduino_Core_STM32/issues/190)) -- thanks to Mohammed Mayyan ([@mmayyan](https://github.com/mhmayyan)) for help in finding this.

- [v3.0.4](https://github.com/mcci-catena/Arduino_Core_STM32/releases/tag/v3.0.4) Patch release. Fix typo in `tools/linux/stm32l0-upload` that broke DFU on Linux.
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, 5, 0) /* v3.0.5 */
_mcci_arduino_version_calc(3, 1, 0, 1) /* v3.1.0-1 */

///
/// \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.5
version=3.1.0

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

0 comments on commit 063a8e9

Please sign in to comment.