Skip to content

Commit 4e15eff

Browse files
authored
Merge pull request #3 from RonEld/compilation_fixes
Fix compilation errors on linux machine
2 parents 9cd9681 + 3dceed6 commit 4e15eff

File tree

25 files changed

+25
-25
lines changed

25 files changed

+25
-25
lines changed

features/FEATURE_BLE/targets/TARGET_NORDIC/TARGET_NRF5_SDK13/source/btle/btle.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ extern "C" {
2424
#include "common/common.h"
2525

2626
#include "ble_srv_common.h"
27-
#include "headers\ble.h"
27+
#include "headers/ble.h"
2828

2929
error_t btle_init(void);
3030

features/FEATURE_BLE/targets/TARGET_NORDIC/TARGET_NRF5_SDK13/source/btle/custom/custom_helper.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
#define _CUSTOM_HELPER_H_
1919

2020
#include "common/common.h"
21-
#include "headers\ble.h"
21+
#include "headers/ble.h"
2222
#include "ble/UUID.h"
2323
#include "ble/GattCharacteristic.h"
2424

features/FEATURE_BLE/targets/TARGET_NORDIC/TARGET_NRF5_SDK13/source/nRF5xGap.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
#define YOTTA_CFG_IRK_TABLE_MAX_SIZE BLE_GAP_WHITELIST_IRK_MAX_COUNT
4040
#endif
4141
#include "ble/blecommon.h"
42-
#include "headers\ble.h"
42+
#include "headers/ble.h"
4343
#include "ble/GapAdvertisingParams.h"
4444
#include "ble/GapAdvertisingData.h"
4545
#include "ble/Gap.h"

features/FEATURE_BLE/targets/TARGET_NORDIC/TARGET_NRF5_SDK13/source/nRF5xGattServer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
#include <stddef.h>
2121

2222
#include "ble/blecommon.h"
23-
#include "headers\ble.h" /* nordic ble */
23+
#include "headers/ble.h" /* nordic ble */
2424
#include "ble/Gap.h"
2525
#include "ble/GattServer.h"
2626

features/FEATURE_BLE/targets/TARGET_NORDIC/TARGET_NRF5_SDK13/source/nRF5xServiceDiscovery.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
#include "ble/DiscoveredService.h"
2222
#include "nRF5xDiscoveredCharacteristic.h"
2323

24-
#include "headers\ble.h"
24+
#include "headers/ble.h"
2525
#include "ble_gattc.h"
2626

2727
class nRF5xGattClient; /* forward declaration */

targets/TARGET_NORDIC/TARGET_NRF5_SDK13/sdk/ble/ble_advertising/ble_advertising.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262

6363
#include <stdint.h>
6464
#include "nrf_error.h"
65-
#include "headers\ble.h"
65+
#include "headers/ble.h"
6666
#include "ble_gattc.h"
6767
#include "ble_advdata.h"
6868

targets/TARGET_NORDIC/TARGET_NRF5_SDK13/sdk/ble/common/ble_advdata.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
#include <stdint.h>
5252
#include <stdbool.h>
5353
#include <string.h>
54-
#include "headers\ble.h"
54+
#include "headers/ble.h"
5555
#include "app_util.h"
5656

5757
#ifdef __cplusplus

targets/TARGET_NORDIC/TARGET_NRF5_SDK13/sdk/ble/common/ble_conn_params.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
#define BLE_CONN_PARAMS_H__
4949

5050
#include <stdint.h>
51-
#include "headers\ble.h"
51+
#include "headers/ble.h"
5252
#include "ble_srv_common.h"
5353

5454
#ifdef __cplusplus

targets/TARGET_NORDIC/TARGET_NRF5_SDK13/sdk/ble/common/ble_conn_state.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
#include <stdbool.h>
4141
#include <stdint.h>
4242
#include <string.h>
43-
#include "headers\ble.h"
43+
#include "headers/ble.h"
4444
#include "sdk_mapped_flags.h"
4545
#include "app_error.h"
4646

targets/TARGET_NORDIC/TARGET_NRF5_SDK13/sdk/ble/common/ble_conn_state.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868

6969
#include <stdbool.h>
7070
#include <stdint.h>
71-
#include "headers\ble.h"
71+
#include "headers/ble.h"
7272
#include "sdk_mapped_flags.h"
7373

7474
#ifdef __cplusplus

0 commit comments

Comments
 (0)