From 0ccade1ef984e1de5e44e06a2b76994a8d0f1848 Mon Sep 17 00:00:00 2001 From: sumolx Date: Wed, 3 Jul 2024 10:37:01 -0400 Subject: [PATCH 1/2] PlatformIO library build support --- library.json | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 library.json diff --git a/library.json b/library.json new file mode 100644 index 0000000..219e9f6 --- /dev/null +++ b/library.json @@ -0,0 +1,23 @@ +{ + "name": "embeddedRTPS", + "version": "0.0.1", + "keywords": "embedded, rtps, dds, rtos", + "description": "A portable and open-source C++ implementation of the Real-Time Publish-Subscribe Protocol (RTPS) for embedded system", + "repository": + { + "type": "git", + "url": "https://github.com/SumolX/embeddedRTPS.git" + }, + "frameworks": "arduino", + "platforms": "esp32", + "build": { + "libArchive": false, + "flags": [ + "-I include", + "-I thirdparty/Micro-CDR/include", + "-I thirdparty/Micro-CDR/build/include" + ], + "srcDir": ".", + "srcFilter": "+<*> -" + } +} From 5a6b4b780848e5054bf121b09fd60615a0fba159 Mon Sep 17 00:00:00 2001 From: sumolx Date: Thu, 4 Jul 2024 11:24:25 -0400 Subject: [PATCH 2/2] Added official git repo --- library.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library.json b/library.json index 219e9f6..5d8a5ca 100644 --- a/library.json +++ b/library.json @@ -6,7 +6,7 @@ "repository": { "type": "git", - "url": "https://github.com/SumolX/embeddedRTPS.git" + "url": "https://github.com/embedded-software-laboratory/embeddedRTPS.git" }, "frameworks": "arduino", "platforms": "esp32",