1#ifndef Cpl_Io_File_Littlefs_BlockDriverApi_h_
2#define Cpl_Io_File_Littlefs_BlockDriverApi_h_
15#include "littlefs/lfs.h"
46 virtual bool start() noexcept = 0;
52 virtual
void stop() noexcept = 0;
57 virtual
bool readfn( const struct lfs_config* c, lfs_block_t block, lfs_off_t off,
void* buffer, lfs_size_t size ) noexcept = 0;
60 virtual
bool progfn( const struct lfs_config* c, lfs_block_t block, lfs_off_t off, const
void* buffer, lfs_size_t size ) noexcept = 0;
63 virtual
bool erasefn( const struct lfs_config* c, lfs_block_t block ) noexcept = 0;
66 virtual
bool syncfn( const struct lfs_config* c ) noexcept = 0;
71 static
int callback_readfn( const struct lfs_config* c, lfs_block_t block, lfs_off_t off,
void* buffer, lfs_size_t size ) noexcept;
74 static
int callback_progfn( const struct lfs_config* c, lfs_block_t block, lfs_off_t off, const
void* buffer, lfs_size_t size ) noexcept;
This partial abstract class defines the interface for block drivers.
Definition BlockDriverApi.h:36
virtual bool progfn(const struct lfs_config *c, lfs_block_t block, lfs_off_t off, const void *buffer, lfs_size_t size) noexcept=0
littlefs block driver prog function (instance based)
static int callback_readfn(const struct lfs_config *c, lfs_block_t block, lfs_off_t off, void *buffer, lfs_size_t size) noexcept
Use this function when "registering" the block driver's read function.
static int callback_syncfn(const struct lfs_config *c) noexcept
Use this function when "registering" the block driver's sync function.
static int callback_progfn(const struct lfs_config *c, lfs_block_t block, lfs_off_t off, const void *buffer, lfs_size_t size) noexcept
Use this function when "registering" the block driver's prog function.
virtual void stop() noexcept=0
This method is used to stop/shutdown the block driver.
virtual bool erasefn(const struct lfs_config *c, lfs_block_t block) noexcept=0
littlefs block driver erase function (instance based)
virtual bool readfn(const struct lfs_config *c, lfs_block_t block, lfs_off_t off, void *buffer, lfs_size_t size) noexcept=0
littlefs block driver read function (instance based)
virtual bool start() noexcept=0
This method is used start/initialize the block driver at run time.
virtual bool syncfn(const struct lfs_config *c) noexcept=0
littlefs block driver sync function (instance based)
static int callback_erasefn(const struct lfs_config *c, lfs_block_t block) noexcept
Use this function when "registering" the block driver's erase function.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20