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

Commit e8a9591

Browse files
authored
v1.1.0 to use Ethernet_Generic library
### 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)
1 parent aa5b97c commit e8a9591

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

src/DateTime_Generic.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
77
Built by Khoi Hoang https://github.com/khoih-prog/RP2040_RTC
88
Licensed under MIT license
9-
Version: 1.0.8
9+
10+
Version: 1.1.0
1011
1112
Version Modified By Date Comments
1213
------- ----------- ---------- -----------
@@ -19,6 +20,7 @@
1920
1.0.6 K Hoang 22/10/2021 Fix platform in library.json for PIO
2021
1.0.7 K Hoang 01/11/2021 Fix bug in rtc_set_datetime()
2122
1.0.8 K Hoang 20/01/2022 Update dependency
23+
1.1.0 K Hoang 25/04/2022 Use new Ethernet_Generic library. Add support to W5100S
2224
*****************************************************************************************************************************/
2325

2426
#pragma once

src/RP2040_RTC.h

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
66
Built by Khoi Hoang https://github.com/khoih-prog/RP2040_RTC
77
Licensed under MIT license
8-
Version: 1.0.8
8+
9+
Version: 1.1.0
910
1011
Version Modified By Date Comments
1112
------- ----------- ---------- -----------
@@ -18,20 +19,21 @@
1819
1.0.6 K Hoang 22/10/2021 Fix platform in library.json for PIO
1920
1.0.7 K Hoang 01/11/2021 Fix bug in rtc_set_datetime()
2021
1.0.8 K Hoang 20/01/2022 Update dependency
22+
1.1.0 K Hoang 25/04/2022 Use new Ethernet_Generic library. Add support to W5100S
2123
*****************************************************************************************************************************/
2224

2325
#pragma once
2426

2527
#ifndef RP2040_RTC_H
2628
#define RP2040_RTC_H
2729

28-
#define RP2040_RTC_VERSION "RP2040_RTC v1.0.8"
30+
#define RP2040_RTC_VERSION "RP2040_RTC v1.1.0"
2931

3032
#define RP2040_RTC_VERSION_MAJOR 1
31-
#define RP2040_RTC_VERSION_MINOR 0
32-
#define RP2040_RTC_VERSION_PATCH 8
33+
#define RP2040_RTC_VERSION_MINOR 1
34+
#define RP2040_RTC_VERSION_PATCH 0
3335

34-
#define RP2040_RTC_VERSION_INT 1000008
36+
#define RP2040_RTC_VERSION_INT 1001000
3537

3638
#if !defined(RTC_DEBUG)
3739
#define RTC_DEBUG false

0 commit comments

Comments
 (0)