We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df9c8b6 commit 2ce00cdCopy full SHA for 2ce00cd
extras/tests/TestFolderOperations/TestFolderOperations.ino
@@ -171,7 +171,7 @@ void setup(){
171
#endif
172
173
#if defined(HAS_SD)
174
- runTests(&&sd, "SD");
+ runTests(&sd, "SD");
175
176
177
}
src/Partitioning.h
@@ -6,7 +6,7 @@
6
7
constexpr int mbrBlockSize = 4096;
8
constexpr int mbrPartitionType = 0x0B;
9
-constexpr char * mountPointName = "mountPoint";
+constexpr const char * mountPointName = "mountPoint";
10
constexpr int maximumMBRPartitions = 4;
11
constexpr int emptyPartitionType = 0x00;
12
constexpr uint8_t mbrMagicNumbers[] = {0x55, 0xAA};
0 commit comments