mirror of
https://github.com/markqvist/OpenModem.git
synced 2024-10-01 03:15:46 -04:00
101 lines
3.1 KiB
C
101 lines
3.1 KiB
C
/**
|
|
* \file
|
|
* <!--
|
|
* This file is part of BeRTOS.
|
|
*
|
|
* Bertos is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*
|
|
* As a special exception, you may use this file as part of a free software
|
|
* library without restriction. Specifically, if other files instantiate
|
|
* templates or use macros or inline functions from this file, or you compile
|
|
* this file and link it with other files to produce an executable, this
|
|
* file does not by itself cause the resulting executable to be covered by
|
|
* the GNU General Public License. This exception does not however
|
|
* invalidate any other reasons why the executable file might be covered by
|
|
* the GNU General Public License.
|
|
*
|
|
* Copyright 2010 Develer S.r.l. (http://www.develer.com/)
|
|
*
|
|
* -->
|
|
*
|
|
* \defgroup kfile_block KFile interface over KBlock
|
|
* \ingroup core
|
|
* \{
|
|
*
|
|
* \brief KFile interface over a KBlock.
|
|
*
|
|
* 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.
|
|
*
|
|
* Error codes returned by kfile_error() are specific of the underlying
|
|
* KBlock implementation.
|
|
*
|
|
* Make sure you have trimmed the KBlock to avoid overwriting something.
|
|
* Example:
|
|
* \code
|
|
* // init a derived instance of KBlock
|
|
* // any will do.
|
|
* Flash flash;
|
|
* flash_init(&flash, 0);
|
|
* kblock_trim(&flash.blk, trim_start, internal_flash.blk.blk_cnt - trim_start);
|
|
*
|
|
* // now create and initialize the kfile_block instance
|
|
* KFileBlock kfb;
|
|
* kfileblock_init(&kfb, &flash.blk);
|
|
*
|
|
* // now you can access the Flash in a file like fashion
|
|
* kfile_read(&kfb.fd, buf, 20);
|
|
* \endcode
|
|
*
|
|
* \author Francesco Sacchi <batt@develer.com>
|
|
* \author Daniele Basile <asterix@develer.com>
|
|
*
|
|
* $WIZ$ module_name = "kfile_block"
|
|
* $WIZ$ module_depends = "kfile", "kblock"
|
|
*/
|
|
|
|
#ifndef IO_KFILE_BLOCK_H
|
|
#define IO_KFILE_BLOCK_H
|
|
|
|
#include <cfg/compiler.h>
|
|
#include <io/kblock.h>
|
|
#include <io/kfile.h>
|
|
|
|
/**
|
|
* KFileBlock context.
|
|
*/
|
|
typedef struct KFileBlock
|
|
{
|
|
KFile fd; ///< KFile context
|
|
KBlock *blk; ///< KBlock device
|
|
} KFileBlock;
|
|
|
|
/**
|
|
* Init a KFile over KBlock.
|
|
* After this you can access your KBlock device with a handy KFile interface.
|
|
*
|
|
* \note The block device must support partial block write in order to support
|
|
* random write access.
|
|
*
|
|
* \param fb KFileBlock context.
|
|
* \param blk block device to be accessed with a KFile interface.
|
|
*/
|
|
void kfileblock_init(KFileBlock *fb, KBlock *blk);
|
|
|
|
/** \} */ //defgroup kfile_block
|
|
|
|
#endif /* IO_KFILE_KBLOCK_H */
|