diff options
| author | Scott Shawcroft <scott@tannewt.org> | 2020-10-08 11:02:14 -0700 |
|---|---|---|
| committer | Scott Shawcroft <scott@tannewt.org> | 2020-10-08 11:02:14 -0700 |
| commit | 76f431df704174f99f269c29382e82a0e4e03c21 (patch) | |
| tree | 4190912acf81f2edcfb969ae06c05368c4e9b8ef /devices | |
| parent | 9fcf96cb645d726cd4c80b9cce438f1633dab95f (diff) | |
Fix ble_hci
Diffstat (limited to 'devices')
| -rw-r--r-- | devices/ble_hci/common-hal/_bleio/__init__.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/devices/ble_hci/common-hal/_bleio/__init__.c b/devices/ble_hci/common-hal/_bleio/__init__.c index 9fc4b480d..8d6d76415 100644 --- a/devices/ble_hci/common-hal/_bleio/__init__.c +++ b/devices/ble_hci/common-hal/_bleio/__init__.c @@ -98,7 +98,7 @@ bleio_adapter_obj_t *common_hal_bleio_allocate_adapter_or_raise(void) { void common_hal_bleio_check_connected(uint16_t conn_handle) { if (conn_handle == BLE_CONN_HANDLE_INVALID) { - mp_raise_bleio_ConnectionError(translate("Not connected")); + mp_raise_ConnectionError(translate("Not connected")); } } |
