This is an automated email from the ASF dual-hosted git repository. aguettouche pushed a commit to branch releases/10.0 in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git
commit 33a4947f6477d2548dff26b7a6a030a6f025db0a Author: Matias N <[email protected]> AuthorDate: Wed Oct 28 23:51:33 2020 -0300 bt_conn.c: use definition names instead of hardcoded numbers --- wireless/bluetooth/bt_conn.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wireless/bluetooth/bt_conn.c b/wireless/bluetooth/bt_conn.c index b33741b..0c13f8b 100644 --- a/wireless/bluetooth/bt_conn.c +++ b/wireless/bluetooth/bt_conn.c @@ -298,7 +298,7 @@ void bt_conn_receive(FAR struct bt_conn_s *conn, FAR struct bt_buf_s *buf, switch (flags) { - case 0x02: + case BT_HCI_ACL_NEW: /* First packet */ @@ -323,7 +323,7 @@ void bt_conn_receive(FAR struct bt_conn_s *conn, FAR struct bt_buf_s *buf, break; - case 0x01: + case BT_HCI_ACL_CONTINUATION: /* Continuation */
