X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fio%2Fkfile_block.h;h=e84e92d780791dfbc284ca23c30ba13768ee272f;hb=66852289e528cf501dc5d06830240d99ffac4aac;hp=8a1b36bb74d93430bb6e11ee18ba7c151a7f4e9d;hpb=fa9b44a5be11d39c0eaaf768e540baa70dabb689;p=bertos.git diff --git a/bertos/io/kfile_block.h b/bertos/io/kfile_block.h index 8a1b36bb..e84e92d7 100644 --- a/bertos/io/kfile_block.h +++ b/bertos/io/kfile_block.h @@ -35,6 +35,12 @@ * With this module, you can access a KBlock device * with the handy KFile interface. * In order to achieve this, the block device must support partial block write. + * + * \author Francesco Sacchi + * \author Daniele Basile + * + * $WIZ$ module_name = "kfile_block" + * $WIZ$ module_depends = "kfile", "kblock" */ #ifndef IO_KFILE_BLOCK_H @@ -49,7 +55,7 @@ */ typedef struct KFileBlock { - KFile fd; ///< KFile context + KFile fd; ///< KFile context KBlock *blk; ///< KBlock device } KFileBlock; @@ -61,7 +67,7 @@ typedef struct KFileBlock * random write access. * * \param fb KFileBlock context. - * \param b block device to be accessed with a KFile interface. + * \param blk block device to be accessed with a KFile interface. */ void kfileblock_init(KFileBlock *fb, KBlock *blk);