Skip to content

Commit 16cbc97

Browse files
paul-szczepanek-armpan-
authored andcommitted
enum for acl changed name from data to acl to match stack
1 parent 3a46d09 commit 16cbc97

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

features/FEATURE_BLE/targets/TARGET_CORDIO_LL/stack_adaptation/custom_chci_tr.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ uint16_t CustomChciTrRead(uint8_t prot, uint8_t hci_type, uint16_t len, uint8_t
3333
controller_type = CHCI_TR_TYPE_CMD;
3434
break;
3535
case HCI_ACL_TYPE:
36-
controller_type = CHCI_TR_TYPE_DATA;
36+
controller_type = CHCI_TR_TYPE_ACL;
3737
break;
3838
case HCI_ISO_TYPE:
3939
controller_type = CHCI_TR_TYPE_ISO;
@@ -56,7 +56,7 @@ uint16_t CustomChciTrWrite(uint8_t prot, uint8_t controller_type, uint16_t len,
5656
case CHCI_TR_TYPE_EVT:
5757
hci_type = HCI_EVT_TYPE;
5858
break;
59-
case CHCI_TR_TYPE_DATA:
59+
case CHCI_TR_TYPE_ACL:
6060
hci_type = HCI_ACL_TYPE;
6161
break;
6262
case CHCI_TR_TYPE_ISO:

0 commit comments

Comments
 (0)