10000 Updated sample header file locations · herosugi/esp32-snippets@e2996a4 · GitHub
[go: up one dir, main page]

Skip to content

Commit e2996a4

Browse files
committed
Updated sample header file locations
We renamed a header using Eclipse refactoring which changed paths in an unexpected way. This commit corrects them by hand.
1 parent 9708e30 commit e2996a4

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

cpp_utils/tests/BLE Tests/Sample-MLE-15.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#include <esp_log.h>
44
#include <string>
55

6-
#include "../components/cpp_utils/BLEDevice.h"
6+
#include "BLEDevice.h"
77
#include "BLEAdvertisedDevice.h"
88
#include "BLEClient.h"
99
#include "sdkconfig.h"

cpp_utils/tests/BLE Tests/Sample1.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#include <esp_log.h>
44
#include <string>
55

6-
#include "../../BLEDevice.h"
6+
#include "BLEDevice.h"
77
#include "sdkconfig.h"
88

99
// See the following for generating UUIDs:
@@ -13,7 +13,7 @@
1313
#define CHARACTERISTIC_UUID "beb5483e-36e1-4688-b7f5-ea07361b26a8"
1414

1515
static void run() {
16-
BLE::initServer("MYDEVICE");
16+
BLEDevice::init("MYDEVICE");
1717

1818
BLEServer *pServer = new BLEServer();
1919

cpp_utils/tests/BLE Tests/SampleClient.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#include <string>
33
#include <sstream>
44
#include <sys/time.h>
5-
#include "../components/cpp_utils/BLEDevice.h"
5+
#include "BLEDevice.h"
66

7 10000 7
#include "BLEAdvertisedDevice.h"
88
#include "BLEClient.h"

cpp_utils/tests/BLE Tests/SampleNotify.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
#include <string>
2424
#include <sstream>
2525
#include <sys/time.h>
26-
#include "../components/cpp_utils/BLEDevice.h"
26+
#include "BLEDevice.h"
2727

2828
#include "BLEServer.h"
2929
#include "BLEUtils.h"

cpp_utils/tests/BLE Tests/SampleRead.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#include <string>
55
#include <sys/time.h>
66
#include <sstream>
7-
#include "../components/cpp_utils/BLEDevice.h"
7+
#include "BLEDevice.h"
88

99
#include "sdkconfig.h"
1010

cpp_utils/tests/BLE Tests/SampleScan.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#include <esp_log.h>
44
#include <string>
55

6-
#include "../components/cpp_utils/BLEDevice.h"
6+
#include "BLEDevice.h"
77
#include "BLEAdvertisedDevice.h"
88
#include "sdkconfig.h"
99

cpp_utils/tests/BLE Tests/SampleServer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#include <esp_log.h>
55
#include <string>
66
#include <Task.h>
7-
#include "../components/cpp_utils/BLEDevice.h"
7+
#include "BLEDevice.h"
88

99
#include "sdkconfig.h"
1010

cpp_utils/tests/BLE Tests/SampleWrite.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#include <string>
55
#include <sys/time.h>
66
#include <sstream>
7-
#include "../components/cpp_utils/BLEDevice.h"
7+
#include "BLEDevice.h"
88

99
#include "sdkconfig.h"
1010

0 commit comments

Comments
 (0)
0