|
7 | 7 | /// [`sn_sr`]: crate::Registers::sn_sr
|
8 | 8 | #[derive(Copy, Clone, Eq, PartialEq, Debug, PartialOrd, Ord, Hash)]
|
9 | 9 | #[cfg_attr(feature = "defmt", derive(defmt::Format))]
|
| 10 | +#[cfg_attr(feature = "ufmt", derive(ufmt::derive::uDebug))] |
10 | 11 | #[repr(u8)]
|
11 | 12 | pub enum SocketStatus {
|
12 | 13 | /// Socket closed, this is the reset state of all sockets.
|
@@ -185,6 +186,7 @@ impl Default for SocketStatus {
|
185 | 186 | /// [`sn_sr`]: crate::Registers::sn_sr
|
186 | 187 | #[derive(Copy, Clone, Eq, PartialEq, Debug, PartialOrd, Ord, Hash)]
|
187 | 188 | #[cfg_attr(feature = "defmt", derive(defmt::Format))]
|
| 189 | +#[cfg_attr(feature = "ufmt", derive(ufmt::derive::uDebug))] |
188 | 190 | #[repr(u8)]
|
189 | 191 | pub enum SocketCommand {
|
190 | 192 | /// The command register clears to this state once a command has been
|
@@ -361,6 +363,7 @@ impl TryFrom<u8> for SocketCommand {
|
361 | 363 | /// [`sn_mr`]: crate::Registers::sn_mr
|
362 | 364 | #[derive(Copy, Clone, Eq, PartialEq, Debug, PartialOrd, Ord, Hash)]
|
363 | 365 | #[cfg_attr(feature = "defmt", derive(defmt::Format))]
|
| 366 | +#[cfg_attr(feature = "ufmt", derive(ufmt::derive::uDebug))] |
364 | 367 | #[repr(u8)]
|
365 | 368 | pub enum Protocol {
|
366 | 369 | /// Closed.
|
@@ -428,6 +431,7 @@ impl TryFrom<u8> for Protocol {
|
428 | 431 | /// [`phycfgr`]: crate::Registers::phycfgr
|
429 | 432 | #[derive(Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Debug, Hash)]
|
430 | 433 | #[cfg_attr(feature = "defmt", derive(defmt::Format))]
|
| 434 | +#[cfg_attr(feature = "ufmt", derive(ufmt::derive::uDebug))] |
431 | 435 | #[repr(u8)]
|
432 | 436 | pub enum OperationMode {
|
433 | 437 | /// 10BT half-duplex. Auto-negotiation disabled.
|
@@ -510,6 +514,7 @@ impl Default for OperationMode {
|
510 | 514 | /// [`phycfgr`]: crate::Registers::phycfgr
|
511 | 515 | #[derive(Copy, Clone, Eq, PartialEq, Debug, PartialOrd, Ord, Hash)]
|
512 | 516 | #[cfg_attr(feature = "defmt", derive(defmt::Format))]
|
| 517 | +#[cfg_attr(feature = "ufmt", derive(ufmt::derive::uDebug))] |
513 | 518 | #[repr(u8)]
|
514 | 519 | pub enum LinkStatus {
|
515 | 520 | /// PHY link down.
|
@@ -545,6 +550,7 @@ impl Default for LinkStatus {
|
545 | 550 | /// [`phycfgr`]: crate::Registers::phycfgr
|
546 | 551 | #[derive(Copy, Clone, Eq, PartialEq, Debug, PartialOrd, Ord, Hash)]
|
547 | 552 | #[cfg_attr(feature = "defmt", derive(defmt::Format))]
|
| 553 | +#[cfg_attr(feature = "ufmt", derive(ufmt::derive::uDebug))] |
548 | 554 | #[repr(u8)]
|
549 | 555 | pub enum SpeedStatus {
|
550 | 556 | /// 10 Mbps.
|
@@ -580,6 +586,7 @@ impl Default for SpeedStatus {
|
580 | 586 | /// [`phycfgr`]: crate::Registers::phycfgr
|
581 | 587 | #[derive(Copy, Clone, Eq, PartialEq, Debug, PartialOrd, Ord, Hash)]
|
582 | 588 | #[cfg_attr(feature = "defmt", derive(defmt::Format))]
|
| 589 | +#[cfg_attr(feature = "ufmt", derive(ufmt::derive::uDebug))] |
583 | 590 | #[repr(u8)]
|
584 | 591 | pub enum DuplexStatus {
|
585 | 592 | /// Half duplex
|
@@ -616,6 +623,7 @@ impl Default for DuplexStatus {
|
616 | 623 | /// [`Registers::set_sn_rxbuf_size`]: crate::Registers::set_sn_rxbuf_size
|
617 | 624 | #[derive(Copy, Clone, Eq, PartialEq, PartialOrd, Ord, Hash, Debug)]
|
618 | 625 | #[cfg_attr(feature = "defmt", derive(defmt::Format))]
|
| 626 | +#[cfg_attr(feature = "ufmt", derive(ufmt::derive::uDebug))] |
619 | 627 | #[repr(u8)]
|
620 | 628 | #[allow(clippy::upper_case_acronyms)]
|
621 | 629 | pub enum BufferSize {
|
|
0 commit comments