Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
arduino-esp32
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
xpstem
arduino-esp32
Commits
8a8f87d3
Unverified
Commit
8a8f87d3
authored
Dec 14, 2021
by
Jakub Rybakowski
Committed by
GitHub
Dec 14, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix for BluetoothSerial build when using nimBLE instead of Bluedroid (#5920)
parent
082491d5
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
libraries/BluetoothSerial/src/BTAddress.cpp
libraries/BluetoothSerial/src/BTAddress.cpp
+1
-1
libraries/BluetoothSerial/src/BTAddress.h
libraries/BluetoothSerial/src/BTAddress.h
+1
-1
libraries/BluetoothSerial/src/BTAdvertisedDeviceSet.cpp
libraries/BluetoothSerial/src/BTAdvertisedDeviceSet.cpp
+1
-1
libraries/BluetoothSerial/src/BTScanResultsSet.cpp
libraries/BluetoothSerial/src/BTScanResultsSet.cpp
+1
-1
No files found.
libraries/BluetoothSerial/src/BTAddress.cpp
View file @
8a8f87d3
...
...
@@ -7,7 +7,7 @@
* Author: Thomas M. (ArcticSnowSky)
*/
#include "sdkconfig.h"
#if defined(CONFIG_BT_ENABLED)
#if defined(CONFIG_BT_ENABLED)
&& defined(CONFIG_BLUEDROID_ENABLED)
#include "BTAddress.h"
#include <string>
...
...
libraries/BluetoothSerial/src/BTAddress.h
View file @
8a8f87d3
...
...
@@ -10,7 +10,7 @@
#ifndef COMPONENTS_CPP_UTILS_BTADDRESS_H_
#define COMPONENTS_CPP_UTILS_BTADDRESS_H_
#include "sdkconfig.h"
#if defined(CONFIG_BT_ENABLED)
#if defined(CONFIG_BT_ENABLED)
&& defined(CONFIG_BLUEDROID_ENABLED)
#include <esp_gap_bt_api.h> // ESP32 BT
#include <string>
...
...
libraries/BluetoothSerial/src/BTAdvertisedDeviceSet.cpp
View file @
8a8f87d3
...
...
@@ -6,7 +6,7 @@
*/
#include "sdkconfig.h"
#if defined(CONFIG_BT_ENABLED)
#if defined(CONFIG_BT_ENABLED)
&& defined(CONFIG_BLUEDROID_ENABLED)
//#include <map>
...
...
libraries/BluetoothSerial/src/BTScanResultsSet.cpp
View file @
8a8f87d3
...
...
@@ -6,7 +6,7 @@
*/
#include "sdkconfig.h"
#if defined(CONFIG_BT_ENABLED)
#if defined(CONFIG_BT_ENABLED)
&& defined(CONFIG_BLUEDROID_ENABLED)
#include <esp_err.h>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment