diff options
author | Peter Johanson <[email protected]> | 2023-06-28 13:34:25 -0700 |
---|---|---|
committer | Pete Johanson <[email protected]> | 2024-02-09 14:32:46 -0800 |
commit | 0b5afbf9c0f752138d533cf52b1458d4e7c90f77 (patch) | |
tree | af85b182fcf728fb83adfa164efaea4fe8bd053e | |
parent | fb99496a73c5ba5f727ef98a38348447bfef4d9d (diff) | |
download | zmk-0b5afbf9c0f752138d533cf52b1458d4e7c90f77.tar.gz zmk-0b5afbf9c0f752138d533cf52b1458d4e7c90f77.zip |
refacter(bluetooth): Proper HCI header include.
-rw-r--r-- | app/src/ble.c | 2 | ||||
-rw-r--r-- | app/src/split/bluetooth/peripheral.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/src/ble.c b/app/src/ble.c index f01ed87153..3ed735a18d 100644 --- a/app/src/ble.c +++ b/app/src/ble.c @@ -19,7 +19,7 @@ #include <zephyr/bluetooth/hci.h> #include <zephyr/bluetooth/uuid.h> #include <zephyr/bluetooth/gatt.h> -#include <zephyr/bluetooth/hci_err.h> +#include <zephyr/bluetooth/hci_types.h> #if IS_ENABLED(CONFIG_SETTINGS) diff --git a/app/src/split/bluetooth/peripheral.c b/app/src/split/bluetooth/peripheral.c index e3129ceece..6ce82d0aa1 100644 --- a/app/src/split/bluetooth/peripheral.c +++ b/app/src/split/bluetooth/peripheral.c @@ -18,7 +18,7 @@ #include <zephyr/bluetooth/hci.h> #include <zephyr/bluetooth/uuid.h> #include <zephyr/bluetooth/gatt.h> -#include <zephyr/bluetooth/hci_err.h> +#include <zephyr/bluetooth/hci_types.h> #if IS_ENABLED(CONFIG_SETTINGS) |