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

add ufmt impl #183

Draft
wants to merge 12 commits into
base: main
Choose a base branch
from
Draft
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
4 changes: 2 additions & 2 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[alias]
test-all = "test --features std,log,eh0,eh1,time,chrono,num-rational,w5500-tls"
test-all = "test --features std,log,eh0,eh1,time,chrono,num-rational,w5500-tls,ufmt"
test-dhcp = "test -p w5500-dhcp --features log,std"
test-ll = "test -p w5500-ll --features eh0,eh1,std"
test-ll = "test -p w5500-ll --features eh0,eh1,std,ufmt"
test-hl = "test -p w5500-hl --features eh0,eh1,std"
test-mqtt = "test -p w5500-mqtt --features log,std,w5500-tls"
test-regsim = "test -p w5500-regsim"
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,12 @@ jobs:
- run: cargo build --target ${{ matrix.target }} -p w5500-dns --features defmt
- run: cargo build --target ${{ matrix.target }} -p w5500-mqtt --features defmt
- run: cargo build --target ${{ matrix.target }} -p w5500-tls --features defmt
- run: cargo build --target ${{ matrix.target }} -p w5500-ll --features ufmt
- run: cargo build --target ${{ matrix.target }} -p w5500-hl --features ufmt
- run: cargo build --target ${{ matrix.target }} -p w5500-dhcp --features ufmt
- run: cargo build --target ${{ matrix.target }} -p w5500-dns --features ufmt
- run: cargo build --target ${{ matrix.target }} -p w5500-mqtt --features ufmt
- run: cargo build --target ${{ matrix.target }} -p w5500-tls --features ufmt
- run: cargo build --target ${{ matrix.target }} -p w5500-ll --features eh0,eh1
- run: cargo build --target ${{ matrix.target }} -p w5500-hl --features eh0,eh1
- run: cargo build --target ${{ matrix.target }} -p w5500-dhcp --features eh0,eh1
Expand Down
1 change: 1 addition & 0 deletions dhcp/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
### Added
- Added support for `embedded-hal` version `1.0.0-alpha.8` with the `eh1` feature.
- Added support for `ufmt` with the `ufmt` feature.

### Changed
- Changed the name of the `embedded-hal` feature to `eh0`.
Expand Down
8 changes: 5 additions & 3 deletions dhcp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,17 @@ categories = ["embedded", "hardware-support", "no-std"]
homepage = "https://github.com/newAM/w5500-rs"

[features]
defmt = ["w5500-hl/defmt", "dep:defmt"]
eh0 = ["w5500-hl/eh0"]
eh1 = ["w5500-hl/eh1"]
defmt = ["w5500-hl/defmt", "dep:defmt"]
std = ["w5500-hl/std"]
std = ["w5500-hl/std", "ufmt?/std"]
ufmt = ["w5500-hl/ufmt", "dep:ufmt"]

[dependencies]
w5500-hl = { path = "../hl", version = "0.9.0" }
defmt = { version = "0.3", optional = true }
log = { version = "0.4", optional = true }
ufmt = { version = "0.2", optional = true }
w5500-hl = { path = "../hl", version = "0.9.0" }

[dev-dependencies]
dhcproto = "0.8"
Expand Down
5 changes: 3 additions & 2 deletions dhcp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,12 @@ This code has been tested, but only with a single DHCP server.

All features are disabled by default.

* `defmt`: Enable logging with `defmt`.
* `eh0`: Passthrough to [`w5500-hl`].
* `eh1`: Passthrough to [`w5500-hl`].
* `std`: Passthrough to [`w5500-hl`].
* `defmt`: Enable logging with `defmt`. Also a passthrough to [`w5500-hl`].
* `log`: Enable logging with `log`.
* `std`: Passthrough to [`w5500-hl`].
* `ufmt`: Enable formatting types with `ufmt`.

[`std::net`]: https://doc.rust-lang.org/std/net/index.html
[`w5500-hl`]: https://crates.io/crates/w5500-hl
Expand Down
7 changes: 5 additions & 2 deletions dhcp/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,12 @@
//!
//! All features are disabled by default.
//!
//! * `defmt`: Enable logging with `defmt`.
//! * `eh0`: Passthrough to [`w5500-hl`].
//! * `eh1`: Passthrough to [`w5500-hl`].
//! * `std`: Passthrough to [`w5500-hl`].
//! * `defmt`: Enable logging with `defmt`. Also a passthrough to [`w5500-hl`].
//! * `log`: Enable logging with `log`.
//! * `std`: Passthrough to [`w5500-hl`].
//! * `ufmt`: Enable formatting types with `ufmt`.
//!
//! [`std::net`]: https://doc.rust-lang.org/std/net/index.html
//! [`w5500-hl`]: https://crates.io/crates/w5500-hl
Expand Down Expand Up @@ -56,6 +57,7 @@ const LINK_UP_TIMEOUT_SECS: u32 = 1;
/// DHCP client states.
#[derive(Debug, PartialEq, Eq, Clone, Copy)]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[cfg_attr(feature = "ufmt", derive(ufmt::derive::uDebug))]
#[non_exhaustive] // may support rebooting and ini-reboot in the future
#[doc(hidden)]
pub enum State {
Expand Down Expand Up @@ -111,6 +113,7 @@ pub enum State {
/// ```
#[derive(Debug)]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[cfg_attr(feature = "ufmt", derive(ufmt::derive::uDebug))]
pub struct Client<'a> {
/// Socket to use for the DHCP client.
sn: Sn,
Expand Down
1 change: 1 addition & 0 deletions dhcp/src/pkt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ impl From<Options> for u8 {
#[repr(u8)]
#[derive(Debug, PartialEq, Eq, Clone, Copy)]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[cfg_attr(feature = "ufmt", derive(ufmt::derive::uDebug))]
pub enum MsgType {
/// DHCPDISCOVER
Discover = 1,
Expand Down
1 change: 1 addition & 0 deletions dhcp/src/rand.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

#[derive(Debug)]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[cfg_attr(feature = "ufmt", derive(ufmt::derive::uDebug))]
pub(crate) struct Rand {
state: u64,
}
Expand Down
1 change: 1 addition & 0 deletions dns/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
### Added
- Added support for `embedded-hal` version `1.0.0-alpha.8` with the `eh1` feature.
- Added support for `ufmt` with the `ufmt` feature.

### Changed
- Changed the name of the `embedded-hal` feature to `eh0`.
Expand Down
8 changes: 5 additions & 3 deletions dns/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,17 @@ categories = ["embedded", "hardware-support", "no-std"]
homepage = "https://github.com/newAM/w5500-rs"

[features]
defmt = ["w5500-hl/defmt", "dep:defmt"]
eh0 = ["w5500-hl/eh0"]
eh1 = ["w5500-hl/eh1"]
defmt = ["w5500-hl/defmt", "dep:defmt"]
std = ["w5500-hl/std"]
std = ["w5500-hl/std", "ufmt?/std"]
ufmt = ["w5500-hl/ufmt", "dep:ufmt"]

[dependencies]
w5500-hl = { path = "../hl", version = "0.9.0" }
defmt = { version = "0.3", optional = true }
log = { version = "0.4", optional = true }
ufmt = { version = "0.2", optional = true }
w5500-hl = { path = "../hl", version = "0.9.0" }

[dev-dependencies]
log = "0.4"
Expand Down
5 changes: 3 additions & 2 deletions dns/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,12 @@ response.done()?;

All features are disabled by default.

* `defmt`: Enable logging with `defmt`.
* `eh0`: Passthrough to [w5500-hl].
* `eh1`: Passthrough to [w5500-hl].
* `std`: Passthrough to [w5500-hl].
* `defmt`: Enable logging with `defmt`. Also a passthrough to [w5500-hl].
* `log`: Enable logging with `log`.
* `std`: Passthrough to [w5500-hl].
* `ufmt`: Enable formatting types with `ufmt`.

[w5500-hl]: https://crates.io/crates/w5500-hl
[`std::net`]: https://doc.rust-lang.org/std/net/index.html
Expand Down
3 changes: 3 additions & 0 deletions dns/src/header.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/// Query or Response flag.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[cfg_attr(feature = "ufmt", derive(ufmt::derive::uDebug))]
pub(crate) enum Qr {
Query,
Response,
Expand All @@ -13,6 +14,7 @@ pub(crate) enum Qr {
/// * [RFC 1035 Section 4.1.1](https://www.rfc-editor.org/rfc/rfc1035#section-4.1.1)
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[cfg_attr(feature = "ufmt", derive(ufmt::derive::uDebug))]
#[repr(u8)]
pub enum ResponseCode {
/// No Error.
Expand Down Expand Up @@ -71,6 +73,7 @@ impl TryFrom<u8> for ResponseCode {
/// * [RFC 1035 Section 4.1.1](https://www.rfc-editor.org/rfc/rfc1035#section-4.1.1)
#[derive(Debug)]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[cfg_attr(feature = "ufmt", derive(ufmt::derive::uDebug))]
pub(crate) struct Header {
buf: [u8; Self::LEN_USIZE],
}
Expand Down
11 changes: 9 additions & 2 deletions dns/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,12 @@
//!
//! All features are disabled by default.
//!
//! * `defmt`: Enable logging with `defmt`.
//! * `eh0`: Passthrough to [w5500-hl].
//! * `eh1`: Passthrough to [w5500-hl].
//! * `std`: Passthrough to [w5500-hl].
//! * `defmt`: Enable logging with `defmt`. Also a passthrough to [w5500-hl].
//! * `log`: Enable logging with `log`.
//! * `std`: Passthrough to [w5500-hl].
//! * `ufmt`: Enable formatting types with `ufmt`.
//!
//! [w5500-hl]: https://crates.io/crates/w5500-hl
//! [`std::net`]: https://doc.rust-lang.org/std/net/index.html
Expand Down Expand Up @@ -117,6 +118,7 @@ pub mod servers {
/// Decoded fields from SRV rdata.
#[derive(Debug, PartialEq, Eq)]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[cfg_attr(feature = "ufmt", derive(ufmt::derive::uDebug))]
pub struct ServiceData {
/// The priority of this target host.
pub priority: u16,
Expand All @@ -129,6 +131,7 @@ pub struct ServiceData {
/// Decoded rdata.
#[derive(Debug, PartialEq, Eq)]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[cfg_attr(feature = "ufmt", derive(ufmt::derive::uDebug))]
pub enum RData {
/// Decoded rdata for A records.
A(Ipv4Addr),
Expand All @@ -154,6 +157,7 @@ impl Default for RData {
/// * [RFC 1035 Section 4.1.4](https://www.rfc-editor.org/rfc/rfc1035#section-4.1.4)
#[derive(Debug, PartialEq, Eq)]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[cfg_attr(feature = "ufmt", derive(ufmt::derive::uDebug))]
pub struct ResourceRecord<'a> {
/// A domain name to which this resource record pertains.
///
Expand Down Expand Up @@ -276,6 +280,7 @@ fn read_u32<E, Reader: Read<E>>(reader: &mut Reader) -> Result<u32, Error<E>> {
/// This is created with [`Client::response`].
#[derive(Debug)]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[cfg_attr(feature = "ufmt", derive(ufmt::derive::uDebug))]
pub struct Response<'a, W5500: Udp> {
reader: UdpReader<'a, W5500>,
header: Header,
Expand Down Expand Up @@ -383,6 +388,7 @@ impl<'a, W5500: Udp> Response<'a, W5500> {
/// This is created with [`Client::query`].
#[derive(Debug)]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[cfg_attr(feature = "ufmt", derive(ufmt::derive::uDebug))]
struct Query<'a, W5500: Udp> {
writer: UdpWriter<'a, W5500>,
header: Header,
Expand Down Expand Up @@ -443,6 +449,7 @@ impl<'a, W5500: Udp> Query<'a, W5500> {
/// W5500 DNS client.
#[derive(Debug)]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[cfg_attr(feature = "ufmt", derive(ufmt::derive::uDebug))]
pub struct Client {
sn: Sn,
port: u16,
Expand Down
1 change: 1 addition & 0 deletions dns/src/mdns.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ const MDNS_HARDWARE_DST: Eui48Addr = Eui48Addr::new(0x01, 0x00, 0x5E, 0x00, 0x00
/// W5500 MDNS client.
#[derive(Debug)]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[cfg_attr(feature = "ufmt", derive(ufmt::derive::uDebug))]
pub struct Client {
sn: Sn,
port: u16,
Expand Down
1 change: 1 addition & 0 deletions dns/src/qclass.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
/// * [RFC 1035 Section 3.2.4](https://tools.ietf.org/rfc/rfc1035#section-3.2.4).
#[derive(Debug, Copy, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[cfg_attr(feature = "ufmt", derive(ufmt::derive::uDebug))]
#[repr(u16)]
pub enum Qclass {
/// Internet
Expand Down
1 change: 1 addition & 0 deletions dns/src/qtype.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
/// * [RFC 1035 Section 3.2.3](https://tools.ietf.org/rfc/rfc1035#section-3.2.3)
#[derive(Debug, Copy, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[cfg_attr(feature = "ufmt", derive(ufmt::derive::uDebug))]
#[repr(u16)]
pub enum Qtype {
/// a host address
Expand Down
1 change: 1 addition & 0 deletions dns/src/rand.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

#[derive(Debug)]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[cfg_attr(feature = "ufmt", derive(ufmt::derive::uDebug))]
pub(crate) struct Rand {
state: u64,
}
Expand Down
1 change: 1 addition & 0 deletions hl/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
### Added
- Added support for `embedded-hal` version `1.0.0-alpha.8` with the `eh1` feature.
- Added support for `ufmt` with the `ufmt` feature.

### Changed
- Changed the name of the `embedded-hal` feature to `eh0`.
Expand Down
4 changes: 3 additions & 1 deletion hl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,12 @@ homepage = "https://github.com/newAM/w5500-rs"
defmt = ["w5500-ll/defmt", "dep:defmt"]
eh0 = ["w5500-ll/eh0"]
eh1 = ["w5500-ll/eh1"]
std = ["w5500-ll/std"]
std = ["w5500-ll/std", "ufmt?/std"]
ufmt = ["w5500-ll/ufmt", "dep:ufmt"]

[dependencies]
defmt = { version = "0.3", optional = true }
ufmt = { version = "0.2", optional = true }
w5500-ll = { path = "../ll", version = "0.10" }

[dev-dependencies]
Expand Down
3 changes: 2 additions & 1 deletion hl/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,11 @@ structures utilizing whatever Mutex is available for your platform / RTOS.

All features are disabled by default.

* `defmt`: Passthrough to [`w5500-ll`].
* `defmt`: Enable formatting types with `defmt`.
* `eh0`: Passthrough to [`w5500-ll`].
* `eh1`: Passthrough to [`w5500-ll`].
* `std`: Passthrough to [`w5500-ll`].
* `ufmt`: Enable formatting types with `ufmt`.

## Examples

Expand Down
2 changes: 2 additions & 0 deletions hl/src/hostname.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
/// implementing protocols such as DNS and DHCP to use.
#[derive(Debug, Clone, Copy)]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[cfg_attr(feature = "ufmt", derive(ufmt::derive::uDebug))]
pub struct Hostname<'a> {
hostname: &'a str,
}
Expand Down Expand Up @@ -194,6 +195,7 @@ impl<'a> Hostname<'a> {
/// The error type returned when a str to [`Hostname`] conversion fails.
#[derive(Debug, Copy, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[cfg_attr(feature = "ufmt", derive(ufmt::derive::uDebug))]
pub struct TryFromStrError(pub(crate) ());

impl<'a> TryFrom<&'a str> for Hostname<'a> {
Expand Down
1 change: 1 addition & 0 deletions hl/src/io.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ use crate::Error;
/// [`std::io::SeekFrom`]: https://doc.rust-lang.org/std/io/enum.SeekFrom.html
#[derive(Debug, Copy, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[cfg_attr(feature = "ufmt", derive(ufmt::derive::uDebug))]
pub enum SeekFrom {
/// Sets the offset to the provided number of bytes.
Start(u16),
Expand Down
4 changes: 3 additions & 1 deletion hl/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,11 @@
//!
//! All features are disabled by default.
//!
//! * `defmt`: Passthrough to [`w5500-ll`].
//! * `defmt`: Enable formatting types with `defmt`.
//! * `eh0`: Passthrough to [`w5500-ll`].
//! * `eh1`: Passthrough to [`w5500-ll`].
//! * `std`: Passthrough to [`w5500-ll`].
//! * `ufmt`: Enable formatting types with `ufmt`.
//!
//! # Examples
//!
Expand Down Expand Up @@ -135,6 +136,7 @@ where
/// Higher level W5500 errors.
#[derive(Debug, PartialEq, Eq, Clone, Copy)]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[cfg_attr(feature = "ufmt", derive(ufmt::derive::uDebug))]
pub enum Error<E> {
/// Unexpected "end of file".
///
Expand Down
2 changes: 2 additions & 0 deletions hl/src/tcp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ use w5500_ll::{
/// ```
#[derive(Debug)]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[cfg_attr(feature = "ufmt", derive(ufmt::derive::uDebug))]
pub struct TcpReader<'w, W5500: Registers> {
pub(crate) w5500: &'w mut W5500,
pub(crate) sn: Sn,
Expand Down Expand Up @@ -158,6 +159,7 @@ impl<'a, W5500: Registers> Read<W5500::Error> for TcpReader<'a, W5500> {
/// ```
#[derive(Debug, PartialEq, Eq)]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[cfg_attr(feature = "ufmt", derive(ufmt::derive::uDebug))]
pub struct TcpWriter<'w, W5500: Registers> {
pub(crate) w5500: &'w mut W5500,
pub(crate) sn: Sn,
Expand Down
3 changes: 3 additions & 0 deletions hl/src/udp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ use w5500_ll::{
/// W5500 UDP Header.
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord)]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[cfg_attr(feature = "ufmt", derive(ufmt::derive::uDebug))]
pub struct UdpHeader {
/// Origin IP address and port.
pub origin: SocketAddrV4,
Expand Down Expand Up @@ -78,6 +79,7 @@ impl UdpHeader {
/// ```
#[derive(Debug)]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[cfg_attr(feature = "ufmt", derive(ufmt::derive::uDebug))]
pub struct UdpReader<'w, W: Registers> {
inner: TcpReader<'w, W>,
header: UdpHeader,
Expand Down Expand Up @@ -162,6 +164,7 @@ impl<'w, W5500: Registers> Read<W5500::Error> for UdpReader<'w, W5500> {
/// ```
#[derive(Debug, PartialEq, Eq)]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[cfg_attr(feature = "ufmt", derive(ufmt::derive::uDebug))]
pub struct UdpWriter<'w, W5500: Registers> {
pub(crate) w5500: &'w mut W5500,
pub(crate) sn: Sn,
Expand Down
Loading