Skip to content

Commit 2ee48bc

Browse files
committed
Version 0.9.8
1 parent d6d1a80 commit 2ee48bc

File tree

3 files changed

+19
-5
lines changed

3 files changed

+19
-5
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,19 @@ All notable changes to OpenEMC will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
# 0.9.8 - 2024-10-12
8+
### Added
9+
- I2C: bus recovery
10+
- STUSB4500: verify received PDOs by obtaining them twice
11+
12+
# 0.9.7 - 2024-07-05
13+
### Added
14+
- Linux pstore support
15+
### Changed
16+
- STUSB4500: always perform register reset after pin reset
17+
- improve LED behavior
18+
- supply: derate reported currents by 100 mA
19+
720
# 0.9.6 - 2024-06-25
821
### Fixed
922
- supply: connect data lines in charge mode

openemc-firmware/Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

openemc-firmware/Cargo.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,14 @@ name = "openemc-firmware"
33
description = "OpenEMC Firmware"
44
authors = ["Sebastian Urban <surban@surban.net>"]
55
license = "GPL-3.0"
6-
version = "0.9.7"
6+
version = "0.9.8"
77
publish = false
88
edition = "2021"
99

1010
[features]
1111
default = ["defmt-rtt"]
1212
debug-blink = []
13+
debug-i2c2-glitch = []
1314

1415
[dependencies]
1516
openemc-shared = { path = "../openemc-shared" }
@@ -20,8 +21,8 @@ cortex-m-rt = { version = "0.7", features = ["device"] }
2021
cortex-m-rtic = "1.1"
2122
embedded-hal = "0.2"
2223
stm32f1 = { version = "0.15", features = ["stm32f103", "rt"] }
23-
#stm32f1xx-hal = { version = "0.10", features = ["stm32f103", "medium", "rt"] }
24-
stm32f1xx-hal = { git = "https://github.com/stm32-rs/stm32f1xx-hal.git", rev = "ab6de2ed907b0ec3c5e27deb85e03d8b9cd694ac", features = [
24+
# stm32f1xx-hal = { version = "0.10", features = ["stm32f103", "medium", "rt"] }
25+
stm32f1xx-hal = { git = "https://github.com/surban/stm32f1xx-hal.git", branch = "i2c-reset", features = [
2526
"stm32f103",
2627
"medium",
2728
"rt",

0 commit comments

Comments
 (0)