Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: DM_HttpServer DM_USBHost
Dependents: lpc4088_displaymodule_emwin lpc4088_displaymodule_demo_sphere sampleGUI sampleEmptyGUI ... more
Fork of DMSupport by
FileSystems/USBMSD_RAMFS.cpp@40:6df4f63aa406, 2015-06-10 (annotated)
- Committer:
- alindvall
- Date:
- Wed Jun 10 09:54:15 2015 +0000
- Revision:
- 40:6df4f63aa406
- Parent:
- 9:a33326afd686
- Child:
- 41:e06e764ff4fd
Updated USBDevice, mbed-src and mbed-rtos libraries to latest version. Fixed compiler errors related to us_ticker_read() that was introduced in latest mbed-src version.
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| embeddedartists | 9:a33326afd686 | 1 | /* |
| embeddedartists | 9:a33326afd686 | 2 | * Copyright 2014 Embedded Artists AB |
| embeddedartists | 9:a33326afd686 | 3 | * |
| embeddedartists | 9:a33326afd686 | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| embeddedartists | 9:a33326afd686 | 5 | * you may not use this file except in compliance with the License. |
| embeddedartists | 9:a33326afd686 | 6 | * You may obtain a copy of the License at |
| embeddedartists | 9:a33326afd686 | 7 | * |
| embeddedartists | 9:a33326afd686 | 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| embeddedartists | 9:a33326afd686 | 9 | * |
| embeddedartists | 9:a33326afd686 | 10 | * Unless required by applicable law or agreed to in writing, software |
| embeddedartists | 9:a33326afd686 | 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| embeddedartists | 9:a33326afd686 | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| embeddedartists | 9:a33326afd686 | 13 | * See the License for the specific language governing permissions and |
| embeddedartists | 9:a33326afd686 | 14 | * limitations under the License. |
| embeddedartists | 9:a33326afd686 | 15 | */ |
| embeddedartists | 9:a33326afd686 | 16 | |
| embeddedartists | 0:6b68dac0d986 | 17 | #include "USBMSD_RAMFS.h" |
| embeddedartists | 0:6b68dac0d986 | 18 | |
| embeddedartists | 0:6b68dac0d986 | 19 | USBMSD_RAMFS::USBMSD_RAMFS(RAMFileSystem* ramfs, uint16_t vendor_id, uint16_t product_id, uint16_t product_release) : |
| embeddedartists | 0:6b68dac0d986 | 20 | USBMSD(vendor_id, product_id, product_release) |
| embeddedartists | 0:6b68dac0d986 | 21 | { |
| embeddedartists | 0:6b68dac0d986 | 22 | this->ramfs = ramfs; |
| embeddedartists | 0:6b68dac0d986 | 23 | } |
| embeddedartists | 0:6b68dac0d986 | 24 | |
| embeddedartists | 0:6b68dac0d986 | 25 | int USBMSD_RAMFS::disk_read(uint8_t * data, uint64_t block, uint8_t count) |
| embeddedartists | 0:6b68dac0d986 | 26 | { |
| embeddedartists | 0:6b68dac0d986 | 27 | return ramfs->disk_read(data, block, count); |
| embeddedartists | 0:6b68dac0d986 | 28 | } |
| embeddedartists | 0:6b68dac0d986 | 29 | |
| embeddedartists | 0:6b68dac0d986 | 30 | int USBMSD_RAMFS::disk_write(const uint8_t * data, uint64_t block, uint8_t count) |
| embeddedartists | 0:6b68dac0d986 | 31 | { |
| embeddedartists | 0:6b68dac0d986 | 32 | return ramfs->disk_write(data, block, count); |
| embeddedartists | 0:6b68dac0d986 | 33 | } |
| embeddedartists | 0:6b68dac0d986 | 34 | |
| embeddedartists | 0:6b68dac0d986 | 35 | int USBMSD_RAMFS::disk_initialize() { |
| embeddedartists | 0:6b68dac0d986 | 36 | return ramfs->disk_initialize(); |
| embeddedartists | 0:6b68dac0d986 | 37 | } |
| embeddedartists | 0:6b68dac0d986 | 38 | |
| embeddedartists | 0:6b68dac0d986 | 39 | uint64_t USBMSD_RAMFS::disk_sectors() { |
| embeddedartists | 0:6b68dac0d986 | 40 | return ramfs->disk_sectors(); |
| embeddedartists | 0:6b68dac0d986 | 41 | } |
| embeddedartists | 0:6b68dac0d986 | 42 | |
| embeddedartists | 0:6b68dac0d986 | 43 | uint64_t USBMSD_RAMFS::disk_size() { |
| embeddedartists | 0:6b68dac0d986 | 44 | return ramfs->disk_size(); |
| embeddedartists | 0:6b68dac0d986 | 45 | } |
| embeddedartists | 0:6b68dac0d986 | 46 | |
| embeddedartists | 0:6b68dac0d986 | 47 | int USBMSD_RAMFS::disk_status() { |
| embeddedartists | 0:6b68dac0d986 | 48 | return ramfs->disk_status(); |
| embeddedartists | 0:6b68dac0d986 | 49 | } |
