bluekitchen / btstack

Dual-mode Bluetooth stack, with small memory footprint.
http://bluekitchen-gmbh.com
Other
1.68k stars 606 forks source link

Typo in gatt_client.c #627

Open Squidniiii opened 2 weeks ago

Squidniiii commented 2 weeks ago

Describe the bug

Apparent typo in src/ble/gatt_client.c on line 2083.

Currently:

case P_W4_SEND_SINGED_WRITE_DONE:

Should be:

case P_W4_SEND_SIGNED_WRITE_DONE:

To Reproduce

Causes compile error when that section of code is compiled.

Expected behavior

Should compile, line needs to be changed to:

case P_W4_SEND_SIGNED_WRITE_DONE:

Environment:

mringwal commented 2 weeks ago

Thanks for reporting. We fixed this one on a private branch a while ago but failed to merge it onto develop (and master). It's fixed on develop now.