Skip to content

Commit

Permalink
Change local includes from brackets to quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
toxuin committed Oct 18, 2018
1 parent 47563cb commit 125ceb3
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion cpp_utils/BLESecurity.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Author: chegewara
*/

#include <BLESecurity.h>
#include "BLESecurity.h"
#include "sdkconfig.h"
#if defined(CONFIG_BT_ENABLED)

Expand Down
2 changes: 1 addition & 1 deletion cpp_utils/File.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#include <string>
#include <stdlib.h>
#include <stdio.h>
#include <GeneralUtils.h>
#include "GeneralUtils.h"

static const char* LOG_TAG = "File";
/**
Expand Down
4 changes: 2 additions & 2 deletions cpp_utils/GeneralUtils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
#include <string>
#include <sstream>
#include <iomanip>
#include <FreeRTOS.h>
#include "FreeRTOS.h"
#include <esp_err.h>
#include <nvs.h>
#include <esp_wifi.h>
Expand Down Expand Up @@ -440,7 +440,7 @@ const char* GeneralUtils::errorToString(esp_err_t errCode) {
* @brief Convert a wifi_err_reason_t code to a string.
* @param [in] errCode The errCode to be converted.
* @return A string representation of the error code.
*
*
* @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.
*/
const char* GeneralUtils::wifiErrorToString(uint8_t errCode) {
Expand Down
4 changes: 2 additions & 2 deletions cpp_utils/MFRC522.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@

#include "MFRC522.h"
#include "MFRC522Debug.h"
#include <FreeRTOS.h>
#include <GPIO.h>
#include "FreeRTOS.h"
#include "GPIO.h"
#include <string.h>
#include <sstream>
#include <iomanip>
Expand Down
4 changes: 2 additions & 2 deletions cpp_utils/SockServ.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@

#include <errno.h>
#include <esp_log.h>
#include <FreeRTOS.h>
#include <freertos/FreeRTOS.h>
#include <freertos/queue.h>

#include <stdint.h>

#include <string.h>
#include <string>

#include "sdkconfig.h"
#include "FreeRTOS.h"
#include "SockServ.h"
#include "Socket.h"

Expand Down
6 changes: 3 additions & 3 deletions cpp_utils/TFTP.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@

#include "TFTP.h"
#include <esp_log.h>
#include <FreeRTOS.h>
#include <GeneralUtils.h>
#include "FreeRTOS.h"
#include "GeneralUtils.h"
#include <string>
#include <stdio.h>
#include <errno.h>
#include <string.h>
#include <Socket.h>
#include "Socket.h"

#include "sdkconfig.h"

Expand Down

0 comments on commit 125ceb3

Please sign in to comment.