Search found 3 matches

by ataractic
Mon Feb 12, 2024 3:34 pm
Forum: ESP-IDF
Topic: esp32s3 BLE proxy performance
Replies: 3
Views: 835

Re: esp32s3 BLE proxy performance

hello, i just tried with esp_ble_gap_update_conn_params() but unfortunately, no matter what settings i enter, the function doesnt change the parameters, and the stuttering won't go away: code: esp_ble_conn_update_params_t conn_params = {0}; memcpy(conn_params.bda, mouse.address, 6); conn_params.min_...
by ataractic
Mon Feb 12, 2024 1:34 pm
Forum: ESP-IDF
Topic: esp32s3 BLE proxy performance
Replies: 3
Views: 835

Re: esp32s3 BLE proxy performance

hello, thanks for your reply, i'm still new to the field and i still don't understand a few things: a. i turned on the ble5 in the config but i don't see any macro to enable LE 2M PHY support. however as soon as i turn off ble4.2 features (in menuconfig) the program won't compile. b. it seem to be a...
by ataractic
Sun Feb 11, 2024 8:19 pm
Forum: ESP-IDF
Topic: esp32s3 BLE proxy performance
Replies: 3
Views: 835

esp32s3 BLE proxy performance

hello, i made my esp32s3 as a proxy between my mouse and my computer and notice significant lag/stuttering when moving it. i combined the two examples esp_hid_device and esp_hid_host from esp-idf. it works like this: the esp32s3 first connects to the computer then the mouse connects to the esp32s3 a...