Skip to content

Commit

Permalink
Version 0.9.8
Browse files Browse the repository at this point in the history
  • Loading branch information
surban committed Oct 12, 2024
1 parent d6d1a80 commit 2ee48bc
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 5 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,19 @@ All notable changes to OpenEMC will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

# 0.9.8 - 2024-10-12
### Added
- I2C: bus recovery
- STUSB4500: verify received PDOs by obtaining them twice

# 0.9.7 - 2024-07-05
### Added
- Linux pstore support
### Changed
- STUSB4500: always perform register reset after pin reset
- improve LED behavior
- supply: derate reported currents by 100 mA

# 0.9.6 - 2024-06-25
### Fixed
- supply: connect data lines in charge mode
Expand Down
4 changes: 2 additions & 2 deletions openemc-firmware/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions openemc-firmware/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,14 @@ name = "openemc-firmware"
description = "OpenEMC Firmware"
authors = ["Sebastian Urban <[email protected]>"]
license = "GPL-3.0"
version = "0.9.7"
version = "0.9.8"
publish = false
edition = "2021"

[features]
default = ["defmt-rtt"]
debug-blink = []
debug-i2c2-glitch = []

[dependencies]
openemc-shared = { path = "../openemc-shared" }
Expand All @@ -20,8 +21,8 @@ cortex-m-rt = { version = "0.7", features = ["device"] }
cortex-m-rtic = "1.1"
embedded-hal = "0.2"
stm32f1 = { version = "0.15", features = ["stm32f103", "rt"] }
#stm32f1xx-hal = { version = "0.10", features = ["stm32f103", "medium", "rt"] }
stm32f1xx-hal = { git = "https://github.com/stm32-rs/stm32f1xx-hal.git", rev = "ab6de2ed907b0ec3c5e27deb85e03d8b9cd694ac", features = [
# stm32f1xx-hal = { version = "0.10", features = ["stm32f103", "medium", "rt"] }
stm32f1xx-hal = { git = "https://github.com/surban/stm32f1xx-hal.git", branch = "i2c-reset", features = [
"stm32f103",
"medium",
"rt",
Expand Down

0 comments on commit 2ee48bc

Please sign in to comment.