[esp32_ble] Fix spurious BLE 5.0 event warnings on ESP32-S3 (#9969)

This commit is contained in:
J. Nick Koston 2025-07-30 15:18:50 -10:00 committed by GitHub
parent 5b6e152d6c
commit f25abc3248
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -468,6 +468,8 @@ void ESP32BLE::gap_event_handler(esp_gap_ble_cb_event_t event, esp_ble_gap_cb_pa
// Ignore these GAP events as they are not relevant for our use case
case ESP_GAP_BLE_UPDATE_CONN_PARAMS_EVT:
case ESP_GAP_BLE_SET_PKT_LENGTH_COMPLETE_EVT:
case ESP_GAP_BLE_PHY_UPDATE_COMPLETE_EVT: // BLE 5.0 PHY update complete
case ESP_GAP_BLE_CHANNEL_SELECT_ALGORITHM_EVT: // BLE 5.0 channel selection algorithm
return;
default: