From: asterix Date: Wed, 11 Aug 2010 10:37:41 +0000 (+0000) Subject: Add tag for wizard. X-Git-Tag: 2.6.0~230 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=12c71395c80c3d5e6f9532a4a912322b503ce391;p=bertos.git Add tag for wizard. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@4160 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/bertos/io/kblock.h b/bertos/io/kblock.h index 8d68c8e9..ea3d14eb 100644 --- a/bertos/io/kblock.h +++ b/bertos/io/kblock.h @@ -33,6 +33,8 @@ * \author Francesco Sacchi * * \brief KBlock interface + * + * $WIZ$ module_name = "kblock" */ #ifndef IO_KBLOCK_H diff --git a/bertos/io/kblock_posix.h b/bertos/io/kblock_posix.h index eba541ab..6520f631 100644 --- a/bertos/io/kblock_posix.h +++ b/bertos/io/kblock_posix.h @@ -32,7 +32,12 @@ * * \author Francesco Sacchi * - * \brief KBlock interface + * \brief KBlock interface on POSIX file. + * + * \author Francesco Sacchi + * + * $WIZ$ module_name = "kfile_posix" + * $WIZ$ module_depends = "kblock" */ #ifndef KBLOCK_POSIX_H diff --git a/bertos/io/kblock_ram.c b/bertos/io/kblock_ram.c index 70899ce3..b936e902 100644 --- a/bertos/io/kblock_ram.c +++ b/bertos/io/kblock_ram.c @@ -32,7 +32,12 @@ * * \author Francesco Sacchi * - * \brief KBlock interface + * \brief KBlock interface on RAM memory + * + * \author Francesco Sacchi + * + * $WIZ$ module_name = "kfile_ram" + * $WIZ$ module_depends = "kblock" */ diff --git a/bertos/io/kblock_ram.h b/bertos/io/kblock_ram.h index 92582a99..2b518901 100644 --- a/bertos/io/kblock_ram.h +++ b/bertos/io/kblock_ram.h @@ -30,9 +30,9 @@ * * --> * - * \author Francesco Sacchi - * * \brief KBlock interface + * + * \author Francesco Sacchi */ #ifndef KBLOCK_RAM_H diff --git a/bertos/io/kfile_block.c b/bertos/io/kfile_block.c index 57c6f8d3..a4278fb0 100644 --- a/bertos/io/kfile_block.c +++ b/bertos/io/kfile_block.c @@ -32,6 +32,9 @@ * * \brief KFile interface over a KBlock. * + * \author Francesco Sacchi + * \author Daniele Basile + * */ #include "kfile_block.h" diff --git a/bertos/io/kfile_block.h b/bertos/io/kfile_block.h index 130add3a..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