You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 18, 2023. It is now read-only.
*[3. FS_Test on Nano 33 BLE with FATFS size 256KB](#3-fs_test-on-nano-33-ble-with-fatfs-size-256kb)
33
31
*[Debug](#debug)
34
32
*[Troubleshooting](#troubleshooting)
35
-
*[Releases](#releases)
36
33
*[Issues](#issues)
37
34
*[TO DO](#to-do)
38
35
*[DONE](#done)
@@ -58,23 +55,13 @@ The filesystem access uses normal [POSIX APIs](https://www.tutorialspoint.com/c_
58
55
59
56
1.**MBED nRF52840-based boards such as Nano_33_BLE, Nano_33_BLE_Sense**, etc. using [**Arduino-mbed mbed_nano** core](https://github.com/arduino/ArduinoCore-mbed)
60
57
61
-
---
62
-
---
63
-
64
-
## Changelog
65
-
66
-
### Initial Releases v1.0.0
67
-
68
-
1. Initial coding to support MBED nRF52840-based boards such as **Nano_33_BLE, Nano_33_BLE_Sense**, etc. using [**Arduino-mbed mbed_nano** core](https://github.com/arduino/ArduinoCore-mbed)
69
-
70
-
71
58
---
72
59
---
73
60
74
61
## Prerequisites
75
62
76
-
1.[`Arduino IDE 1.8.15+` for Arduino](https://www.arduino.cc/en/Main/Software)
77
-
2.[`Arduino mbed_nano core 2.4.1+`](https://github.com/arduino/ArduinoCore-mbed) for Arduino (Use Arduino Board Manager) MBED nRF52840-based boards such as **Nano_33_BLE, Nano_33_BLE_Sense**. [](https://github.com/arduino/ArduinoCore-mbed/releases/latest)
63
+
1.[`Arduino IDE 1.8.19+` for Arduino](https://www.arduino.cc/en/Main/Software)
64
+
2.[`Arduino mbed_nano core 2.6.1+`](https://github.com/arduino/ArduinoCore-mbed) for Arduino (Use Arduino Board Manager) MBED nRF52840-based boards such as **Nano_33_BLE, Nano_33_BLE_Sense**. [](https://github.com/arduino/ArduinoCore-mbed/releases/latest)
78
65
79
66
---
80
67
---
@@ -107,31 +94,6 @@ Another way to install is to:
107
94
---
108
95
109
96
110
-
### HOWTO Fix `Multiple Definitions` Linker Error
111
-
112
-
The current library implementation, using **xyz-Impl.h instead of standard xyz.cpp**, possibly creates certain `Multiple Definitions` Linker error in certain use cases. Although it's simple to just modify several lines of code, either in the library or in the application, the library is adding 2 more source directories
113
-
114
-
1.**scr_h** for new h-only files
115
-
2.**src_cpp** for standard h/cpp files
116
-
117
-
besides the standard **src** directory.
118
-
119
-
To use the **old standard cpp** way, locate this library' directory, then just
120
-
121
-
1.**Delete the all the files in src directory.**
122
-
2.**Copy all the files in src_cpp directory into src.**
123
-
3. Close then reopen the application code in Arduino IDE, etc. to recompile from scratch.
124
-
125
-
To re-use the **new h-only** way, just
126
-
127
-
1.**Delete the all the files in src directory.**
128
-
2.**Copy the files in src_h directory into src.**
129
-
3. Close then reopen the application code in Arduino IDE, etc. to recompile from scratch.
130
-
131
-
---
132
-
---
133
-
134
-
135
97
### Examples
136
98
137
99
1.[FS_Counting](examples/FS_Counting)
@@ -143,6 +105,9 @@ To re-use the **new h-only** way, just
@@ -661,14 +634,6 @@ Sometimes, the library will only work if you update the board core to the latest
661
634
---
662
635
---
663
636
664
-
## Releases
665
-
666
-
### Initial Releases v1.0.0
667
-
668
-
1. Initial coding to support MBED nRF52840-based boards such as **Nano_33_BLE, Nano_33_BLE_Sense**, etc. using [**Arduino-mbed mbed_nano** core](https://github.com/arduino/ArduinoCore-mbed)
669
-
670
-
---
671
-
---
672
637
673
638
### Issues
674
639
@@ -688,6 +653,7 @@ Submit issues to: [FS_Nano33BLE issues](https://github.com/khoih-prog/FS_Nano33B
688
653
1. Basic LittleFS wrapper for MBED nRF52840-based boards such as **Nano_33_BLE, Nano_33_BLE_Sense**, using [**Arduino-mbed mbed_nano** core](https://github.com/arduino/ArduinoCore-mbed)
1. Fix `multiple-definitions` linker error. Check [Different behaviour using the src_cpp or src_h lib #80](https://github.com/khoih-prog/ESPAsync_WiFiManager/discussions/80)
26
+
2. Update all examples
27
+
28
+
### Initial Releases v1.0.0
29
+
30
+
1. Initial coding to support MBED nRF52840-based boards such as **Nano_33_BLE, Nano_33_BLE_Sense**, etc. using [**Arduino-mbed mbed_nano** core](https://github.com/arduino/ArduinoCore-mbed)
"description": "This library facilitates your usage of FS (FATFS or LittleFS) for the onboard flash. FS supports power fail safety and high performance",
0 commit comments