-
Notifications
You must be signed in to change notification settings - Fork 14
/
Spi.cpp
76 lines (58 loc) · 1.98 KB
/
Spi.cpp
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
/*
Spi.cpp - SPI library
Copyright (c) 2008 Cam Thompson.
Author: Cam Thompson, Micromega Corporation, <www.micromegacorp.com>
Version: December 15, 2008
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "Spi.h"
//---------- constructor ----------------------------------------------------
SPI::SPI()
{
// initialize the SPI pins
pinMode(SCK_PIN, OUTPUT);
pinMode(MOSI_PIN, OUTPUT);
pinMode(MISO_PIN, INPUT);
pinMode(SS_PIN, OUTPUT);
// enable SPI Master, MSB, SPI mode 0, FOSC/4
mode(0);
digitalWrite(SS_PIN,HIGH);
digitalWrite(MOSI_PIN,LOW);
digitalWrite(SCK_PIN,HIGH);
}
//------------------ mode ---------------------------------------------------
void SPI::mode(byte config)
{
byte tmp;
// enable SPI master with configuration byte specified
SPCR = 0;
SPCR = (config & 0x7F) | (1<<SPE) | (1<<MSTR);
tmp = SPSR;
tmp = SPDR;
}
//------------------ transfer -----------------------------------------------
byte SPI::transfer(byte value)
{
byte x;
SPDR = value;
while (!(SPSR & (1<<SPIF))) ;
x = SPDR;
return x;
}
//------------------ slave Select ---------------------------------------------
byte SPI::slaveSelect(byte value)
{
digitalWrite(SS_PIN,value);
}
//---------- preinstantiate SPI object --------------------------------------
SPI Spi = SPI();