diff options
| author | Dan Halbert <halbert@adafruit.com> | 2019-12-12 19:46:01 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-12-12 19:46:01 -0500 |
| commit | 6c3d555b873fb7dddfa09ff24c6630c1aae47d3d (patch) | |
| tree | a917ae749ce18505325184f55b1ab74d2c4a631f /shared-bindings | |
| parent | 10183d59246a1d266b9c5df11aabc105fbdb3178 (diff) | |
| parent | 51ba0ed2501ba2467e2b8da708bcc8ba6ab09a7c (diff) | |
Merge pull request #2382 from tannewt/scannable_connectable_extended_error
Add extended, connectable and scannable error.
Diffstat (limited to 'shared-bindings')
| -rw-r--r-- | shared-bindings/_bleio/Adapter.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/shared-bindings/_bleio/Adapter.c b/shared-bindings/_bleio/Adapter.c index 9772fa830..5d3211b0c 100644 --- a/shared-bindings/_bleio/Adapter.c +++ b/shared-bindings/_bleio/Adapter.c @@ -29,6 +29,7 @@ #include "py/objproperty.h" #include "py/runtime.h" +#include "shared-bindings/_bleio/__init__.h" #include "shared-bindings/_bleio/Address.h" #include "shared-bindings/_bleio/Adapter.h" @@ -185,7 +186,12 @@ STATIC mp_obj_t bleio_adapter_start_advertising(mp_uint_t n_args, const mp_obj_t ADV_INTERVAL_MIN_STRING, ADV_INTERVAL_MAX_STRING); } - common_hal_bleio_adapter_start_advertising(self, args[ARG_connectable].u_bool, interval, + bool connectable = args[ARG_connectable].u_bool; + if (data_bufinfo.len > 31 && connectable && scan_response_bufinfo.len > 0) { + mp_raise_bleio_BluetoothError(translate("Cannot have scan responses for extended, connectable advertisements.")); + } + + common_hal_bleio_adapter_start_advertising(self, connectable, interval, &data_bufinfo, &scan_response_bufinfo); return mp_const_none; |
