From 0c649826f507d1b0945bb0a75cc0ce9728b9d053 Mon Sep 17 00:00:00 2001 From: "Dirk O. Kaar" Date: Sun, 23 Apr 2023 09:38:32 +0200 Subject: [PATCH 1/7] Bug fix EspSoftwareSerial 8.0.3: Arduino library repo didn't pick up 8.0.2 properly --- libraries/SoftwareSerial | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/SoftwareSerial b/libraries/SoftwareSerial index bcfd6d10e6..457e6446e2 160000 --- a/libraries/SoftwareSerial +++ b/libraries/SoftwareSerial @@ -1 +1 @@ -Subproject commit bcfd6d10e6a45a0d07705d08728f293defe9cc1d +Subproject commit 457e6446e2e4b48263613f7ee5772976211ab25f From 00654fc7969209c0fbb8ca3998c85cbf96f0b80a Mon Sep 17 00:00:00 2001 From: "Dirk O. Kaar" Date: Sun, 2 Jul 2023 11:28:44 +0200 Subject: [PATCH 2/7] EspSoftwareSerial 8.1.0 --- libraries/SoftwareSerial | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/SoftwareSerial b/libraries/SoftwareSerial index 457e6446e2..9e61fa07c3 160000 --- a/libraries/SoftwareSerial +++ b/libraries/SoftwareSerial @@ -1 +1 @@ -Subproject commit 457e6446e2e4b48263613f7ee5772976211ab25f +Subproject commit 9e61fa07c3a81b90fa1c2b333f963c0b70b74fe3 From a59454c638f04808ecddf06eb6e51a6af4f5e0d1 Mon Sep 17 00:00:00 2001 From: "Dirk O. Kaar" Date: Sun, 23 Jul 2023 17:38:31 +0200 Subject: [PATCH 3/7] Updated (release pending) EspSoftwareSerial revision. --- libraries/SoftwareSerial | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/SoftwareSerial b/libraries/SoftwareSerial index 9e61fa07c3..a5b2bd86b0 160000 --- a/libraries/SoftwareSerial +++ b/libraries/SoftwareSerial @@ -1 +1 @@ -Subproject commit 9e61fa07c3a81b90fa1c2b333f963c0b70b74fe3 +Subproject commit a5b2bd86b0b471f7a31dae4d257e629cafa2eeca From d846c95e5c9f7f58ed6922c104085309e63b92d9 Mon Sep 17 00:00:00 2001 From: "Dirk O. Kaar" Date: Thu, 4 Jan 2024 23:10:42 +0100 Subject: [PATCH 4/7] EspSoftwareSerial's ghostl, incl. circular_queue, has been moved from multiple copy&paste inclusions in various repos into an own repo to use as separate library dependency --- libraries/SoftwareSerial | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/SoftwareSerial b/libraries/SoftwareSerial index a5b2bd86b0..12ec666aff 160000 --- a/libraries/SoftwareSerial +++ b/libraries/SoftwareSerial @@ -1 +1 @@ -Subproject commit a5b2bd86b0b471f7a31dae4d257e629cafa2eeca +Subproject commit 12ec666aff2c9490777f93b7b5b17e1b491fd7e9 From 88135f2cd1529d8bd39e7d8a8cbd4d15f6edc5e7 Mon Sep 17 00:00:00 2001 From: "Dirk O. Kaar" Date: Fri, 5 Jan 2024 10:34:28 +0100 Subject: [PATCH 5/7] EspSoftwareSerial 8.2.0 release featuring ghostl as stand-alone Arduino library via the lib manager --- libraries/SoftwareSerial | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/SoftwareSerial b/libraries/SoftwareSerial index 12ec666aff..40038df467 160000 --- a/libraries/SoftwareSerial +++ b/libraries/SoftwareSerial @@ -1 +1 @@ -Subproject commit 12ec666aff2c9490777f93b7b5b17e1b491fd7e9 +Subproject commit 40038df467853f47dde4641769183fa46996decb From 05447e17f9432b753db2fcbbf658dd2445cc42e2 Mon Sep 17 00:00:00 2001 From: "Dirk O. Kaar" Date: Sat, 6 Jan 2024 13:37:11 +0100 Subject: [PATCH 6/7] Add ghostl as own submodule --- .gitmodules | 3 +++ libraries/ghostl | 1 + 2 files changed, 4 insertions(+) create mode 160000 libraries/ghostl diff --git a/.gitmodules b/.gitmodules index ae42999675..55e05338db 100644 --- a/.gitmodules +++ b/.gitmodules @@ -25,3 +25,6 @@ [submodule "tools/sdk/uzlib"] path = tools/sdk/uzlib url = https://github.com/pfalcon/uzlib.git +[submodule "libraries/ghostl"] + path = libraries/ghostl + url = https://github.com/dok-net/ghostl.git diff --git a/libraries/ghostl b/libraries/ghostl new file mode 160000 index 0000000000..0c20db5a28 --- /dev/null +++ b/libraries/ghostl @@ -0,0 +1 @@ +Subproject commit 0c20db5a281f0ebc91dbd92e58b96a2faeba9d6f From f97e632c7989e05ab9295609906fc708106070af Mon Sep 17 00:00:00 2001 From: "Dirk O. Kaar" Date: Sat, 20 Jan 2024 22:38:27 +0100 Subject: [PATCH 7/7] Exclude ghostl-coroutines examples from CI --- tests/common.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/common.sh b/tests/common.sh index 1799f7b481..1f7f8d2b66 100755 --- a/tests/common.sh +++ b/tests/common.sh @@ -45,7 +45,9 @@ function skip_ino() *"/TeensySdioDemo/"* | \ *"/TeensySdioLogger/"* | \ *"/UserChipSelectFunction/"* | \ - *"/UserSPIDriver/"*) + *"/UserSPIDriver/"* | \ + *"/ghostl/examples/coro/"* | \ + *"/ghostl/examples/taskqueue/"*) return 0 ;; *"Teensy"*)