1#ifndef Cpl_Io_File_Littlefs__bdfile_BdFile_h_
2#define Cpl_Io_File_Littlefs__bdfile_BdFile_h_
15#include "colony_config.h"
40 BdFile(
const char* fileName )
noexcept;
56 bool readfn( const struct lfs_config* c, lfs_block_t block, lfs_off_t off,
void* buffer, lfs_size_t size ) noexcept;
59 bool progfn( const struct lfs_config* c, lfs_block_t block, lfs_off_t off, const
void* buffer, lfs_size_t size ) noexcept;
62 bool erasefn( const struct lfs_config* c, lfs_block_t block ) noexcept;
65 bool syncfn( const struct lfs_config* c ) noexcept;
Concrete Block Driver that uses the Host's file system for the persistent storage media.
Definition BdFile.h:33
bool m_started
Started state.
Definition BdFile.h:77
~BdFile() noexcept
Destructor.
bool readfn(const struct lfs_config *c, lfs_block_t block, lfs_off_t off, void *buffer, lfs_size_t size) noexcept
See Cpl::Io::Littlefs::BlockDriverApi.
bool erasefn(const struct lfs_config *c, lfs_block_t block) noexcept
See Cpl::Io::Littlefs::BlockDriverApi.
void stop() noexcept
See Cpl::Io::File::BlockDriverApi.
bool progfn(const struct lfs_config *c, lfs_block_t block, lfs_off_t off, const void *buffer, lfs_size_t size) noexcept
See Cpl::Io::Littlefs::BlockDriverApi.
BdFile(const char *fileName) noexcept
Constructor.
bool syncfn(const struct lfs_config *c) noexcept
See Cpl::Io::Littlefs::BlockDriverApi.
const char * m_fname
SPI driver.
Definition BdFile.h:71
bool start() noexcept
See Cpl::Io::File::BlockDriverApi.
int m_fd
File descriptor.
Definition BdFile.h:74
This partial abstract class defines the interface for block drivers.
Definition BlockDriverApi.h:36
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20