Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

I2s rework #490

Merged
merged 1 commit into from
Jun 30, 2022
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
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

### Changed
- use `stm32_i2s_v12x` version 0.3, reexport it, and implements requirement for it
- i2s module don't reuse marker from spi module and define its own.
- `i2s-audio-out` example updated and now use pcm5102 dac module instead one from discovery board.
- extend visibility of gpio/marker to crate since i2s module require it.

### Added
- example of using i2s in out with rtic and interrupt.

### Removed
- `i2s-audio-out-dma.rs` example, too difficult to fix.

## [v0.13.2] - 2022-05-16

### Fixed
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ version = "=1.0.0-alpha.7"
package = "embedded-hal"

[dependencies.stm32_i2s_v12x]
version = "0.2.0"
version = "0.3.0"
optional = true

[dev-dependencies]
Expand Down Expand Up @@ -419,8 +419,8 @@ name = "i2s-audio-out"
required-features = ["stm32f411", "i2s"]

[[example]]
name = "i2s-audio-out-dma"
required-features = ["stm32f411", "i2s"]
name = "i2s-rtic-audio-in-out"
required-features = ["stm32f411", "i2s", "rtic"]

[[example]]
name = "rtic"
Expand Down
243 changes: 0 additions & 243 deletions examples/i2s-audio-out-dma.rs

This file was deleted.

Loading