Skip to content

Commit 152d442

Browse files
authored
Add support for embedded-hal 1.0.0-alpha.8
1 parent 616a369 commit 152d442

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+1411
-1265
lines changed

.cargo/config.toml

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
[alias]
2-
test-all = "test --features std,log,embedded-hal,time,chrono,num-rational,w5500-tls"
2+
test-all = "test --features std,log,eh0,eh1,time,chrono,num-rational,w5500-tls"
33
test-dhcp = "test -p w5500-dhcp --features log,std"
4-
test-ll = "test -p w5500-ll --features embedded-hal,std"
4+
test-ll = "test -p w5500-ll --features eh0,eh1,std"
5+
test-hl = "test -p w5500-hl --features eh0,eh1,std"
56
test-mqtt = "test -p w5500-mqtt --features log,std,w5500-tls"
67
test-regsim = "test -p w5500-regsim"
7-
test-sntp = "test -p w5500-sntp --features std,log,embedded-hal,time,chrono,num-rational"
8+
test-sntp = "test -p w5500-sntp --features std,log,eh0,eh1,time,chrono,num-rational"
89
test-tls = "test -p w5500-tls --features log,std"

.github/workflows/ci.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,13 @@ jobs:
4949
- run: cargo build --target ${{ matrix.target }} -p w5500-dns --features defmt
5050
- run: cargo build --target ${{ matrix.target }} -p w5500-mqtt --features defmt
5151
- run: cargo build --target ${{ matrix.target }} -p w5500-tls --features defmt
52-
- run: cargo build --target ${{ matrix.target }} -p w5500-ll --features embedded-hal
53-
- run: cargo build --target ${{ matrix.target }} -p w5500-hl --features embedded-hal
54-
- run: cargo build --target ${{ matrix.target }} -p w5500-dhcp --features embedded-hal
55-
- run: cargo build --target ${{ matrix.target }} -p w5500-dns --features embedded-hal
56-
- run: cargo build --target ${{ matrix.target }} -p w5500-mqtt --features embedded-hal
57-
- run: cargo build --target ${{ matrix.target }} -p w5500-sntp --features embedded-hal
58-
- run: cargo build --target ${{ matrix.target }} -p w5500-tls --features embedded-hal
52+
- run: cargo build --target ${{ matrix.target }} -p w5500-ll --features eh0,eh1
53+
- run: cargo build --target ${{ matrix.target }} -p w5500-hl --features eh0,eh1
54+
- run: cargo build --target ${{ matrix.target }} -p w5500-dhcp --features eh0,eh1
55+
- run: cargo build --target ${{ matrix.target }} -p w5500-dns --features eh0,eh1
56+
- run: cargo build --target ${{ matrix.target }} -p w5500-mqtt --features eh0,eh1
57+
- run: cargo build --target ${{ matrix.target }} -p w5500-sntp --features eh0,eh1
58+
- run: cargo build --target ${{ matrix.target }} -p w5500-tls --features eh0,eh1
5959
- run: cargo build --target ${{ matrix.target }} -p w5500-dhcp --features log
6060
- run: cargo build --target ${{ matrix.target }} -p w5500-dns --features log
6161
- run: cargo build --target ${{ matrix.target }} -p w5500-mqtt --features log

dhcp/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ All notable changes to this project 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+
## [Unreleased]
8+
### Added
9+
- Added support for `embedded-hal` version `1.0.0-alpha.8` with the `eh1` feature.
10+
11+
### Changed
12+
- Changed the name of the `embedded-hal` feature to `eh0`.
13+
714
## [0.4.2] - 2022-07-14
815
### Fixed
916
- Fixed compilation with the `"defmt"` feature.

dhcp/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ categories = ["embedded", "hardware-support", "no-std"]
1212
homepage = "https://github.com/newAM/w5500-rs"
1313

1414
[features]
15-
embedded-hal = ["w5500-hl/embedded-hal"]
15+
eh0 = ["w5500-hl/eh0"]
16+
eh1 = ["w5500-hl/eh1"]
1617
defmt = ["w5500-hl/defmt", "dep:defmt"]
1718
std = ["w5500-hl/std"]
1819

@@ -29,6 +30,5 @@ w5500-hl = { path = "../hl", features = ["std"] }
2930
w5500-regsim.path = "../regsim"
3031

3132
[package.metadata.docs.rs]
32-
all-features = false
33-
features = ["log", "std", "embedded-hal"]
33+
all-features = true
3434
rustdoc-args = ["--cfg", "docsrs"]

dhcp/README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,12 @@ This code has been tested, but only with a single DHCP server.
1111

1212
All features are disabled by default.
1313

14-
* `embedded-hal`: Passthrough to [`w5500-hl`].
14+
* `eh0`: Passthrough to [`w5500-hl`].
15+
* `eh1`: Passthrough to [`w5500-hl`].
1516
* `std`: Passthrough to [`w5500-hl`].
1617
* `defmt`: Enable logging with `defmt`. Also a passthrough to [`w5500-hl`].
1718
* `log`: Enable logging with `log`.
1819

1920
[`std::net`]: https://doc.rust-lang.org/std/net/index.html
20-
[`w5500-hl`]: https://github.com/newAM/w5500-hl-rs
21+
[`w5500-hl`]: https://crates.io/crates/w5500-hl
2122
[Wiznet W5500]: https://www.wiznet.io/product-item/w5500/

dhcp/src/lib.rs

+3-2
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,14 @@
99
//!
1010
//! All features are disabled by default.
1111
//!
12-
//! * `embedded-hal`: Passthrough to [`w5500-hl`].
12+
//! * `eh0`: Passthrough to [`w5500-hl`].
13+
//! * `eh1`: Passthrough to [`w5500-hl`].
1314
//! * `std`: Passthrough to [`w5500-hl`].
1415
//! * `defmt`: Enable logging with `defmt`. Also a passthrough to [`w5500-hl`].
1516
//! * `log`: Enable logging with `log`.
1617
//!
1718
//! [`std::net`]: https://doc.rust-lang.org/std/net/index.html
18-
//! [`w5500-hl`]: https://github.com/newAM/w5500-hl-rs
19+
//! [`w5500-hl`]: https://crates.io/crates/w5500-hl
1920
//! [Wiznet W5500]: https://www.wiznet.io/product-item/w5500/
2021
#![cfg_attr(docsrs, feature(doc_cfg), feature(doc_auto_cfg))]
2122
#![cfg_attr(all(not(feature = "std"), not(test)), no_std)]

dns/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ All notable changes to this project 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+
## [Unreleased]
8+
### Added
9+
- Added support for `embedded-hal` version `1.0.0-alpha.8` with the `eh1` feature.
10+
11+
### Changed
12+
- Changed the name of the `embedded-hal` feature to `eh0`.
13+
714
## [0.2.0] - 2022-05-14
815
### Added
916
- Added `mdns::Client.ptr_question`.

dns/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ categories = ["embedded", "hardware-support", "no-std"]
1212
homepage = "https://github.com/newAM/w5500-rs"
1313

1414
[features]
15-
embedded-hal = ["w5500-hl/embedded-hal"]
15+
eh0 = ["w5500-hl/eh0"]
16+
eh1 = ["w5500-hl/eh1"]
1617
defmt = ["w5500-hl/defmt", "dep:defmt"]
1718
std = ["w5500-hl/std"]
1819

@@ -28,6 +29,5 @@ stderrlog = "0.5"
2829
w5500-regsim.path = "../regsim"
2930

3031
[package.metadata.docs.rs]
31-
all-features = false
32-
features = ["log", "std", "embedded-hal"]
32+
all-features = true
3333
rustdoc-args = ["--cfg", "docsrs"]

dns/README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,11 @@ response.done()?;
5050

5151
All features are disabled by default.
5252

53-
* `embedded-hal`: Passthrough to [w5500-hl].
53+
* `eh0`: Passthrough to [w5500-hl].
54+
* `eh1`: Passthrough to [w5500-hl].
5455
* `std`: Passthrough to [w5500-hl].
5556
* `defmt`: Enable logging with `defmt`. Also a passthrough to [w5500-hl].
56-
* `log`: Enable logging with `log`..
57+
* `log`: Enable logging with `log`.
5758

5859
[w5500-hl]: https://crates.io/crates/w5500-hl
5960
[`std::net`]: https://doc.rust-lang.org/std/net/index.html

dns/src/lib.rs

+3-2
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,11 @@
5151
//!
5252
//! All features are disabled by default.
5353
//!
54-
//! * `embedded-hal`: Passthrough to [w5500-hl].
54+
//! * `eh0`: Passthrough to [w5500-hl].
55+
//! * `eh1`: Passthrough to [w5500-hl].
5556
//! * `std`: Passthrough to [w5500-hl].
5657
//! * `defmt`: Enable logging with `defmt`. Also a passthrough to [w5500-hl].
57-
//! * `log`: Enable logging with `log`..
58+
//! * `log`: Enable logging with `log`.
5859
//!
5960
//! [w5500-hl]: https://crates.io/crates/w5500-hl
6061
//! [`std::net`]: https://doc.rust-lang.org/std/net/index.html

hl/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ All notable changes to this project 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+
## [Unreleased]
8+
### Added
9+
- Added support for `embedded-hal` version `1.0.0-alpha.8` with the `eh1` feature.
10+
11+
### Changed
12+
- Changed the name of the `embedded-hal` feature to `eh0`.
13+
714
## [0.9.0] - 2022-05-03
815
### Added
916
- Added `Hostname::new_unwrapped` to create a new hostname, panicking on invalid hostnames.

hl/Cargo.toml

+5-3
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,18 @@ homepage = "https://github.com/newAM/w5500-rs"
1313

1414
[features]
1515
defmt = ["w5500-ll/defmt", "dep:defmt"]
16-
embedded-hal = ["w5500-ll/embedded-hal"]
16+
eh0 = ["w5500-ll/eh0"]
17+
eh1 = ["w5500-ll/eh1"]
1718
std = ["w5500-ll/std"]
1819

1920
[dependencies]
2021
defmt = { version = "0.3", optional = true }
2122
w5500-ll = { path = "../ll", version = "0.10" }
2223

2324
[dev-dependencies]
24-
embedded-hal-mock = "0.8"
25-
w5500-ll = { path = "../ll", version = "0.10", features = ["embedded-hal", "defmt"] }
25+
embedded-hal-mock = { git = "https://github.com/dbrgn/embedded-hal-mock", branch = "1-alpha" }
26+
embedded-hal = "1.0.0-alpha.8"
27+
w5500-ll = { path = "../ll", version = "0.10", features = ["eh1", "defmt"] }
2628

2729
[package.metadata.docs.rs]
2830
all-features = true

hl/README.md

+7-6
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
Platform agnostic rust driver for the [Wiznet W5500] internet offload chip.
44

55
This crate contains higher level (hl) socket operations, built on-top of my
6-
other crate, [w5500-ll], which contains register accessors, and networking
6+
other crate, [`w5500-ll`], which contains register accessors, and networking
77
data types for the W5500.
88

99
## Design
1010

1111
There are no separate socket structures.
1212
The [`Tcp`] and [`Udp`] traits provided in this crate simply extend the
13-
[`Registers`] trait provided in [w5500-ll].
13+
[`Registers`] trait provided in [`w5500-ll`].
1414
This makes for a less ergonomic API, but a much more portable API because
1515
there are no mutexes or runtime checks to enable socket structures to share
1616
ownership of the underlying W5500 device.
@@ -23,9 +23,10 @@ structures utilizing whatever Mutex is available for your platform / RTOS.
2323

2424
All features are disabled by default.
2525

26-
* `defmt`: Passthrough to [w5500-ll].
27-
* `embedded-hal`: Passthrough to [w5500-ll].
28-
* `std`: Passthrough to [w5500-ll].
26+
* `defmt`: Passthrough to [`w5500-ll`].
27+
* `eh0`: Passthrough to [`w5500-ll`].
28+
* `eh1`: Passthrough to [`w5500-ll`].
29+
* `std`: Passthrough to [`w5500-ll`].
2930

3031
## Examples
3132

@@ -85,5 +86,5 @@ w5500.tcp_listen(HTTP_SOCKET, HTTP_PORT)?;
8586
[`std::net`]: https://doc.rust-lang.org/std/net/index.html
8687
[`Tcp`]: https://docs.rs/w5500-hl/latest/w5500_hl/trait.Tcp.html
8788
[`Udp`]: https://docs.rs/w5500-hl/latest/w5500_hl/trait.Udp.html
88-
[w5500-ll]: https://github.com/newAM/w5500-ll-rs
89+
[`w5500-ll`]: https://crates.io/crates/w5500-ll
8990
[Wiznet W5500]: https://www.wiznet.io/product-item/w5500/

0 commit comments

Comments
 (0)