From 0b3b90ae16603c22b18e7d88fbe37fd8d2a687a8 Mon Sep 17 00:00:00 2001 From: Dan Halbert Date: Tue, 10 Feb 2026 18:48:26 -0500 Subject: [PATCH] ble_hci PacketBuffer.h: need a def for ble_event_handler_t --- devices/ble_hci/common-hal/_bleio/PacketBuffer.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/devices/ble_hci/common-hal/_bleio/PacketBuffer.h b/devices/ble_hci/common-hal/_bleio/PacketBuffer.h index 563f365d21b01..4e001339fe323 100644 --- a/devices/ble_hci/common-hal/_bleio/PacketBuffer.h +++ b/devices/ble_hci/common-hal/_bleio/PacketBuffer.h @@ -28,4 +28,7 @@ typedef struct { bool packet_queued; } bleio_packet_buffer_obj_t; +// Unused, but needed for _common_hal_bleio_packet_buffer_construct() +typedef void *ble_event_handler_t; + void bleio_packet_buffer_update(bleio_packet_buffer_obj_t *self, mp_buffer_info_t *bufinfo);