Skip to content

Commit 1f2d698

Browse files
committed
rename to simply Nffs.h
1 parent 100ba3a commit 1f2d698

File tree

9 files changed

+12
-13
lines changed

9 files changed

+12
-13
lines changed

libraries/Bluefruit52Lib/examples/Peripheral/clearbonds/clearbonds.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
*********************************************************************/
1414

1515
#include <bluefruit.h>
16-
#include <ApacheNffs.h>
16+
#include <Nffs.h>
1717

1818
void setup()
1919
{

libraries/Bluefruit52Lib/src/bluefruit.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
/**************************************************************************/
3636

3737
#include "bluefruit.h"
38-
#include <ApacheNffs.h>
38+
#include <Nffs.h>
3939

4040
// Note chaning these parameters will affect APP_RAM_BASE
4141
// --> need to update RAM in feather52_s132.ld linker

libraries/nffs/examples/ListFiles/ListFiles.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
*********************************************************************/
1414

1515
#include <bluefruit.h>
16-
#include <ApacheNffs.h>
16+
#include <Nffs.h>
1717

1818
/* This example print out NFFS content up to
1919
* MAX_LEVEL level of directories (including root)

libraries/nffs/examples/ReadWrite/ReadWrite.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
*********************************************************************/
1414

1515
#include <bluefruit.h>
16-
#include <ApacheNffs.h>
16+
#include <Nffs.h>
1717

1818
#define FILENAME "/adafruit.txt"
1919
#define CONTENTS "Bluefruit Feather52's NFFS file contents"

libraries/nffs/src/ApacheNffs.cpp renamed to libraries/nffs/src/Nffs.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,7 @@
3333
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3434
*/
3535
/**************************************************************************/
36-
37-
#include "ApacheNffs.h"
36+
#include "Nffs.h"
3837

3938
#include "syscfg/syscfg.h"
4039
#include "hal/hal_flash.h"

libraries/nffs/src/ApacheNffs.h renamed to libraries/nffs/src/Nffs.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**************************************************************************/
22
/*!
3-
@file NewtNffs.h
3+
@file Nffs.h
44
@author hathach
55
66
@section LICENSE
@@ -33,8 +33,8 @@
3333
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3434
*/
3535
/**************************************************************************/
36-
#ifndef APACHENFFS_H_
37-
#define APACHENFFS_H_
36+
#ifndef NFFS_H_
37+
#define NFFS_H_
3838

3939
#include <Arduino.h>
4040

@@ -89,4 +89,4 @@ class ApacheNffs
8989

9090
extern ApacheNffs Nffs;
9191

92-
#endif /* APACHENFFS_H_ */
92+
#endif /* NFFS_H_ */

libraries/nffs/src/NffsDir.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
*/
3535
/**************************************************************************/
3636

37-
#include "ApacheNffs.h"
37+
#include "Nffs.h"
3838

3939
void NffsDir::_init(void)
4040
{

libraries/nffs/src/NffsDirEntry.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
*/
3535
/**************************************************************************/
3636

37-
#include "ApacheNffs.h"
37+
#include "Nffs.h"
3838

3939
NffsDirEntry::NffsDirEntry(void)
4040
{

libraries/nffs/src/NffsFile.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
*/
3535
/**************************************************************************/
3636

37-
#include "ApacheNffs.h"
37+
#include "Nffs.h"
3838

3939
void NffsFile::_init(void)
4040
{

0 commit comments

Comments
 (0)