Skip to content

Commit 50c29ea

Browse files
committed
Delete nimconfig
1 parent 3a778c7 commit 50c29ea

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+53
-469
lines changed

libraries/NimBLE/examples/Bluetooth_5/NimBLE_extended_client/NimBLE_extended_client.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#include <Arduino.h>
1212
#include <BLEDevice.h>
1313
#if !CONFIG_BT_NIMBLE_EXT_ADV
14-
#error Must enable extended advertising, see nimconfig.h file.
14+
#error Must enable extended advertising.
1515
#endif
1616

1717
#define SERVICE_UUID "ABCD"

libraries/NimBLE/examples/Bluetooth_5/NimBLE_extended_scan/NimBLE_extended_scan.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#include <Arduino.h>
1111
#include <BLEDevice.h>
1212
#if !CONFIG_BT_NIMBLE_EXT_ADV
13-
#error Must enable extended advertising, see nimconfig.h file.
13+
#error Must enable extended advertising.
1414
#endif
1515

1616
static uint32_t scanTime = 10 * 1000; // In milliseconds, 0 = scan forever

libraries/NimBLE/examples/Bluetooth_5/NimBLE_extended_server/NimBLE_extended_server.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#include <Arduino.h>
1616
#include <BLEDevice.h>
1717
#if !CONFIG_BT_NIMBLE_EXT_ADV
18-
#error Must enable extended advertising, see nimconfig.h file.
18+
#error Must enable extended advertising.
1919
#endif
2020

2121
#include "esp_sleep.h"

libraries/NimBLE/examples/Bluetooth_5/NimBLE_multi_advertiser/NimBLE_multi_advertiser.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#include <Arduino.h>
1616
#include <BLEDevice.h>
1717
#if !CONFIG_BT_NIMBLE_EXT_ADV
18-
#error Must enable extended advertising, see nimconfig.h file.
18+
#error Must enable extended advertising.
1919
#endif
2020

2121
#include "esp_sleep.h"

libraries/NimBLE/src/BLE2904.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* limitations under the License.
1616
*/
1717

18-
#include "nimconfig.h"
18+
#include "sdkconfig.h"
1919
#if defined(CONFIG_BT_ENABLED) && defined(CONFIG_BT_NIMBLE_ROLE_PERIPHERAL)
2020

2121
#include "BLE2904.h"

libraries/NimBLE/src/BLE2904.h

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

21-
#include "nimconfig.h"
21+
#include "sdkconfig.h"
2222
#if defined(CONFIG_BT_ENABLED) && defined(CONFIG_BT_NIMBLE_ROLE_PERIPHERAL)
2323

2424
#include "BLEDescriptor.h"

libraries/NimBLE/src/BLEAddress.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* limitations under the License.
1616
*/
1717

18-
#include "nimconfig.h"
18+
#include "sdkconfig.h"
1919
#if defined(CONFIG_BT_ENABLED)
2020

2121
#include "BLEAddress.h"

libraries/NimBLE/src/BLEAddress.h

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

1818
#ifndef NIMBLE_CPP_ADDRESS_H_
1919
#define NIMBLE_CPP_ADDRESS_H_
20-
#include "nimconfig.h"
20+
#include "sdkconfig.h"
2121
#if defined(CONFIG_BT_ENABLED)
2222

2323
#include "nimble/ble.h"

libraries/NimBLE/src/BLEAdvertisedDevice.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* limitations under the License.
1616
*/
1717

18-
#include "nimconfig.h"
18+
#include "sdkconfig.h"
1919
#if defined(CONFIG_BT_ENABLED) && defined(CONFIG_BT_NIMBLE_ROLE_OBSERVER)
2020

2121
#include "BLEDevice.h"

libraries/NimBLE/src/BLEAdvertisedDevice.h

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

21-
#include "nimconfig.h"
21+
#include "sdkconfig.h"
2222
#if defined(CONFIG_BT_ENABLED) && defined(CONFIG_BT_NIMBLE_ROLE_OBSERVER)
2323

2424
#include "BLEAddress.h"

0 commit comments

Comments
 (0)