Rev Author Line No. Line
1110 kaklik 1  
2 /*
3 * Copyright (c) 2006-2007 by Roland Riegel <feedback@roland-riegel.de>
4 *
5 * This file is free software; you can redistribute it and/or modify
6 * it under the terms of either the GNU General Public License version 2
7 * or the GNU Lesser General Public License version 2.1, both as
8 * published by the Free Software Foundation.
9 */
10  
11 #ifndef SD_READER_CONFIG_H
12 #define SD_READER_CONFIG_H
13  
14 /**
15 * \addtogroup config Sd-reader configuration
16 *
17 * @{
18 */
19  
20 /**
21 * \file
22 * Common sd-reader configuration used by all modules (license: GPLv2 or LGPLv2.1)
23 *
24 * \note This file contains only configuration items relevant to
25 * all sd-reader implementation files. For module specific configuration
26 * options, please see the files fat16_config.h, partition_config.h
27 * and sd_raw_config.h.
28 */
29  
30 /**
31 * Controls allocation of memory.
32 *
33 * Set to 1 to use malloc()/free() for allocation of structures
34 * like file and directory handles, set to 0 to use pre-allocated
35 * fixed-size handle arrays.
36 */
37 #define USE_DYNAMIC_MEMORY 0
38  
39 /**
40 * @}
41 */
42  
43 #endif
44