X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;ds=sidebyside;f=bertos%2Fdrv%2Fflash25.c;fp=bertos%2Fdrv%2Fflash25.c;h=70d9229a468f4db70e817e38b874c1eaeb947107;hb=8cca97771bf57082616dde340005874812fb728a;hp=2e9c065248d2a5d66a1e2fc31b27ea523ed49c35;hpb=871ebe12423baa35456746a47becd58cd7cf2f6f;p=bertos.git diff --git a/bertos/drv/flash25.c b/bertos/drv/flash25.c index 2e9c0652..70d9229a 100644 --- a/bertos/drv/flash25.c +++ b/bertos/drv/flash25.c @@ -64,7 +64,7 @@ /** * Wait until flash memory is ready. */ -static void flash25_waitReady(Flash25KFile *fd) +static void flash25_waitReady(Flash25 *fd) { uint8_t stat; @@ -89,7 +89,7 @@ static void flash25_waitReady(Flash25KFile *fd) /** * Send a single command to serial flash memory. */ -static void flash25_sendCmd(Flash25KFile *fd, Flash25Opcode cmd) +static void flash25_sendCmd(Flash25 *fd, Flash25Opcode cmd) { CS_ENABLE(); @@ -104,7 +104,7 @@ static void flash25_sendCmd(Flash25KFile *fd, Flash25Opcode cmd) * try to read manufacturer id of serial memory, * then check if is equal to selected type. */ -static bool flash25_pin_init(Flash25KFile *fd) +static bool flash25_pin_init(Flash25 *fd) { uint8_t device_id; uint8_t manufacturer; @@ -140,7 +140,7 @@ static bool flash25_pin_init(Flash25KFile *fd) */ static KFile * flash25_reopen(struct KFile *_fd) { - Flash25KFile *fd = FLASH25KFILE(_fd); + Flash25 *fd = FLASH25KFILE(_fd); fd->fd.seek_pos = 0; fd->fd.size = FLASH25_MEM_SIZE; @@ -176,7 +176,7 @@ static size_t flash25_read(struct KFile *_fd, void *buf, size_t size) { uint8_t *data = (uint8_t *)buf; - Flash25KFile *fd = FLASH25KFILE(_fd); + Flash25 *fd = FLASH25KFILE(_fd); ASSERT(fd->fd.seek_pos + (kfile_size_t)size <= fd->fd.size); size = MIN((kfile_size_t)size, fd->fd.size - fd->fd.seek_pos); @@ -229,7 +229,7 @@ static size_t flash25_write(struct KFile *_fd, const void *_buf, size_t size) flash25Size_t wr_len; const uint8_t *data = (const uint8_t *) _buf; - Flash25KFile *fd = FLASH25KFILE(_fd); + Flash25 *fd = FLASH25KFILE(_fd); ASSERT(fd->fd.seek_pos + (kfile_size_t)size <= fd->fd.size); @@ -294,7 +294,7 @@ static size_t flash25_write(struct KFile *_fd, const void *_buf, size_t size) * \note A sector size is FLASH25_SECTOR_SIZE. * This operation could take a while. */ -void flash25_sectorErase(Flash25KFile *fd, Flash25Sector sector) +void flash25_sectorErase(Flash25 *fd, Flash25Sector sector) { /* @@ -341,7 +341,7 @@ void flash25_sectorErase(Flash25KFile *fd, Flash25Sector sector) * * \note This operation could take a while. */ -void flash25_chipErase(Flash25KFile *fd) +void flash25_chipErase(Flash25 *fd) { /* * Erase all chip could take a while, @@ -371,7 +371,7 @@ void flash25_chipErase(Flash25KFile *fd) /** * Init data flash memory interface. */ -void flash25_init(Flash25KFile *fd, KFile *ch) +void flash25_init(Flash25 *fd, KFile *ch) { ASSERT(fd);