Skip to content

Releases: newAM/w5500-rs

hl Version 0.10.0

06 Aug 20:36
0d547b3
Compare
Choose a tag to compare

Added

  • Added support for embedded-hal version 1.0.0-alpha.11 with the eh1 feature.

Changed

  • Changed the name of the embedded-hal feature to eh0.
  • Changed Seek<E>::seek to Seek::seek<E>, moving the seek error generic from the Seek trait to the seek method.
  • Updated w5500-ll dependency from 0.10.0 to 0.11.0.

dns Version 0.3.0

06 Aug 20:40
0d547b3
Compare
Choose a tag to compare

Added

  • Added support for embedded-hal version 1.0.0-alpha.11 with the eh1 feature.

Changed

  • Changed the name of the embedded-hal feature to eh0.
  • Updated w5500-hl dependency from 0.9.0 to 0.10.0.

dhcp Version 0.5.0

06 Aug 20:40
0d547b3
Compare
Choose a tag to compare

Added

  • Added support for embedded-hal version 1.0.0-alpha.11 with the eh1 feature.

Changed

  • Changed the name of the embedded-hal feature to eh0.
  • Updated w5500-hl dependency from 0.9.0 to 0.10.0.

Fixed

  • Fixed compatibility with dnsmasq by adding a server identifier (option 54) to the REQUEST.

tls version 0.1.3

07 Aug 17:45
723e99b
Compare
Choose a tag to compare

Changed

  • Updated p256-cm4 from 0.1.1 to 0.3.0.

tls version 0.1.2

01 Aug 18:27
7bb527c
Compare
Choose a tag to compare

Added

  • Added a p256 implementation optimized for the Cortex-M4 CPU with the p256-cm4 feature.

mqtt version 0.1.2

01 Aug 18:31
7bb527c
Compare
Choose a tag to compare

Added

  • Added a p256-cm4 feature passthrough to w5500-tls.

Changed

  • Updated w5500-tls from 0.1.0 to 0.1.2.

tls version 0.1.1

26 Jul 20:09
f0d09ae
Compare
Choose a tag to compare

Fixed

  • Fixed a race condition where the client would fail to send finished before the server connection timeout expired.

ll version 0.10.4

14 Jul 20:46
838ab52
Compare
Choose a tag to compare

Added

  • Added a new W5500 type for VDM transfers with an infallible GPIO and an infallible SPI bus.
  • Added defmt::Format implementations for all register structs.
  • Added the missing opmd field to the Display impl for PhyCfg.

Fixed

  • Fixed the opmdc field name in the Display impl for PhyCfg. This field was incorrectly named opmd.

dhcp version 0.4.2

14 Jul 20:51
70b821b
Compare
Choose a tag to compare

Fixed

  • Fixed compilation with the "defmt" feature.

sntp version 0.2.0

21 May 16:44
0273f84
Compare
Choose a tag to compare

Added

  • impl TryFrom<chrono::naive::NaiveDateTime> for Timestamp.
  • Added exports for chrono and time.

Changed

  • Changed Client.server to public.
  • Changed the server argument of Client::new from Ipv4Addr to SocketAddrV4.
  • Changed the error type of Timestamp conversions from () to TimestampError.
  • Moved socket setup from Client.request to Client.setup_socket to avoid repeat initialization.

Removed

  • Removed Client::server and Client::set_server methods.