diff --git a/features/FEATURE_BLE/targets/TARGET_CORDIO_ODIN_W2/HCIDriver.cpp b/features/FEATURE_BLE/targets/TARGET_CORDIO_ODIN_W2/HCIDriver.cpp index fe5fbdc4ab..2e4f112724 100644 --- a/features/FEATURE_BLE/targets/TARGET_CORDIO_ODIN_W2/HCIDriver.cpp +++ b/features/FEATURE_BLE/targets/TARGET_CORDIO_ODIN_W2/HCIDriver.cpp @@ -41,6 +41,8 @@ public: service_pack_transfered(false) { }; + virtual cordio::buf_pool_desc_t get_buffer_pool_description(); + virtual void do_initialize(); virtual void do_terminate(); @@ -134,6 +136,13 @@ private: } // namespace vendor } // namespace ble + +ble::vendor::cordio::buf_pool_desc_t ble::vendor::odin_w2::HCIDriver::get_buffer_pool_description() +{ + // Use default buffer pool + return ble::vendor::cordio::CordioHCIDriver::get_default_buffer_pool_description(); +} + void ble::vendor::odin_w2::HCIDriver::do_initialize() { cordio_callback_s callback;