P2-2 Harris Barton
Dependencies: mbed wave_player 4DGL-uLCD-SE MMA8452
SDFileSystem/FATFileSystem/FATDirHandle.h@1:10330bce85cb, 2020-10-23 (annotated)
- Committer:
- DCchico
- Date:
- Fri Oct 23 16:18:39 2020 -0400
- Revision:
- 1:10330bce85cb
shell-code
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
DCchico | 1:10330bce85cb | 1 | /* mbed Microcontroller Library |
DCchico | 1:10330bce85cb | 2 | * Copyright (c) 2006-2012 ARM Limited |
DCchico | 1:10330bce85cb | 3 | * |
DCchico | 1:10330bce85cb | 4 | * Permission is hereby granted, free of charge, to any person obtaining a copy |
DCchico | 1:10330bce85cb | 5 | * of this software and associated documentation files (the "Software"), to deal |
DCchico | 1:10330bce85cb | 6 | * in the Software without restriction, including without limitation the rights |
DCchico | 1:10330bce85cb | 7 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
DCchico | 1:10330bce85cb | 8 | * copies of the Software, and to permit persons to whom the Software is |
DCchico | 1:10330bce85cb | 9 | * furnished to do so, subject to the following conditions: |
DCchico | 1:10330bce85cb | 10 | * |
DCchico | 1:10330bce85cb | 11 | * The above copyright notice and this permission notice shall be included in |
DCchico | 1:10330bce85cb | 12 | * all copies or substantial portions of the Software. |
DCchico | 1:10330bce85cb | 13 | * |
DCchico | 1:10330bce85cb | 14 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
DCchico | 1:10330bce85cb | 15 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
DCchico | 1:10330bce85cb | 16 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
DCchico | 1:10330bce85cb | 17 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
DCchico | 1:10330bce85cb | 18 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
DCchico | 1:10330bce85cb | 19 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
DCchico | 1:10330bce85cb | 20 | * SOFTWARE. |
DCchico | 1:10330bce85cb | 21 | */ |
DCchico | 1:10330bce85cb | 22 | #ifndef MBED_FATDIRHANDLE_H |
DCchico | 1:10330bce85cb | 23 | #define MBED_FATDIRHANDLE_H |
DCchico | 1:10330bce85cb | 24 | |
DCchico | 1:10330bce85cb | 25 | #include "DirHandle.h" |
DCchico | 1:10330bce85cb | 26 | |
DCchico | 1:10330bce85cb | 27 | using namespace mbed; |
DCchico | 1:10330bce85cb | 28 | |
DCchico | 1:10330bce85cb | 29 | class FATDirHandle : public DirHandle { |
DCchico | 1:10330bce85cb | 30 | |
DCchico | 1:10330bce85cb | 31 | public: |
DCchico | 1:10330bce85cb | 32 | FATDirHandle(const FATFS_DIR &the_dir); |
DCchico | 1:10330bce85cb | 33 | virtual int closedir(); |
DCchico | 1:10330bce85cb | 34 | virtual struct dirent *readdir(); |
DCchico | 1:10330bce85cb | 35 | virtual void rewinddir(); |
DCchico | 1:10330bce85cb | 36 | virtual off_t telldir(); |
DCchico | 1:10330bce85cb | 37 | virtual void seekdir(off_t location); |
DCchico | 1:10330bce85cb | 38 | |
DCchico | 1:10330bce85cb | 39 | private: |
DCchico | 1:10330bce85cb | 40 | FATFS_DIR dir; |
DCchico | 1:10330bce85cb | 41 | struct dirent cur_entry; |
DCchico | 1:10330bce85cb | 42 | |
DCchico | 1:10330bce85cb | 43 | }; |
DCchico | 1:10330bce85cb | 44 | |
DCchico | 1:10330bce85cb | 45 | #endif |