X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fdrv%2Fflash.h;h=d9cf8070448fe38572a2b4edf4dad4b105ad3e37;hb=e25abecb6a6ff52917d44d1331e5af831aeceb9c;hp=f00926ae59ff0560b353c2045033145cb12d9f0b;hpb=accac3bd1ef084179fabb215f4c09b0e8ba64b37;p=bertos.git diff --git a/bertos/drv/flash.h b/bertos/drv/flash.h index f00926ae..d9cf8070 100644 --- a/bertos/drv/flash.h +++ b/bertos/drv/flash.h @@ -29,8 +29,10 @@ * Copyright 2005 Develer S.r.l. (http://www.develer.com/) * --> * +* \defgroup drv_emb_flash Embedded flash driver +* \ingroup drivers +* \{ * -* \addtogroup drv_emb_flash * \brief Embedded flash for cpu. * * This module allows to access in reading and writing to the internal @@ -43,10 +45,10 @@ * Example usage: * \code * Flash fls; -* flash_init(&fls.blk, 0); +* flash_init(&fls, 0); * // enable access only on desired blocks * // start block = 50, num blocks = 20 -* kblock_trim(&fls, 50, 20); +* kblock_trim(&fls.blk, 50, 20); * // ... * // now write to the flash * // block number is automatically converted @@ -75,11 +77,6 @@ #include -/** - * \defgroup drv_emb_flash Embedded flash driver - * \ingroup drivers - * \{ - */ #if COMPILER_C99 #define flash_init(...) PP_CAT(flash_init_, COUNT_PARMS(__VA_ARGS__)) (__VA_ARGS__) #else