Skip to content

Commit 7a5d1c6

Browse files
eivindj-nordicrlubos
authored andcommitted
samples: cellular: lte_ble_gateway: Update to use new HCI driver
Updates required by changes in zephyr upstream. Fixes an issue where the nRF52840 did not reset on init. Signed-off-by: Eivind Jølsgard <eivind.jolsgard@nordicsemi.no>
1 parent 24f8ed3 commit 7a5d1c6

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

doc/nrf/releases_and_maturity/releases/release-notes-changelog.rst

+4
Original file line numberDiff line numberDiff line change
@@ -298,6 +298,10 @@ Cellular samples
298298

299299
* Fixed an issue with an uninitialized variable in the :c:func:`handle_at_cmd_requests` function.
300300

301+
* :ref:`lte_sensor_gateway` sample:
302+
303+
* Fixed an issue with devicetree configuration after HCI updates in `sdk-zephyr`_.
304+
301305
Cryptography samples
302306
--------------------
303307

samples/cellular/lte_ble_gateway/boards/nrf9160dk_nrf9160_ns.overlay

+6
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
/ {
44
chosen {
55
zephyr,bt-uart=&lpuart;
6+
zephyr,bt-hci = &bt_hci_uart;
67
};
78
};
89

@@ -23,6 +24,11 @@
2324
status = "okay";
2425
req-pin = <21>; /* <&interface_to_nrf52840 3 0>; */
2526
rdy-pin = <19>; /* <&interface_to_nrf52840 2 0>; */
27+
28+
bt_hci_uart: bt_hci_uart {
29+
compatible = "zephyr,bt-hci-uart";
30+
status = "okay";
31+
};
2632
};
2733
};
2834

samples/cellular/lte_ble_gateway/prj.conf

+2
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,8 @@ CONFIG_CONSOLE_GETCHAR=y
5353
# Enable Bluetooth stack and libraries
5454
CONFIG_BT=y
5555
CONFIG_BT_H4=y
56+
CONFIG_BT_HCI=y
57+
CONFIG_BT_CTLR=n
5658
CONFIG_BT_WAIT_NOP=y
5759
CONFIG_BT_CENTRAL=y
5860
CONFIG_BT_GATT_CLIENT=y

0 commit comments

Comments
 (0)