Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions devices/ble_hci/common-hal/_bleio/att.c
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,8 @@ static void send_error(uint16_t conn_handle, uint8_t opcode, uint16_t handle, ui
.code = BT_ATT_OP_ERROR_RSP,
}, {
.request = opcode,
.handle = handle,
.error = code,
}};

hci_send_acl_pkt(conn_handle, BT_L2CAP_CID_ATT, sizeof(rsp), (uint8_t *)&rsp);
Expand Down
1 change: 1 addition & 0 deletions ports/atmel-samd/boards/feather_m4_can/mpconfigboard.mk
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ CIRCUITPY_I2CTARGET = 0
CIRCUITPY_JPEGIO = 0
CIRCUITPY_PS2IO = 0
CIRCUITPY_SYNTHIO = 0
CIRCUITPY_VECTORIO = 0

CIRCUITPY_LTO_PARTITION = one

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ CIRCUITPY_WIFI = 1

CIRCUITPY_PICODVI = 1
CIRCUITPY_AUDIOFILEWRITER = 0
CIRCUITPY_BLEIO_HCI = 0

# No room: this board fills FLASH_FIRMWARE. Frees ~9kB. Not the board's I2S
# line-out/HDMI audio, which audiobusio still provides.
Expand Down
Loading