forked from OpenEscapeControl/AVR-Etherboot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspi.c
88 lines (72 loc) · 2.79 KB
/
spi.c
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
/*!\file spi.c \brief Implementation of SPI Communication */
/// \ingroup hardware
/// \defgroup SPI SPI-Interface (spi.c)
/// \code #include "spi.h" \endcode
/// \par Uebersicht
/// Die SPI-Schnittstelle fuer den AVR-Controller
//****************************************************************************/
//@{
/*
* 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.
*/
#include <avr/io.h>
#include "config.h"
#include "spi.h"
/* -----------------------------------------------------------------------------------------------------------*/
/*! Die Init fuer dir SPI-Schnittstelle. Es können verschiedene Geschwindigkeiten eingestellt werden.
* \param Option Hier kann die Geschwindigkeit der SPI eingestellt werden.
*/
/* -----------------------------------------------------------------------------------------------------------*/
void SPI_init (void)
{
// MOSI, SCK, SS als Output
// Enable Pullups
//SPI_DDR &= ~((1<<MOSI) | (1<<SCK) | (0<<SS));
//SPI_PORT |= (1<<MOSI) | (1<<SCK) | (0<<SS);
SPI_DDR = 0;
SPI_PORT = 0xff;
// set mosi, sck as output
SPI_DDR |= (1<<MOSI) | (1<<SCK);
// SCK auf Hi setzen
// SPI_PORT |= 1<<SCK;
// Master mode
SPCR = (1<<MSTR) | (1<<SPE);
// SPI_HALF_SPEED
SPSR &= ~(1<<SPI2X);
//SPSR |= 0<<SPI2X;
/* SPI_FULL_SPEED
SPSR |= 1<<SPI2X;
*/
}
/* -----------------------------------------------------------------------------------------------------------*/
/*! Schreibt einen Wert auf den SPI-Bus. Gleichzeitig wird ein Wert von diesem im Takt eingelesen.
* \warning Auf den SPI-Bus sollte vorher per Chip-select ein Baustein ausgewaehlt werden. Dies geschied nicht in der SPI-Routine sonden
* muss von der Aufrufenden Funktion gemacht werden.
* \param Data Der Wert der uebertragen werden soll.
* \retval Data Der wert der gleichzeit empfangen wurde.
*/
/* -----------------------------------------------------------------------------------------------------------*/
unsigned char SPI_ReadWrite (unsigned char Data)
{
// daten senden
SPDR = Data;
// auf fertig warten
while (!(SPSR & (1<<SPIF)));
// empfangende daten einlesen
Data = SPDR;
// daten zurueckgeben
return (Data);
}
//@}