-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Renaming OTAStorage_MKRMEM to OTAStorage_SFU in order to reflect that…
… the OTA storage medium is used in combination with the SFU second stage bootloader (#157)
- Loading branch information
Showing
3 changed files
with
20 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,8 +15,8 @@ | |
a commercial license, send an email to [email protected]. | ||
*/ | ||
|
||
#ifndef ARDUINO_OTA_STORAGE_MKRKEM_H_ | ||
#define ARDUINO_OTA_STORAGE_MKRKEM_H_ | ||
#ifndef ARDUINO_OTA_STORAGE_SFU_H_ | ||
#define ARDUINO_OTA_STORAGE_SFU_H_ | ||
|
||
/****************************************************************************** | ||
* INCLUDE | ||
|
@@ -35,12 +35,12 @@ | |
* CLASS DECLARATION | ||
******************************************************************************/ | ||
|
||
class OTAStorage_MKRMEM : public OTAStorage | ||
class OTAStorage_SFU : public OTAStorage | ||
{ | ||
public: | ||
|
||
OTAStorage_MKRMEM(); | ||
virtual ~OTAStorage_MKRMEM() { } | ||
OTAStorage_SFU(); | ||
virtual ~OTAStorage_SFU() { } | ||
|
||
|
||
virtual bool init () override; | ||
|
@@ -60,4 +60,4 @@ class OTAStorage_MKRMEM : public OTAStorage | |
|
||
#endif /* OTA_STORAGE_MKRMEM */ | ||
|
||
#endif /* ARDUINO_OTA_STORAGE_MKRKEM_H_ */ | ||
#endif /* ARDUINO_OTA_STORAGE_SFU_H_ */ |