?lang_form? ?lang_select? ?lang_submit? ?lang_endform?
{HEADER END}
{BLAME START}

library

?curdirlinks? -

Blame information for rev 6

Line No. Rev Author Line
1 6 kaklik /*! \file fatconf.h \brief FAT16/32 file system driver configuration. */
2 //*****************************************************************************
3 //
4 // File Name : 'fatconf.h'
5 // Title : FAT16/32 file system driver configuration
6 // Author : Pascal Stang
7 // Date : 4/19/2003
8 // Revised : 4/19/2003
9 // Version : 0.3
10 // Target MCU : Atmel AVR Series
11 // Editor Tabs : 4
12 //
13 // NOTE: This code is currently below version 1.0, and therefore is considered
14 // to be lacking in some functionality or documentation, or may not be fully
15 // tested. Nonetheless, you can expect most functions to work.
16 //
17 // This code is distributed under the GNU Public License
18 // which can be found at http://www.gnu.org/licenses/gpl.txt
19 //
20 //*****************************************************************************
21  
22 #ifndef FATCONF_H
23 #define FATCONF_H
24  
25 // debug on/off
26 #define DEBUG_FAT
27  
28 #define SECTOR_BUFFER1_ADDR 0x0600+0x0600
29 #define SECTOR_BUFFER1_SIZE 0x0200
30  
31 #define LONGNAME_BUFFER_ADDR 0x0200+0x0600
32 #define LONGNAME_BUFFER_SIZE 0x0100
33  
34 #define DIRNAME_BUFFER_ADDR 0x0300+0x0600
35 #define DIRNAME_BUFFER_SIZE 0x0100
36  
37 #define FAT_CACHE_ADDR 0x0400+0x0600
38 #define FAT_CACHE_SIZE 0x0200
39  
40 #endif
{BLAME END}
{FOOTER START}

Powered by WebSVN v2.8.3