File tree Expand file tree Collapse file tree 4 files changed +12
-11
lines changed Expand file tree Collapse file tree 4 files changed +12
-11
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
5
5
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
6
6
7
- ## [ Unreleased ]
7
+ ## [ 0.23.2 ] - 2025-06-01
8
8
### Fixed
9
9
- Fixed SPI SCLK pin states for the ` ClockData::MsbPosIn ` and ` ClockData::LsbPosIn ` SPI modes.
10
10
@@ -198,7 +198,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
198
198
## [ 0.1.0] - 2020-09-12
199
199
- Initial release
200
200
201
- [ Unreleased ] : https://github.com/ftdi-rs/ftdi-embedded-hal/compare/v0.23.1...HEAD
201
+ [ Unreleased ] : https://github.com/ftdi-rs/ftdi-embedded-hal/compare/v0.23.2...HEAD
202
+ [ 0.23.2 ] : https://github.com/ftdi-rs/ftdi-embedded-hal/compare/v0.23.1...v0.23.2
202
203
[ 0.23.1 ] : https://github.com/ftdi-rs/ftdi-embedded-hal/compare/v0.23.0...v0.23.1
203
204
[ 0.23.0 ] : https://github.com/ftdi-rs/ftdi-embedded-hal/compare/v0.22.1...v0.23.0
204
205
[ 0.22.1 ] : https://github.com/ftdi-rs/ftdi-embedded-hal/compare/v0.22.0...v0.22.1
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " ftdi-embedded-hal"
3
- version = " 0.23.1 "
3
+ version = " 0.23.2 "
4
4
authors = [" Alex Martens <alex@thinglab.org>" ]
5
5
description = " embedded-hal implementation for FTDI USB devices."
6
6
keywords = [" ftdi" , " usb" , " io" , " hal" ]
Original file line number Diff line number Diff line change 5
5
# ftdi-embedded-hal
6
6
7
7
This is an [ embedded-hal] implementation for the FTDI chips
8
- that can use various drivers including [ libftd2xx] and [ ftdi-rs] .
8
+ that use the [ libftd2xx] or [ ftdi-rs] drivers .
9
9
10
10
This enables development of embedded device drivers without the use of
11
- a microcontroller. The FTDI devices interface with PC via USB, and
11
+ a microcontroller. The FTDI devices interface with a PC via USB, and
12
12
provide a multi-protocol synchronous serial engine to interface
13
- with most GPIO, SPI, I2C embedded devices.
13
+ with most GPIO, SPI, and I2C embedded devices.
14
14
15
15
** Note:**
16
16
This is strictly a development tool.
@@ -24,7 +24,7 @@ FTDI device into the [embedded-hal] traits.
24
24
25
25
``` toml
26
26
[dependencies .ftdi-embedded-hal ]
27
- version = " 0.23.1 "
27
+ version = " 0.23.2 "
28
28
features = [" libftd2xx" , " libftd2xx-static" ]
29
29
```
30
30
Original file line number Diff line number Diff line change 1
1
//! This is an [embedded-hal] implementation for the FTDI chips
2
- //! that can use various drivers including [libftd2xx] and [ftdi-rs].
2
+ //! that use the [libftd2xx] or [ftdi-rs] drivers .
3
3
//!
4
4
//! This enables development of embedded device drivers without the use of
5
- //! a microcontroller. The FTDI devices interface with PC via USB, and
5
+ //! a microcontroller. The FTDI devices interface with a PC via USB, and
6
6
//! provide a multi-protocol synchronous serial engine to interface
7
- //! with most GPIO, SPI, I2C embedded devices.
7
+ //! with most GPIO, SPI, and I2C embedded devices.
8
8
//!
9
9
//! **Note:**
10
10
//! This is strictly a development tool.
18
18
//!
19
19
//! ```toml
20
20
//! [dependencies.ftdi-embedded-hal]
21
- //! version = "0.23.1 "
21
+ //! version = "0.23.2 "
22
22
//! features = ["libftd2xx", "libftd2xx-static"]
23
23
//! ```
24
24
//!
You can’t perform that action at this time.
0 commit comments