8000 Rename of NVS source files. · herosugi/esp32-snippets@f10d048 · GitHub
[go: up one dir, main page]

Skip to content

Commit f10d048

Browse files
committed
Rename of NVS source files.
1 parent 4f7dc99 commit f10d048

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

cpp_utils/NVS.cpp renamed to cpp_utils/CPPNVS.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@
55
* Author: kolban
66
*/
77

8+
#include "CPPNVS.h"
9+
810
#include <stdlib.h>
9-
#include "NVS.h"
1011

1112
/**
1213
* @brief Constructor.

cpp_utils/NVS.h renamed to cpp_utils/CPPNVS.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
* Author: kolban
66
*/
77

8-
#ifndef COMPONENTS_CPP_UTILS_NVS_H_
9-
#define COMPONENTS_CPP_UTILS_NVS_H_
8+
#ifndef COMPONENTS_CPP_UTILS_CPPNVS_H_
9+
#define COMPONENTS_CPP_UTILS_CPPNVS_H_
1010
#include <nvs.h>
1111
#include <string>
1212

@@ -28,4 +28,4 @@ class NVS {
2828
nvs_handle m_handle;
2929
};
3030

31-
#endif /* COMPONENTS_CPP_UTILS_NVS_H_ */
31+
#endif /* COMPONENTS_CPP_UTILS_CPPNVS_H_ */

0 commit comments

Comments
 (0)
0