mirror of https://github.com/ARMmbed/mbed-os.git
Refactor storage/filesystem directory
parent
ca2f980661
commit
b340492142
|
|
@ -26,7 +26,7 @@
|
|||
#ifndef MBED_FATFILESYSTEM_H
|
||||
#define MBED_FATFILESYSTEM_H
|
||||
|
||||
#include "storage/filesystem/FileSystem.h"
|
||||
#include "filesystem/FileSystem.h"
|
||||
#include "blockdevice/BlockDevice.h"
|
||||
#include "FileHandle.h"
|
||||
#include <stdint.h>
|
||||
|
|
@ -19,12 +19,12 @@
|
|||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
* SOFTWARE.
|
||||
*/
|
||||
#include "storage/filesystem/fat/ChaN/diskio.h"
|
||||
#include "storage/filesystem/fat/ChaN/ffconf.h"
|
||||
#include "storage/filesystem/fat/ChaN/ff.h"
|
||||
#include "fat/ChaN/diskio.h"
|
||||
#include "fat/ChaN/ffconf.h"
|
||||
#include "fat/ChaN/ff.h"
|
||||
#include "platform/mbed_debug.h"
|
||||
#include "platform/mbed_critical.h"
|
||||
#include "storage/filesystem/mbed_filesystem.h"
|
||||
#include "filesystem/mbed_filesystem.h"
|
||||
#include "FATFileSystem.h"
|
||||
|
||||
#include <errno.h>
|
||||
|
|
@ -17,7 +17,7 @@
|
|||
#ifndef DIR_H
|
||||
#define DIR_H
|
||||
|
||||
#include "storage/filesystem/FileSystem.h"
|
||||
#include "filesystem/FileSystem.h"
|
||||
#include "platform/DirHandle.h"
|
||||
|
||||
namespace mbed {
|
||||
|
|
@ -17,7 +17,7 @@
|
|||
#ifndef FILE_H
|
||||
#define FILE_H
|
||||
|
||||
#include "storage/filesystem/FileSystem.h"
|
||||
#include "filesystem/FileSystem.h"
|
||||
#include "platform/FileHandle.h"
|
||||
|
||||
namespace mbed {
|
||||
|
|
@ -23,9 +23,9 @@
|
|||
#include "platform/platform.h"
|
||||
|
||||
// FileSystem classes
|
||||
#include "storage/filesystem/FileSystem.h"
|
||||
#include "storage/filesystem/File.h"
|
||||
#include "storage/filesystem/Dir.h"
|
||||
#include "filesystem/FileSystem.h"
|
||||
#include "filesystem/File.h"
|
||||
#include "filesystem/Dir.h"
|
||||
|
||||
// BlockDevice classes
|
||||
#include "blockdevice/BlockDevice.h"
|
||||
|
|
@ -20,7 +20,7 @@
|
|||
#ifndef MBED_LFSFILESYSTEM_H
|
||||
#define MBED_LFSFILESYSTEM_H
|
||||
|
||||
#include "storage/filesystem/FileSystem.h"
|
||||
#include "filesystem/FileSystem.h"
|
||||
#include "blockdevice/BlockDevice.h"
|
||||
#include "platform/PlatformMutex.h"
|
||||
#include "storage/filesystem/littlefs/littlefs/lfs.h"
|
||||
|
|
@ -13,8 +13,8 @@
|
|||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
#include "storage/filesystem/mbed_filesystem.h"
|
||||
#include "LittleFileSystem.h"
|
||||
#include "filesystem/mbed_filesystem.h"
|
||||
#include "littlefs/LittleFileSystem.h"
|
||||
#include "errno.h"
|
||||
#include "storage/filesystem/littlefs/littlefs/lfs.h"
|
||||
#include "storage/filesystem/littlefs/littlefs/lfs_util.h"
|
||||
|
|
@ -14,7 +14,7 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#include "Dir.h"
|
||||
#include "filesystem/Dir.h"
|
||||
#include <errno.h>
|
||||
|
||||
namespace mbed {
|
||||
|
|
@ -14,7 +14,7 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#include "File.h"
|
||||
#include "filesystem/File.h"
|
||||
#include <errno.h>
|
||||
|
||||
namespace mbed {
|
||||
|
|
@ -14,9 +14,9 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#include "storage/filesystem/Dir.h"
|
||||
#include "storage/filesystem/File.h"
|
||||
#include "storage/filesystem/FileSystem.h"
|
||||
#include "filesystem/Dir.h"
|
||||
#include "filesystem/File.h"
|
||||
#include "filesystem/FileSystem.h"
|
||||
#include <errno.h>
|
||||
|
||||
namespace mbed {
|
||||
Loading…
Reference in New Issue