From 2b20dc74b38931966a85aced22c00180e1502f9f Mon Sep 17 00:00:00 2001 From: Hideaki Tai Date: Thu, 25 Jul 2024 02:42:26 +0900 Subject: [PATCH 1/2] feat: disable network interface with PACKETIZER_DISABLE_NETWORK --- Packetizer.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Packetizer.h b/Packetizer.h index bd88763..0786cd0 100644 --- a/Packetizer.h +++ b/Packetizer.h @@ -18,11 +18,13 @@ #endif #endif +#ifndef PACKETIZER_DISABLE_NETWORK #if defined(PACKETIZER_ENABLE_ETHER) || defined(PACKETIZER_ENABLE_WIFI) #define PACKETIZER_ENABLE_NETWORK #include #include #endif +#endif // PACKETIZER_DISABLE_NETWORK #include #include From 0e99d721788648bde78293937f9fd4439fda80c4 Mon Sep 17 00:00:00 2001 From: Hideaki Tai Date: Thu, 25 Jul 2024 02:42:45 +0900 Subject: [PATCH 2/2] chore: bump version v0.8.3 --- library.json | 2 +- library.properties | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/library.json b/library.json index 5940990..90891bd 100644 --- a/library.json +++ b/library.json @@ -11,7 +11,7 @@ "url": "https://github.com/hideakitai", "maintainer": true }, - "version": "0.8.2", + "version": "0.8.3", "license": "MIT", "frameworks": "*", "platforms": "*", diff --git a/library.properties b/library.properties index cae4f1e..beaa923 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=Packetizer -version=0.8.2 +version=0.8.3 author=hideakitai maintainer=hideakitai sentence=binary data packetization encoder / decoder based on COBS / SLIP encoding