We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 33b588f commit 15060e4Copy full SHA for 15060e4
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 check / format flash");
38
} else {
39
Serial.println("Flash checked / 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