We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8fdf958 commit fb3da3bCopy full SHA for fb3da3b
src/utility/HCISharedMemTransport.cpp
@@ -22,11 +22,10 @@
22
#include "STM32_WPAN/hw.h"
23
#include "otp.h"
24
25
-#if defined(ARDUINO_NUCLEO_WB15CC) || defined(ARDUINO_P_NUCLEO_WB55RG) ||\
26
- defined(ARDUINO_STM32WB5MM_DK) || defined(ARDUINO_P_NUCLEO_WB55_USB_DONGLE)
27
HCISharedMemTransportClass HCISharedMemTransport;
28
-#else
29
-#error "Unsupported board or shield selected!"
+#if !defined(ARDUINO_NUCLEO_WB15CC) && !defined(ARDUINO_P_NUCLEO_WB55RG) &&\
+ !defined(ARDUINO_STM32WB5MM_DK) && !defined(ARDUINO_P_NUCLEO_WB55_USB_DONGLE)
+#warning "Selected board has never been tested with this library, ensure to have a correct configuration!"
30
#endif
31
32
/* Private variables ---------------------------------------------------------*/
0 commit comments