Subversion Repositories NaviCtrl

Rev

Rev 210 | Rev 261 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
41 ingob 1
#ifndef _FAT16_H
2
#define _FAT16_H
1 ingob 3
 
4
 
5
//________________________________________________________________________________________________________________________________________
6
// 
41 ingob 7
// Definitions
1 ingob 8
//                              
9
//________________________________________________________________________________________________________________________________________
10
 
41 ingob 11
//#define               __USE_TIME_DATE_ATTRIBUTE
211 killagreg 12
#define FILE_MAX_OPEN   4                               // The number of files that can accessed simultaneously. 
41 ingob 13
#define SEEK_SET        0
14
#define SEEK_CUR        1
15
#define SEEK_END        2
16
#define EOF     (-1) 
17
#define BYTES_PER_SECTOR        512
18
/*
19
________________________________________________________________________________________________________________________________________
20
 
21
        Structure of a filepointer
22
________________________________________________________________________________________________________________________________________
23
*/
24
typedef struct
24 StephanB 25
{
41 ingob 26
        u32 FirstSectorOfFirstCluster;  // First sector of the first cluster of the file.
27
        u32 FirstSectorOfCurrCluster;   // First sector of the cluster which is edited at the moment.
28
        u8      SectorOfCurrCluster;            // The sector within the current cluster.
29
        u16 ByteOfCurrSector;                   // The byte location within the current sector.
30
        u8      Mode;                                           // Mode of fileoperation (read,write)
31
        u32 Size;                                               // The size of the opend file in bytes.
32
        u32 Position;                                   // Pointer to a character within the file 0 < fileposition < filesize
33
        u32 DirectorySector;                    // the sectorposition where the directoryentry has been made.
34
        u16     DirectoryIndex;                         // The index to the directoryentry within the specified sector.
35
        u8      Attribute;                                      // The attribute of the file opened.
36
        u8  Cache[BYTES_PER_SECTOR];    // Cache for read and write operation from or to the sd-card.
37
        u32 SectorInCache;                              // The last sector read, which is still in the sector cache.
38
        u8      State;                                          // State of the filepointer (used/unused/...) 
39
} File_t;
1 ingob 40
 
41
//________________________________________________________________________________________________________________________________________
42
// 
43
// API to the FAT16 filesystem
44
//                              
45
//________________________________________________________________________________________________________________________________________
46
 
41 ingob 47
u8              Fat16_Init(void);
48
u8              Fat16_Deinit(void);
90 killagreg 49
u8              Fat16_IsValid(void);
210 killagreg 50
s8*             FAT16_GetVolumeLabel(void);
89 killagreg 51
 
52
File_t *fopen_(s8 * const filename, const s8 mode);
41 ingob 53
s16     fclose_(File_t *file);
89 killagreg 54
u8              fexist_(s8 * const filename);
55
s16             fflush_(File_t * const file);
56
s16     fseek_(File_t * const file, s32 offset, s16 origin);
57
s16             fgetc_(File_t * const file);
58
s16             fputc_(s8 c, File_t * const file);
59
u32     fread_(void *buffer, u32 size, u32 count, File_t * const file);
60
u32     fwrite_(void *buffer, u32 size, u32 count, File_t * const file);
90 killagreg 61
s16             fputs_(s8 * const string, File_t * const file);
89 killagreg 62
s8 *    fgets_(s8 * const string, s16 length, File_t * const file);
63
u8              feof_(File_t * const file);
1 ingob 64
 
24 StephanB 65
 
66
 
41 ingob 67
#endif //_FAT16_H
1 ingob 68
 
69
 
70
 
71