Lines Matching +full:is +full:- +full:dual

1 .. _bluetooth-dev:
7 approach that is described in the :ref:`application` section of the
10 Additional information that is only relevant to Bluetooth applications can be
16 Calling into the Bluetooth API is intended to be thread safe, unless otherwise
18 is the case for all API calls is an ongoing one, but the overall goal is
22 .. _bluetooth-hw-setup:
28 applications with Zephyr. Depending on the hardware that is available to you,
43 that the application is targeting.
44 All the :ref:`bluetooth-configs` and :ref:`bluetooth-build-types` are supported
45 but you might need to build Zephyr more than once if you are using a dual-chip
50 <getting_started>`, choose one (or more if you are using a dual-chip solution)
54 .. _bluetooth-hci-tracing:
57 --------------------
62 is a special Bluetooth logging mode that converts the console to use a binary
67 .. code-block:: console
79 .. code-block:: console
81 $ btmon --tty <console TTY> --tty-speed 115200
87 This is currently only available on GNU/Linux
89 This setup relies on a "dual-chip" :ref:`configuration <bluetooth-configs>`
90 which is comprised of the following devices:
92 #. A :ref:`Host-only <bluetooth-build-types>` application running in the
98 * A :ref:`Controller-only <bluetooth-build-types>` build of Zephyr
111 sample), or if there is no data flowing from the Controller to the Host, then
116 ----
124 ------------
127 This is currently only available on GNU/Linux
132 This executable is a normal Linux program, which can be debugged and
144 This is currently only available on GNU/Linux
146 The :ref:`nrf52_bsim board <nrf52_bsim>`, is a simulated target board
155 Just like with the ``native_posix`` target, the build result is a normal Linux
162 <bluetooth-build-types>` are possible, as this board does not yet have
170 The Bluetooth subsystem is initialized using the :c:func:`bt_enable`
172 the return code for errors. If a function pointer is passed to
174 completion is notified through the given function.
179 A simple Bluetooth beacon application is shown below. The application
180 initializes the Bluetooth Subsystem and enables non-connectable
185 :lines: 19-