-
Notifications
You must be signed in to change notification settings - Fork 7.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Callback parameter for esp_spp_cb_param_t::spp_open_evt_param open in example bluedroid/classic_bt/bt_spp_initiator (IDFGH-3447) #5409
Comments
github-actions
bot
changed the title
Callback parameter for esp_spp_cb_param_t::spp_open_evt_param open in example bluedroid/classic_bt/bt_spp_initiator
Callback parameter for esp_spp_cb_param_t::spp_open_evt_param open in example bluedroid/classic_bt/bt_spp_initiator (IDFGH-3447)
Jun 7, 2020
@DrClaudio73 Thanks for reporting, we will look into. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Environment
git describe --tags
to find it): v4.2-dev-910-g4fe04f115xtensa-esp32-elf-gcc --version
to find it):Problem Description
In file esp-idf/examples/bluetooth/bluedroid/classic_bt/bt_spp_initiator/main/example_spp_initiator_demo.c
at line 119, this instruction:
esp_spp_write(param->srv_open.handle, SPP_DATA_LEN, spp_data);
should be changed with:
esp_spp_write(param->open.handle, SPP_DATA_LEN, spp_data);
as per API reference documentation.
//Detailed problem description goes here.
struct esp_spp_cb_param_t::spp_open_evt_param open
SPP callback param of ESP_SPP_OPEN_EVT
Thank you for your great work.
The text was updated successfully, but these errors were encountered: