Closed frankl83 closed 3 years ago
Hello @frankl83. Yes, I had the PR opened for 9 months. There were nearly 200 PRs pending at that time, so I honestly thought there were no real interest in public contributions, so I gave up and closed mine. Too bad, because the following week most of the PRs were merged (Murphy's law).
Anyway, the patches are available in my fork for everybody.
My project also hang after disconnecting. my board: TTGO T-Display
PS. Sometimes it also hang on second connection (connect -> disconnect -> connect)
PS2. replacing BluetoothSerial by @jcdevel fork does not help
#include "BluetoothSerial.h"
BluetoothSerial BT;
#if !defined(CONFIG_BT_ENABLED) || !defined(CONFIG_BLUEDROID_ENABLED)
#error Bluetooth is not enabled! Please run `make menuconfig` to and enable it
#endif
void setup() {
Serial.begin(115200);
BT.begin("ESP32");
}
void loop(){
BT.println(millis());
Serial.println(millis());
}
[STALE_SET] This issue has been automatically marked as stale because it has not had recent activity. It will be closed in 14 days if no further activity occurs. Thank you for your contributions.
[STALE_DEL] This stale issue has been automatically closed. Thank you for your contributions.
This is the example code used to replicate the bug:
Sketch