diff options
author | barthess <barthess@yandex.ru> | 2016-10-17 09:57:43 +0300 |
---|---|---|
committer | barthess <barthess@yandex.ru> | 2016-10-17 15:53:08 +0300 |
commit | ae0a3ca9dec6d14b82f08a6eebc679281dd3fbb3 (patch) | |
tree | 56aa825e721dcfddc6b2f0490907c95094439d18 /os/various/ramdisk.h | |
parent | cc82c5c5c033fd12bd7f4733f2e57d17efd87315 (diff) | |
download | ChibiOS-Contrib-ae0a3ca9dec6d14b82f08a6eebc679281dd3fbb3.tar.gz ChibiOS-Contrib-ae0a3ca9dec6d14b82f08a6eebc679281dd3fbb3.tar.bz2 ChibiOS-Contrib-ae0a3ca9dec6d14b82f08a6eebc679281dd3fbb3.zip |
USB_MSD. Initial commit.
Diffstat (limited to 'os/various/ramdisk.h')
-rw-r--r-- | os/various/ramdisk.h | 86 |
1 files changed, 86 insertions, 0 deletions
diff --git a/os/various/ramdisk.h b/os/various/ramdisk.h new file mode 100644 index 0000000..0860662 --- /dev/null +++ b/os/various/ramdisk.h @@ -0,0 +1,86 @@ +/* + ChibiOS/HAL - Copyright (C) 2016 Uladzimir Pylinsky aka barthess + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + +/** + * @file ramdisk.h + * @brief Virtual block devise driver header. + * + * @addtogroup ramdisk + * @{ + */ + +#ifndef RAMDISK_H_ +#define RAMDISK_H_ + +/*===========================================================================*/ +/* Driver constants. */ +/*===========================================================================*/ + +/*===========================================================================*/ +/* Driver pre-compile time settings. */ +/*===========================================================================*/ + +/*===========================================================================*/ +/* Derived constants and error checks. */ +/*===========================================================================*/ + +/*===========================================================================*/ +/* Driver data structures and types. */ +/*===========================================================================*/ + +typedef struct RamDisk RamDisk; + +/** + * + */ +#define _ramdisk_device_data \ + _base_block_device_data \ + uint8_t *storage; \ + uint32_t blk_size; \ + uint32_t blk_num; \ + bool readonly; + +/** + * + */ +struct RamDisk { + /** @brief Virtual Methods Table.*/ + const struct BaseBlockDeviceVMT *vmt; + _ramdisk_device_data +}; + +/*===========================================================================*/ +/* Driver macros. */ +/*===========================================================================*/ + +/*===========================================================================*/ +/* External declarations. */ +/*===========================================================================*/ + +#ifdef __cplusplus +extern "C" { +#endif + void ramdiskObjectInit(RamDisk *rdp); + void ramdiskStart(RamDisk *rdp, uint8_t *storage, uint32_t blksize, + uint32_t blknum, bool readonly); + void ramdiskStop(RamDisk *rdp); +#ifdef __cplusplus +} +#endif + +#endif /* RAMDISK_H_ */ + +/** @} */ |