summaryrefslogtreecommitdiff
path: root/devices
diff options
context:
space:
mode:
authorDan Halbert <halbert@halwitz.org>2020-08-10 22:33:20 -0400
committerDan Halbert <halbert@halwitz.org>2020-08-10 22:33:20 -0400
commit92cf56004fedb412cde1ac5159ef23df7398fa20 (patch)
tree846397442a7a3d0e4b73b6a9313ac6cc1fc90604 /devices
parent74034d6b9d14bf70a5a65e3f001998f6716c7d46 (diff)
blue_uart_echo_test from Bluefruit app is working
Diffstat (limited to 'devices')
-rw-r--r--devices/ble_hci/common-hal/_bleio/att.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/devices/ble_hci/common-hal/_bleio/att.c b/devices/ble_hci/common-hal/_bleio/att.c
index e19a73558..603f1dde3 100644
--- a/devices/ble_hci/common-hal/_bleio/att.c
+++ b/devices/ble_hci/common-hal/_bleio/att.c
@@ -1032,7 +1032,7 @@ int att_read_group_req(uint16_t conn_handle, uint16_t start_handle, uint16_t end
struct bt_att_hdr h;
struct bt_att_read_group_req r;
} req = { {
- .code = BT_ATT_OP_ERROR_RSP,
+ .code = BT_ATT_OP_READ_GROUP_REQ,
}, {
.start_handle = start_handle,
.end_handle = end_handle,
@@ -1410,7 +1410,7 @@ STATIC void process_write_req_or_cmd(uint16_t conn_handle, uint16_t mtu, uint8_t
if (with_response) {
// There's no data in the response. We just indicate the write happened.
struct bt_att_hdr rsp = {
- .code = BT_ATT_OP_READ_REQ,
+ .code = BT_ATT_OP_WRITE_RSP,
};
hci_send_acl_pkt(conn_handle, BT_L2CAP_CID_ATT, sizeof(rsp), (uint8_t *) &rsp);