Skip to content

Commit

Permalink
Merge branch 'bugfix/fix_blufi_compilation_issue_v4.4' into 'release/…
Browse files Browse the repository at this point in the history
…v4.4'

Blufi: Fixed compilation issue in blufi for nimble(v4.4)

See merge request espressif/esp-idf!24021
  • Loading branch information
jack0c committed Jun 13, 2023
2 parents 3d743d5 + b7e5be0 commit aca729a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@ void esp_blufi_send_notify(void *arg)
return;
}
int rc = 0;
rc = ble_gatts_notify_custom(blufi_env.conn_id, gatt_values[1].val_handle, om);
rc = ble_gattc_notify_custom(conn_handle, gatt_values[1].val_handle, om);
if (rc != 0) {
ESP_LOGE(TAG, "Error in sending notification");
}
Expand Down

0 comments on commit aca729a

Please sign in to comment.