Skip to content
This repository has been archived by the owner on Jan 29, 2023. It is now read-only.

Commit

Permalink
v1.1.0 to use Ethernet_Generic library
Browse files Browse the repository at this point in the history
### Releases v1.1.0

1. Use new [Ethernet_Generic library](https://github.com/khoih-prog/Ethernet_Generic) as default for W5x00.
2. Add support to `SPI1` for `RP2040` using [`Earle Philhower's arduino-pico` core](https://github.com/earlephilhower/arduino-pico)
3. Add support to WIZNet W5100S, such as  [**WIZnet Ethernet HAT**](https://docs.wiznet.io/Product/Open-Source-Hardware/wiznet_ethernet_hat) and [**W5100S-EVB-Pico**](https://docs.wiznet.io/Product/iEthernet/W5100S/w5100s-evb-pico)
  • Loading branch information
khoih-prog authored Apr 25, 2022
1 parent aa5b97c commit e8a9591
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
4 changes: 3 additions & 1 deletion src/DateTime_Generic.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
Built by Khoi Hoang https://github.com/khoih-prog/RP2040_RTC
Licensed under MIT license
Version: 1.0.8
Version: 1.1.0
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -19,6 +20,7 @@
1.0.6 K Hoang 22/10/2021 Fix platform in library.json for PIO
1.0.7 K Hoang 01/11/2021 Fix bug in rtc_set_datetime()
1.0.8 K Hoang 20/01/2022 Update dependency
1.1.0 K Hoang 25/04/2022 Use new Ethernet_Generic library. Add support to W5100S
*****************************************************************************************************************************/

#pragma once
Expand Down
12 changes: 7 additions & 5 deletions src/RP2040_RTC.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
Built by Khoi Hoang https://github.com/khoih-prog/RP2040_RTC
Licensed under MIT license
Version: 1.0.8
Version: 1.1.0
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -18,20 +19,21 @@
1.0.6 K Hoang 22/10/2021 Fix platform in library.json for PIO
1.0.7 K Hoang 01/11/2021 Fix bug in rtc_set_datetime()
1.0.8 K Hoang 20/01/2022 Update dependency
1.1.0 K Hoang 25/04/2022 Use new Ethernet_Generic library. Add support to W5100S
*****************************************************************************************************************************/

#pragma once

#ifndef RP2040_RTC_H
#define RP2040_RTC_H

#define RP2040_RTC_VERSION "RP2040_RTC v1.0.8"
#define RP2040_RTC_VERSION "RP2040_RTC v1.1.0"

#define RP2040_RTC_VERSION_MAJOR 1
#define RP2040_RTC_VERSION_MINOR 0
#define RP2040_RTC_VERSION_PATCH 8
#define RP2040_RTC_VERSION_MINOR 1
#define RP2040_RTC_VERSION_PATCH 0

#define RP2040_RTC_VERSION_INT 1000008
#define RP2040_RTC_VERSION_INT 1001000

#if !defined(RTC_DEBUG)
#define RTC_DEBUG false
Expand Down

0 comments on commit e8a9591

Please sign in to comment.