We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9b2361 commit 7e6efc2Copy full SHA for 7e6efc2
features/FEATURE_BLE/targets/TARGET_Cypress/TARGET_CY8C63XX/Psoc6BLE.cpp
@@ -46,6 +46,8 @@ class Psoc6HCIDriver : public CordioHCIDriver
46
BdAddress() : addr_type(0) {}
47
};
48
49
+ virtual cordio::buf_pool_desc_t get_buffer_pool_description();
50
+
51
/**
52
* Initialize the chip.
53
* The transport is up at that time.
@@ -63,6 +65,12 @@ class Psoc6HCIDriver : public CordioHCIDriver
63
65
BdAddress bd_address;
64
66
67
68
+cordio::buf_pool_desc_t Psoc6HCIDriver::get_buffer_pool_description()
69
+{
70
+ // Use default buffer pool
71
+ return ble::vendor::cordio::CordioHCIDriver::get_default_buffer_pool_description();
72
+}
73
74
75
void Psoc6HCIDriver::do_initialize()
76
{
0 commit comments