Closed
Description
code:
Serial.print("Forming a connection to ");
Serial.println(pAddress.toString().c_str());
BLEClient* pClient = BLEDevice::createClient();
Serial.println(" - Created client");
// Connect to the remove BLE Server.
pClient->connect(pAddress);
Serial.println(" - Connected to server");
[...]
BLEAddress addr = BLEAddress((std::string)"e7:5b:f9:bf:02:52");
connectToServer(addr, ...);
output:
- Created client
E (1409) BT: btc_gattc_call_handler()
Guru Meditation Error of type LoadStoreAlignment occurred on core 1. Exception was unhandled.
(register dump follows)
Obviously I'm failing to create the connection. I haven't been able to figure out why.