8000 Change local includes from brackets to quotes · lowdown1983/esp32-snippets@125ceb3 · GitHub
[go: up one dir, main page]

Skip to content

Commit 125ceb3

Browse files
committed
Change local includes from brackets to quotes
1 parent 47563cb commit 125ceb3

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

cpp_utils/BLESecurity.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* Author: chegewara
66
*/
77

8-
#include <BLESecurity.h>
8+
#include "BLESecurity.h"
99
#include "sdkconfig.h"
1010
#if defined(CONFIG_BT_ENABLED)
1111

cpp_utils/File.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#include <string>
1212
#include <stdlib.h>
1313
#include <stdio.h>
14-
#include <GeneralUtils.h>
14+
#include "GeneralUtils.h"
1515

1616
static const char* LOG_TAG = "File";
1717
/**

cpp_utils/GeneralUtils.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
#include <string>
1414
#include <sstream>
1515
#include <iomanip>
16-
#include <FreeRTOS.h>
16+
#include "FreeRTOS.h"
1717
#include <esp_err.h>
1818
#include <nvs.h>
1919
#include <esp_wifi.h>
@@ -440,7 +440,7 @@ const char* GeneralUtils::errorToString(esp_err_t errCode) {
440440
* @brief Convert a wifi_err_reason_t code to a string.
441441
* @param [in] errCode The errCode to be converted.
442442
* @return A string representation of the error code.
443-
*
443+
*
444444
* @note: wifi_err_reason_t values as of April 2018 are: (1-24, 200-204) and are defined in ~/esp-idf/components/esp32/include/esp_wifi_types.h.
445445
*/
446446
const char* GeneralUtils::wifiErrorToString(uint8_t errCode) {

cpp_utils/MFRC522.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818

1919
#include "MFRC522.h"
2020
#include "MFRC522Debug.h"
21-
#include <FreeRTOS.h>
22-
#include <GPIO.h>
21+
#include "FreeRTOS.h"
22+
#include "GPIO.h"
2323
#include <string.h>
2424
#include <sstream>
2525
#include <iomanip>

cpp_utils/SockServ.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@
77

88
#include <errno.h>
99
#include <esp_log.h>
10-
#include <FreeRTOS.h>
1110
#include <freertos/FreeRTOS.h>
1211
#include <freertos/queue.h>
13-
1412
#include <stdint.h>
13+
1514
#include <string.h>
1615
#include <string>
1716

1817
#include "sdkconfig.h"
18+
#include "FreeRTOS.h"
1919
#include "SockServ.h"
2020
#include "Socket.h"
2121

cpp_utils/TFTP.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@
99

1010
#include "TFTP.h"
1111
#include <esp_log.h>
12-
#include <FreeRTOS.h>
13-
#include <GeneralUtils.h>
12+
#include "FreeRTOS.h"
13+
#include "GeneralUtils.h"
1414
#include <string>
1515
#include <stdio.h>
1616
#include <errno.h>
1717
#include <string.h>
18-
#include <Socket.h>
18+
#include "Socket.h"
1919

2020
#include "sdkconfig.h"
2121

0 commit comments

Comments
 (0)
0