mirror of https://github.com/ARMmbed/mbed-os.git
Storage directory restructure:
- Move mbed-os/features/storage to mbed-os/storage - Move components/storage/blockdevice to storage/blockdevice/COMPONENT_xxxpull/13244/head
parent
efe46b5aa1
commit
0bcf967870
|
@ -20,7 +20,7 @@
|
|||
|
||||
#include "platform/PlatformMutex.h"
|
||||
#include "PinNames.h"
|
||||
#include "features/storage/blockdevice/BlockDevice.h"
|
||||
#include "storage/blockdevice/BlockDevice.h"
|
||||
#include "drivers/SPI.h"
|
||||
#include "drivers/DigitalOut.h"
|
||||
|
|
@ -21,7 +21,7 @@
|
|||
#if DEVICE_FLASH
|
||||
|
||||
#include "FlashIAP.h"
|
||||
#include "features/storage/blockdevice/BlockDevice.h"
|
||||
#include "storage/blockdevice/BlockDevice.h"
|
||||
#include "platform/mbed_toolchain.h"
|
||||
|
||||
/** BlockDevice using the FlashIAP API
|
|
@ -17,7 +17,7 @@
|
|||
#ifndef MBED_I2CEEPROM_BLOCK_DEVICE_H
|
||||
#define MBED_I2CEEPROM_BLOCK_DEVICE_H
|
||||
|
||||
#include "features/storage/blockdevice/BlockDevice.h"
|
||||
#include "storage/blockdevice/BlockDevice.h"
|
||||
#include "drivers/I2C.h"
|
||||
|
||||
/** BlockDevice for I2C based flash device such as
|
|
@ -19,7 +19,7 @@
|
|||
|
||||
#include "drivers/QSPI.h"
|
||||
#include "drivers/internal/SFDP.h"
|
||||
#include "features/storage/blockdevice/BlockDevice.h"
|
||||
#include "storage/blockdevice/BlockDevice.h"
|
||||
#include "platform/Callback.h"
|
||||
|
||||
#ifndef MBED_CONF_QSPIF_QSPI_IO0
|
|
@ -21,7 +21,7 @@
|
|||
/* If the target has no SPI support, then SD Card is not supported. */
|
||||
#if DEVICE_SPI
|
||||
|
||||
#include "features/storage/blockdevice/BlockDevice.h"
|
||||
#include "storage/blockdevice/BlockDevice.h"
|
||||
#include "drivers/SPI.h"
|
||||
#include "drivers/Timer.h"
|
||||
#include "drivers/MbedCRC.h"
|
|
@ -21,7 +21,7 @@
|
|||
#include "drivers/SPI.h"
|
||||
#include "drivers/DigitalOut.h"
|
||||
#include "drivers/internal/SFDP.h"
|
||||
#include "features/storage/blockdevice/BlockDevice.h"
|
||||
#include "storage/blockdevice/BlockDevice.h"
|
||||
|
||||
#ifndef MBED_CONF_SPIF_DRIVER_SPI_MOSI
|
||||
#define MBED_CONF_SPIF_DRIVER_SPI_MOSI NC
|
|
@ -17,7 +17,7 @@
|
|||
#ifndef DIR_H
|
||||
#define DIR_H
|
||||
|
||||
#include "features/storage/filesystem/FileSystem.h"
|
||||
#include "storage/filesystem/FileSystem.h"
|
||||
#include "platform/DirHandle.h"
|
||||
|
||||
namespace mbed {
|
|
@ -17,7 +17,7 @@
|
|||
#ifndef FILE_H
|
||||
#define FILE_H
|
||||
|
||||
#include "features/storage/filesystem/FileSystem.h"
|
||||
#include "storage/filesystem/FileSystem.h"
|
||||
#include "platform/FileHandle.h"
|
||||
|
||||
namespace mbed {
|
|
@ -14,9 +14,9 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#include "features/storage/filesystem/Dir.h"
|
||||
#include "features/storage/filesystem/File.h"
|
||||
#include "features/storage/filesystem/FileSystem.h"
|
||||
#include "storage/filesystem/Dir.h"
|
||||
#include "storage/filesystem/File.h"
|
||||
#include "storage/filesystem/FileSystem.h"
|
||||
#include <errno.h>
|
||||
|
||||
namespace mbed {
|
|
@ -23,7 +23,7 @@
|
|||
#include "platform/FileHandle.h"
|
||||
#include "platform/DirHandle.h"
|
||||
#include "platform/FileSystemLike.h"
|
||||
#include "features/storage/blockdevice/BlockDevice.h"
|
||||
#include "storage/blockdevice/BlockDevice.h"
|
||||
|
||||
namespace mbed {
|
||||
/** \addtogroup file system */
|
|
@ -19,12 +19,12 @@
|
|||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
* SOFTWARE.
|
||||
*/
|
||||
#include "features/storage/filesystem/fat/ChaN/diskio.h"
|
||||
#include "features/storage/filesystem/fat/ChaN/ffconf.h"
|
||||
#include "features/storage/filesystem/fat/ChaN/ff.h"
|
||||
#include "storage/filesystem/fat/ChaN/diskio.h"
|
||||
#include "storage/filesystem/fat/ChaN/ffconf.h"
|
||||
#include "storage/filesystem/fat/ChaN/ff.h"
|
||||
#include "platform/mbed_debug.h"
|
||||
#include "platform/mbed_critical.h"
|
||||
#include "features/storage/filesystem/mbed_filesystem.h"
|
||||
#include "storage/filesystem/mbed_filesystem.h"
|
||||
#include "FATFileSystem.h"
|
||||
|
||||
#include <errno.h>
|
|
@ -26,12 +26,12 @@
|
|||
#ifndef MBED_FATFILESYSTEM_H
|
||||
#define MBED_FATFILESYSTEM_H
|
||||
|
||||
#include "features/storage/filesystem/FileSystem.h"
|
||||
#include "features/storage/blockdevice/BlockDevice.h"
|
||||
#include "storage/filesystem/FileSystem.h"
|
||||
#include "storage/blockdevice/BlockDevice.h"
|
||||
#include "FileHandle.h"
|
||||
#include <stdint.h>
|
||||
#include "PlatformMutex.h"
|
||||
#include "features/storage/filesystem/fat/ChaN/ff.h"
|
||||
#include "storage/filesystem/fat/ChaN/ff.h"
|
||||
|
||||
namespace mbed {
|
||||
|
|
@ -13,11 +13,11 @@
|
|||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
#include "features/storage/filesystem/mbed_filesystem.h"
|
||||
#include "storage/filesystem/mbed_filesystem.h"
|
||||
#include "LittleFileSystem.h"
|
||||
#include "errno.h"
|
||||
#include "features/storage/filesystem/littlefs/littlefs/lfs.h"
|
||||
#include "features/storage/filesystem/littlefs/littlefs/lfs_util.h"
|
||||
#include "storage/filesystem/littlefs/littlefs/lfs.h"
|
||||
#include "storage/filesystem/littlefs/littlefs/lfs_util.h"
|
||||
#include "MbedCRC.h"
|
||||
|
||||
namespace mbed {
|
|
@ -20,10 +20,10 @@
|
|||
#ifndef MBED_LFSFILESYSTEM_H
|
||||
#define MBED_LFSFILESYSTEM_H
|
||||
|
||||
#include "features/storage/filesystem/FileSystem.h"
|
||||
#include "features/storage/blockdevice/BlockDevice.h"
|
||||
#include "storage/filesystem/FileSystem.h"
|
||||
#include "storage/blockdevice/BlockDevice.h"
|
||||
#include "platform/PlatformMutex.h"
|
||||
#include "features/storage/filesystem/littlefs/littlefs/lfs.h"
|
||||
#include "storage/filesystem/littlefs/littlefs/lfs.h"
|
||||
|
||||
namespace mbed {
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue