From bd6b20dedd1f9cb3d771a82969b34bb7334d1310 Mon Sep 17 00:00:00 2001 From: "Earle F. Philhower, III" Date: Wed, 4 Oct 2023 09:39:01 -0700 Subject: [PATCH] Mark the BTStackLib as unsupported (#1751) Per https://github.com/bluekitchen/btstack/issues/529#issuecomment-1746293987 Don't run BTstackLib examples in CI --- libraries/BTstackLib/src/BTstackLib.h | 2 ++ tests/common.sh | 1 + 2 files changed, 3 insertions(+) diff --git a/libraries/BTstackLib/src/BTstackLib.h b/libraries/BTstackLib/src/BTstackLib.h index f5d4ada27..f8e937da8 100644 --- a/libraries/BTstackLib/src/BTstackLib.h +++ b/libraries/BTstackLib/src/BTstackLib.h @@ -2,6 +2,8 @@ Arduino Wrapper for BTstack */ +#warning The BTStackLib is no longer supported by BlueKitchen, use at your own risk + #include <_needsbt.h> #ifndef __ARDUINO_BTSTACK_H diff --git a/tests/common.sh b/tests/common.sh index 8b1ac89ce..4ce0c9cd4 100755 --- a/tests/common.sh +++ b/tests/common.sh @@ -24,6 +24,7 @@ function skip_ino() /p13_TouchSensorLamp/ /StringComparisonOperators/ /PDMSerialPlotter/ +/BTstackLib/ EOL echo $ino | grep -q -F "$skiplist" echo $(( 1 - $? ))