File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 12
12
#include " LittleFileSystem.h"
13
13
#include " FATFileSystem.h"
14
14
15
- class C33FlashFormatter : public FlashFormatterClass {
15
+ class C33FlashFormatter : public FlashFormatterBase {
16
16
public:
17
17
C33FlashFormatter ();
18
18
protected:
Original file line number Diff line number Diff line change @@ -15,5 +15,5 @@ using FlashFormatter = MBEDH7FlashFormatter;
15
15
using FlashFormatter = C33FlashFormatter ;
16
16
#else
17
17
#include "FlashFormatterBase.h"
18
- using FlashFormatter = FlashFormatterClass ;
18
+ using FlashFormatter = FlashFormatterBase ;
19
19
#endif
Original file line number Diff line number Diff line change 8
8
#pragma once
9
9
#include < Arduino.h>
10
10
11
- class FlashFormatterClass {
11
+ class FlashFormatterBase {
12
12
public:
13
- virtual ~FlashFormatterClass () = default ;
13
+ virtual ~FlashFormatterBase () = default ;
14
14
virtual bool checkAndFormatPartition () {
15
15
if (checkPartition ()){
16
16
return true ;
Original file line number Diff line number Diff line change 12
12
#include " LittleFileSystem.h"
13
13
#include " FATFileSystem.h"
14
14
15
- class MBEDH7FlashFormatter : public FlashFormatterClass {
15
+ class MBEDH7FlashFormatter : public FlashFormatterBase {
16
16
public:
17
17
MBEDH7FlashFormatter ();
18
18
You can’t perform that action at this time.
0 commit comments