From 5537181e1af6d4ceaa698eb833ae403a7c3f1fe3 Mon Sep 17 00:00:00 2001 From: Johan Hedberg Date: Thu, 17 Oct 2019 18:11:17 +0300 Subject: [PATCH] Bluetooth: Fix missing includes for hci.h With the changes in PR #19836 applications now need to explicitly include hci.h to use defines from it. Fix two sample/tests apps which were missing this. Signed-off-by: Johan Hedberg --- samples/boards/bbc_microbit/pong/src/ble.c | 1 + tests/bluetooth/tester/src/gap.c | 1 + 2 files changed, 2 insertions(+) diff --git a/samples/boards/bbc_microbit/pong/src/ble.c b/samples/boards/bbc_microbit/pong/src/ble.c index b82dd8e0970..f3334b8ebc7 100644 --- a/samples/boards/bbc_microbit/pong/src/ble.c +++ b/samples/boards/bbc_microbit/pong/src/ble.c @@ -16,6 +16,7 @@ #include #include #include +#include #include "pong.h" diff --git a/tests/bluetooth/tester/src/gap.c b/tests/bluetooth/tester/src/gap.c index 4544e91bf18..e2795479288 100644 --- a/tests/bluetooth/tester/src/gap.c +++ b/tests/bluetooth/tester/src/gap.c @@ -13,6 +13,7 @@ #include #include #include +#include #include #include