1
0
mirror of https://github.com/esphome/esphome.git synced 2025-10-06 03:43:49 +01:00
This commit is contained in:
J. Nick Koston
2025-06-11 16:25:31 -05:00
parent ee7d95272d
commit f7533dfc5c
2 changed files with 1 additions and 3 deletions

View File

@@ -364,7 +364,7 @@ void ESP32BLE::loop() {
template<typename... Args> void enqueue_ble_event(Args... args) {
if (global_ble->ble_events_.size() >= MAX_BLE_QUEUE_SIZE) {
ESP_LOGD(TAG, "BLE event queue full (%d), dropping event", MAX_BLE_QUEUE_SIZE);
ESP_LOGD(TAG, "BLE event queue full (%zu), dropping event", MAX_BLE_QUEUE_SIZE);
return;
}

View File

@@ -60,8 +60,6 @@ class BLEEvent {
GATTS,
};
BLEEvent() = default;
// Constructor for GAP events - no external allocations needed
BLEEvent(esp_gap_ble_cb_event_t e, esp_ble_gap_cb_param_t *p) {
this->type_ = GAP;