Keyboard firmwares for Atmel AVR and Cortex-M
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

FATFileSystem.h 2.8KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. /* mbed Microcontroller Library
  2. * Copyright (c) 2006-2012 ARM Limited
  3. *
  4. * Permission is hereby granted, free of charge, to any person obtaining a copy
  5. * of this software and associated documentation files (the "Software"), to deal
  6. * in the Software without restriction, including without limitation the rights
  7. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  8. * copies of the Software, and to permit persons to whom the Software is
  9. * furnished to do so, subject to the following conditions:
  10. *
  11. * The above copyright notice and this permission notice shall be included in
  12. * all copies or substantial portions of the Software.
  13. *
  14. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  15. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  16. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  17. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  18. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  19. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  20. * SOFTWARE.
  21. */
  22. #ifndef MBED_FATFILESYSTEM_H
  23. #define MBED_FATFILESYSTEM_H
  24. #include "FileSystemLike.h"
  25. #include "FileHandle.h"
  26. #include "ff.h"
  27. #include <stdint.h>
  28. using namespace mbed;
  29. /**
  30. * FATFileSystem based on ChaN's Fat Filesystem library v0.8
  31. */
  32. class FATFileSystem : public FileSystemLike {
  33. public:
  34. FATFileSystem(const char* n);
  35. virtual ~FATFileSystem();
  36. static FATFileSystem * _ffs[_VOLUMES]; // FATFileSystem objects, as parallel to FatFs drives array
  37. FATFS _fs; // Work area (file system object) for logical drive
  38. int _fsid;
  39. /**
  40. * Opens a file on the filesystem
  41. */
  42. virtual FileHandle *open(const char* name, int flags);
  43. /**
  44. * Removes a file path
  45. */
  46. virtual int remove(const char *filename);
  47. /**
  48. * Renames a file
  49. */
  50. virtual int rename(const char *oldname, const char *newname);
  51. /**
  52. * Formats a logical drive, FDISK artitioning rule, 512 bytes per cluster
  53. */
  54. virtual int format();
  55. /**
  56. * Opens a directory on the filesystem
  57. */
  58. virtual DirHandle *opendir(const char *name);
  59. /**
  60. * Creates a directory path
  61. */
  62. virtual int mkdir(const char *name, mode_t mode);
  63. /**
  64. * Mounts the filesystem
  65. */
  66. virtual int mount();
  67. /**
  68. * Unmounts the filesystem
  69. */
  70. virtual int unmount();
  71. virtual int disk_initialize() { return 0; }
  72. virtual int disk_status() { return 0; }
  73. virtual int disk_read(uint8_t * buffer, uint64_t sector, uint8_t count) = 0;
  74. virtual int disk_write(const uint8_t * buffer, uint64_t sector, uint8_t count) = 0;
  75. virtual int disk_sync() { return 0; }
  76. virtual uint64_t disk_sectors() = 0;
  77. };
  78. #endif