Storage directory restructure:

- Move mbed-os/features/storage to mbed-os/storage
- Move components/storage/blockdevice to storage/blockdevice/COMPONENT_xxx
pull/13244/head
Rajkumar Kanagaraj 2020-07-06 18:26:40 +01:00
parent efe46b5aa1
commit 0bcf967870
247 changed files with 76 additions and 76 deletions

View File

@ -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"

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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"

View File

@ -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

View File

@ -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 {

View File

@ -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 {

View File

@ -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 {

View File

@ -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 */

View File

@ -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>

View File

@ -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 {

View File

@ -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 {

View File

@ -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