babblesim: Fix EDTT transport nad target

This commit is contained in:
Andrzej Kaczmarek
2022-09-06 11:36:22 +02:00
parent 77cf738074
commit 886597f223
2 changed files with 9 additions and 3 deletions
@@ -142,7 +142,7 @@ ble_hci_edtt_cmdevt_tx(uint8_t *hci_ev, uint8_t edtt_type)
* A BLE_ERR_[...] error code on failure.
*/
int
ble_transport_to_hs_evt(void *buf)
ble_transport_to_hs_evt_impl(void *buf)
{
return ble_hci_edtt_cmdevt_tx(buf, BLE_HCI_EDTT_EVT);
}
@@ -156,11 +156,17 @@ ble_transport_to_hs_evt(void *buf)
* A BLE_ERR_[...] error code on failure.
*/
int
ble_transport_to_hs_acl(struct os_mbuf *om)
ble_transport_to_hs_acl_impl(struct os_mbuf *om)
{
return ble_hci_edtt_acl_tx(om);
}
void
ble_transport_hs_init(void)
{
}
/**
* @brief Clean out excess bytes from the input buffer
*/
+1 -1
View File
@@ -26,6 +26,7 @@ syscfg.vals:
EDTT_HCI_LOG_FILE: ("hci_logs")
EDTT_HCI_LOGS: 1
BLE_LL_HCI_VS_EVENT_ON_ASSERT: 0
BLE_LL_CFG_FEAT_LE_ENCRYPTION: 1
BLE_LL_CFG_FEAT_CONN_PARAM_REQ: 1
BLE_LL_CFG_FEAT_SLAVE_INIT_FEAT_XCHG: 1
@@ -47,7 +48,6 @@ syscfg.vals:
BLE_ROLE_OBSERVER: 1
BLE_VERSION: 52
BLE_CONTROLLER: 1
BLE_LL_ROLE_CENTRAL: 1
BLE_LL_ROLE_PERIPHERAL: 1
BLE_LL_ROLE_BROADCASTER: 1