We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 628fba2 commit 6ac93c7Copy full SHA for 6ac93c7
examples/flashFormatter/flashFormatter.ino
@@ -33,7 +33,7 @@ void setup() {
33
Serial.println("Do you want to proceed? Y/[n]");
34
35
if (true == waitResponse()) {
36
- if(!flashFormatter.checkandFormatPartition()){
+ if(!flashFormatter.checkAndFormatPartition()){
37
Serial.println("Failed to format partition");
38
} else {
39
Serial.println("Partition formatted successfully");
src/flashFormatter/FlashFormatterBase.h
@@ -11,7 +11,7 @@
11
class FlashFormatterClass {
12
public:
13
virtual ~FlashFormatterClass() = default;
14
- virtual bool checkandFormatPartition() {
+ virtual bool checkAndFormatPartition() {
15
if(checkPartition()){
16
return true;
17
}
0 commit comments