Skip to content

Commit fd613cb

Browse files
committed
fix(nimble): Fix includes
1 parent 8178d1a commit fd613cb

File tree

5 files changed

+4
-6
lines changed

5 files changed

+4
-6
lines changed

libraries/BLE/src/BLE2901.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
***************************************************************************/
3535

3636
#if defined(CONFIG_NIMBLE_ENABLED)
37-
#include "host/ble_att.h"
37+
#include <host/ble_att.h>
3838
#define ESP_GATT_MAX_ATTR_LEN BLE_ATT_ATTR_MAX_LEN
3939
#endif
4040

libraries/BLE/src/BLERemoteService.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,6 @@
2626
#include <esp_err.h>
2727
#include "esp32-hal-log.h"
2828

29-
#pragma GCC diagnostic warning "-Wunused-but-set-parameter"
30-
3129
/***************************************************************************
3230
* Common functions *
3331
***************************************************************************/

libraries/BLE/src/BLEScan.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
***************************************************************************/
4141

4242
#if defined(CONFIG_NIMBLE_ENABLED)
43-
#include "host/ble_gap.h"
43+
#include <host/ble_gap.h>
4444
#endif
4545

4646
/***************************************************************************

libraries/BLE/src/BLEService.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
*****************************************************************************/
4141

4242
#if defined(CONFIG_NIMBLE_ENABLED)
43-
#include "host/ble_gatt.h"
43+
#include <host/ble_gatt.h>
4444
#endif
4545

4646
/*****************************************************************************

libraries/BLE/src/BLEUUID.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
*****************************************************************************/
4444

4545
#if defined(CONFIG_NIMBLE_ENABLED)
46-
#include "host/ble_uuid.h"
46+
#include <host/ble_uuid.h>
4747
#define BLE_UUID_16_BITS BLE_UUID_TYPE_16
4848
#define BLE_UUID_32_BITS BLE_UUID_TYPE_32
4949
#define BLE_UUID_128_BITS BLE_UUID_TYPE_128

0 commit comments

Comments
 (0)