Warns about SSP only available for ESP32 (#6455)

This commit is contained in:
Rodrigo Garcia
2022-03-28 05:43:10 -03:00
committed by GitHub
parent c25feca639
commit 905f8f2991
6 changed files with 23 additions and 1 deletions

View File

@ -10,6 +10,10 @@
#error Bluetooth is not enabled! Please run `make menuconfig` to and enable it
#endif
#if !defined(CONFIG_BT_SPP_ENABLED)
#error Serial Bluetooth not available or not enabled. It is only available for the ESP32 chip.
#endif
BluetoothSerial SerialBT;
boolean confirmRequestPending = true;