blob: 49f8105f6fd7e46ac588909436767d1c61b73450 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
/*
* c't-Bot
*
* This program is free software; you can redistribute it
* and/or modify it under the terms of the GNU General
* Public License as published by the Free Software
* Foundation; either version 2 of the License, or (at your
* option) any later version.
* This program is distributed in the hope that it will be
* useful, but WITHOUT ANY WARRANTY; without even the implied
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details.
* You should have received a copy of the GNU General Public
* License along with this program; if not, write to the Free
* Software Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307, USA.
*
*/
/*!
* @file mmc-low.h
* @brief Low-Level-Routinen zum Lesen/Schreiben einer MMC / SD-Card
* @author Timo Sandmann (mail@timosandmann.de)
* @date 14.11.06
*/
#ifndef MMC_LOW_H_
#define MMC_LOW_H_
/* Portkonfiguration */
#define MMC_PORT_OUT PORTB // Port an der die MMC/SD-Karte angeschlossen ist also des SPI
#define MMC_PORT_IN PINB
#define MMC_DDR DDRB
#define SPI_DI 6 // Port Pin an dem Data Output der MMC/SD-Karte angeschlossen ist
#define SPI_DO 5 // Port Pin an dem Data Input der MMC/SD-Karte angeschlossen ist
#define MMC_CLK_DDR DDRB
#define MMC_CLK_PORT PORTB
#define SPI_CLK 7 // Port Pin an dem die Clock der MMC/SD-Karte angeschlossen ist (clk)
#define MMC_TIMEOUT 500 // Wartezyklen auf Cardresponse
#define MMC_ASYNC_WRITE 0 // 1 Aktiviert asynchrones Schreiben auf die Karte, wo es sinnvoll ist, 0 schaltet es aus. Funktioniert allerdings nicht mit allen Karten */
#endif // MMC_LOW_H
|