I am trying to connect two ESP32 via Bluetooth, while one is serving as
the server and one as a client. Connecting the client to the server
works just fine and discovering the characteristic works too. But when I
try to register the characteristic for notify, I get an error message.
The rest of my code seems to work just fine, because if I don't register
the characteristic for notifying, I don't have any problems.
1 | if (pRemoteCharacteristic->canNotify()) {
|
2 | Serial.println("Setting up notify");
|
3 | pRemoteCharacteristic->registerForNotify(notifyCallback);
|
4 | }
|
I always get the following error message:
1 | Guru Meditation Error: Core 1 panic'ed (LoadProhibited). Exception was unhandled.
|
2 | Core 1 register dump:
|
3 | PC : 0x400d495f PS : 0x00060330 A0 : 0x800d4154 A1 : 0x3ffca250
|
4 | A2 : 0x00000000 A3 : 0x3ffca29e A4 : 0x00000002 A5 : 0x00000000
|
5 | A6 : 0x3ffe1ac8 A7 : 0x3f01a2e0 A8 : 0x800d3e4c A9 : 0x3ffca200
|
6 | A10 : 0x3ffca24c A11 : 0xaab8b50c A12 : 0x3ffc60e4 A13 : 0xaab8b50c
|
7 | A14 : 0x3ffca200 A15 : 0xff000000 SAR : 0x00000008 EXCCAUSE: 0x0000001c
|
8 | EXCVADDR: 0x00000030 LBEG : 0x4000c2e0 LEND : 0x4000c2f6 LCOUNT : 0x00000000
|
9 |
|
10 | Backtrace: 0x400d495f:0x3ffca250 0x400d4151:0x3ffca280 0x400d1ba5:0x3ffca2e0 0x400d1c42:0x3ffca350 0x400d86bd:0x3ffca390 0x40090461:0x3ffca3b0
|
Does anyone know how to avoid this error?
Thanks in advance,
Dennis