| Line No. | Rev | Author | Line |
|---|---|---|---|
| 1 | 6 | kaklik | /*! \file mmcconf.h \brief MultiMedia and SD Flash Card Interface Configuration. */ |
| 2 | //***************************************************************************** |
||
| 3 | // |
||
| 4 | // File Name : 'mmcconf.h' |
||
| 5 | // Title : MultiMedia and SD Flash Card Interface Configuration |
||
| 6 | // Author : Pascal Stang - Copyright (C) 2004 |
||
| 7 | // Created : 2004.09.22 |
||
| 8 | // Revised : 2004.09.22 |
||
| 9 | // Version : 0.1 |
||
| 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 MMCCONF_H |
||
| 23 | #define MMCCONF_H |
||
| 24 | |||
| 25 | // define to enable debugging print statements |
||
| 26 | #define MMC_DEBUG |
||
| 27 | |||
| 28 | // MMC card chip select pin defines |
||
| 29 | #define MMC_CS_PORT PORTB |
||
| 30 | #define MMC_CS_DDR DDRB |
||
| 31 | #define MMC_CS_PIN 0 |
||
| 32 | |||
| 33 | #endif |
Powered by WebSVN v2.8.3