1#ifndef Cpl_Io_File_Littlefs__bdspi_BdSpi_h_
2#define Cpl_Io_File_Littlefs__bdspi_BdSpi_h_
15#include "colony_config.h"
26#ifndef OPTION_CPL_IO_FILE_LITTLEFS_BDSPI_READ_MAX_RETRIES
27#define OPTION_CPL_IO_FILE_LITTLEFS_BDSPI_READ_MAX_RETRIES 2100
31#ifndef OPTION_CPL_IO_FILE_LITTLEFS_BDSPI_READ_RETRY_DELAY_MS
32#define OPTION_CPL_IO_FILE_LITTLEFS_BDSPI_READ_RETRY_DELAY_MS 1
36#ifndef OPTION_CPL_IO_FILE_LITTLEFS_BDSPI_DEFAULT_FLASH_PAGE_SIZE
37#define OPTION_CPL_IO_FILE_LITTLEFS_BDSPI_DEFAULT_FLASH_PAGE_SIZE 256
88 bool readfn( const struct lfs_config* c, lfs_block_t block, lfs_off_t off,
void* buffer, lfs_size_t size ) noexcept;
91 bool progfn( const struct lfs_config* c, lfs_block_t block, lfs_off_t off, const
void* buffer, lfs_size_t size ) noexcept;
94 bool erasefn( const struct lfs_config* c, lfs_block_t block ) noexcept;
97 bool syncfn( const struct lfs_config* c ) noexcept;
119 bool writeToPage( lfs_off_t offset, const
void* buffer, lfs_size_t numBytes ) noexcept;
#define OPTION_CPL_IO_FILE_LITTLEFS_BDSPI_DEFAULT_FLASH_PAGE_SIZE
Default Page size in bytes.
Definition BdSpi.h:37
Concrete Block Driver for a 'traditional' SPI based NOR flash.
Definition BdSpi.h:56
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 waitUntilSUS() noexcept
Helper function.
bool m_started
Started state.
Definition BdSpi.h:132
bool writeToPage(lfs_off_t offset, const void *buffer, lfs_size_t numBytes) noexcept
Helper function (assume the requested write offset/size fits into a single page)
bool sendCommand(uint8_t command) noexcept
Helper function.
bool syncfn(const struct lfs_config *c) noexcept
See Cpl::Io::Littlefs::BlockDriverApi.
uint8_t manufacturerID
Manufacturer ID.
Definition BdSpi.h:61
bool readJedecID(JedecID_T &dstID) noexcept
Helper function.
~BdSpi() noexcept
Destructor.
Driver::DIO::Out & m_cs
Chip Select driver.
Definition BdSpi.h:126
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.
BdSpi(Driver::SPI::MasterHalfDuplex &spi, Driver::DIO::Out &cs, lfs_size_t flashPageSize=OPTION_CPL_IO_FILE_LITTLEFS_BDSPI_DEFAULT_FLASH_PAGE_SIZE) noexcept
Constructor.
lfs_size_t m_flashPageSize
Page size.
Definition BdSpi.h:129
uint8_t readStatus() noexcept
Helper function.
uint8_t capacity
Capacity.
Definition BdSpi.h:63
uint8_t memoryType
Memory Type.
Definition BdSpi.h:62
uint8_t readStatus2() noexcept
Helper function.
bool waitUntilReady() noexcept
Helper function.
Driver::SPI::MasterHalfDuplex & m_spi
SPI driver.
Definition BdSpi.h:123
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.
bool start() noexcept
See Cpl::Io::File::BlockDriverApi.
JEDEC ID.
Definition BdSpi.h:60
This partial abstract class defines the interface for block drivers.
Definition BlockDriverApi.h:36
This class defines a generic interface for controlling a single Digital output signal.
Definition Out.h:32
This class defines a non-platform specific interface for an SPI master device driver using HALF-DUPLE...
Definition MasterHalfDuplex.h:38
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20