Hei,
Is it possible to use BLE advertisement type ADV_NONCONN_IND (non-connectable, non-scannable, undirected) with CircuitPython?
I can switch between ADV_IND (connectable, scannable, undirected) and ADV_SCAN_IND (non-connectable, scannable, undirected) by setting the attribute 'connectable' of an Advertisement object to 'True' or 'False'. But haven't figured out if it is possible to use ADV_NONCONN_IND with CP.
In the source code of 'def start_advertising()' in https://github.com/adafruit/Adafruit_Ci ... _init__.py it look like there always will be a 'scan_response' before 'self._adapter.start_advertising()' is called. If none scan_reponse is passed as parameter to 'start_advertising()', one will be created before calling the adapter.
I'm using nRF52840 Dongle with CP ver 6.0.1