X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fdrv%2Fflash25.h;h=e3fd3e9dfc6c049f9d22d254a3bad9d4e8f3f857;hb=f44390327c7adef19c91192d1cab83b682c5ae3b;hp=82b403f3cb22a008eb032443885e2b3c958f4bec;hpb=c22fe24a0da896a52dbc3882390ec18a440ef56a;p=bertos.git diff --git a/bertos/drv/flash25.h b/bertos/drv/flash25.h index 82b403f3..e3fd3e9d 100644 --- a/bertos/drv/flash25.h +++ b/bertos/drv/flash25.h @@ -35,14 +35,20 @@ * * \version $Id$ * \author Daniele Basile + * + * $wizard_module = { + * "name" : "flash25", + * "depends" : ["kfile"], + * "configuration" : "bertos/cfg/cfg_flash25.h" + * } */ #ifndef DRV_FLASH25_H #define DRV_FLASH25_H -#include #include "cfg/cfg_flash25.h" +#include #include @@ -56,11 +62,11 @@ typedef uint8_t flash25Offset_t; /** * Flash25 KFile context structure. */ -typedef struct KFileFlash25 +typedef struct Flash25 { KFile fd; ///< File descriptor. KFile *channel; ///< Dataflash comm channel (usually SPI). -} KFileFlash25; +} Flash25; /** * ID for dataflash. @@ -69,12 +75,12 @@ typedef struct KFileFlash25 /** - * Convert + ASSERT from generic KFile to KFileFlash25. + * Convert + ASSERT from generic KFile to Flash25. */ -INLINE KFileFlash25 * KFILEFLASH25(KFile *fd) +INLINE Flash25 * FLASH25_CAST(KFile *fd) { ASSERT(fd->_type == KFT_FLASH25); - return (KFileFlash25 *)fd; + return (Flash25 *)fd; } /** @@ -83,7 +89,10 @@ INLINE KFileFlash25 * KFILEFLASH25(KFile *fd) * \note Below are defined valid serial flash memory support to * this drive. Every time we call flash25_init() function we check * if memory defined are right (see flash25.c form more detail). - * \{ + * + * $WIZARD_LIST = { + * "flash25_list" : ["FLASH25_AT25F2048"] + * } */ #define FLASH25_AT25F2048 1 @@ -100,7 +109,6 @@ INLINE KFileFlash25 * KFILEFLASH25(KFile *fd) #endif #define RDY_BIT 0x1 // Statuts of write cycle -/* \} */ /** * Serial flash opcode commands. @@ -131,9 +139,9 @@ typedef enum { FLASH25_SECT4 = 0x30000, ///< Sector 4 (0x30000 -0x3FFFF) } Flash25Sector; -void flash25_init(KFileFlash25 *fd, KFile *ch); -void flash25_chipErase(KFileFlash25 *fd); -void flash25_sectorErase(KFileFlash25 *fd, Flash25Sector sector); +void flash25_init(Flash25 *fd, KFile *ch); +void flash25_chipErase(Flash25 *fd); +void flash25_sectorErase(Flash25 *fd, Flash25Sector sector); bool flash25_test(KFile *channel); #endif /* DRV_FLASH25_H */