-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathLT_SPI.cpp
More file actions
293 lines (255 loc) · 9.58 KB
/
LT_SPI.cpp
File metadata and controls
293 lines (255 loc) · 9.58 KB
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
//! @todo Review this document.
/*!
LT_SPI: Routines to communicate with ATmega328P's hardware SPI port.
@verbatim
LT_SPI implements the low level master SPI bus routines using
the hardware SPI port.
SPI Frequency = (CPU Clock frequency)/(16+2(TWBR)*Prescaler)
SPCR = SPI Control Register (SPIE SPE DORD MSTR CPOL CPHA SPR1 SPR0)
SPSR = SPI Status Register (SPIF WCOL - - - - - SPI2X)
Data Modes:
CPOL CPHA Leading Edge Trailing Edge
0 0 sample rising setup falling
0 1 setup rising sample falling
1 0 sample falling setup rising
1 1 sample rising setup rising
CPU Frequency = 16MHz on Arduino Uno
SCK Frequency
SPI2X SPR1 SPR0 Frequency Uno_Frequency
0 0 0 fosc/4 4 MHz
0 0 1 fosc/16 1 MHz
0 1 0 fosc/64 250 kHz
0 1 1 fosc/128 125 kHz
0 0 0 fosc/2 8 MHz
0 0 1 fosc/8 2 MHz
0 1 0 fosc/32 500 kHz
@endverbatim
REVISION HISTORY
$Revision: 3018 $
$Date: 2014-12-01 15:53:20 -0800 (Mon, 01 Dec 2014) $
Copyright (c) 2013, Linear Technology Corp.(LTC)
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
The views and conclusions contained in the software and documentation are those
of the authors and should not be interpreted as representing official policies,
either expressed or implied, of Linear Technology Corp.
The Linear Technology Linduino is not affiliated with the official Arduino team.
However, the Linduino is only possible because of the Arduino team's commitment
to the open-source community. Please, visit http://www.arduino.cc and
http://store.arduino.cc , and consider a purchase that will help fund their
ongoing work.
*/
//! @defgroup LT_SPI LT_SPI: Routines to communicate with ATmega328P's hardware SPI port.
/*! @file
@ingroup LT_SPI
Library for LT_SPI: Routines to communicate with ATmega328P's hardware SPI port.
*/
#include <Arduino.h>
#include <stdint.h>
#include <SPI.h>
#include "Linduino.h"
#include "LT_SPI.h"
// Reads and sends a byte
// Return 0 if successful, 1 if failed
void spi_transfer_byte(uint8_t cs_pin, uint8_t tx, uint8_t *rx)
{
output_low(cs_pin); //! 1) Pull CS low
*rx = SPI.transfer(tx); //! 2) Read byte and send byte
output_high(cs_pin); //! 3) Pull CS high
}
// Reads and sends a word
// Return 0 if successful, 1 if failed
void spi_transfer_word(uint8_t cs_pin, uint16_t tx, uint16_t *rx)
{
union
{
uint8_t b[2];
uint16_t w;
} data_tx;
union
{
uint8_t b[2];
uint16_t w;
} data_rx;
data_tx.w = tx;
output_low(cs_pin); //! 1) Pull CS low
data_rx.b[1] = SPI.transfer(data_tx.b[1]); //! 2) Read MSB and send MSB
data_rx.b[0] = SPI.transfer(data_tx.b[0]); //! 3) Read LSB and send LSB
*rx = data_rx.w;
output_high(cs_pin); //! 4) Pull CS high
}
// Reads and sends a byte array
void spi_transfer_block(uint8_t cs_pin, uint8_t *tx, uint8_t *rx, uint8_t length)
{
int8_t i;
output_low(cs_pin); //! 1) Pull CS low
for(i=(length-1); i >= 0; i--)
rx[i] = SPI.transfer(tx[i]); //! 2) Read and send byte array
output_high(cs_pin); //! 3) Pull CS high
}
// Connect SPI pins to QuikEval connector through the Linduino MUX. This will disconnect I2C.
void quikeval_SPI_connect()
{
output_high(QUIKEVAL_CS); //! 1) Pull Chip Select High
//! 2) Enable Main SPI
pinMode(QUIKEVAL_MUX_MODE_PIN, OUTPUT);
digitalWrite(QUIKEVAL_MUX_MODE_PIN, LOW);
}
// Configure the SPI port for 4MHz SCK.
// This function or spi_enable() must be called
// before using the other SPI routines.
void quikeval_SPI_init(void) // Initializes SPI
{
spi_enable(SPI_CLOCK_DIV16); //! 1) Configure the spi port for 4MHz SCK
}
// Setup the processor for hardware SPI communication.
// Must be called before using the other SPI routines.
// Alternatively, call quikeval_SPI_connect(), which automatically
// calls this function.
void spi_enable(uint8_t spi_clock_divider) // Configures SCK frequency. Use constant defined in header file.
{
//pinMode(SCK, OUTPUT); //! 1) Setup SCK as output
//pinMode(MOSI, OUTPUT); //! 2) Setup MOSI as output
//pinMode(QUIKEVAL_CS, OUTPUT); //! 3) Setup CS as output
SPI.begin();
SPI.setClockDivider(spi_clock_divider);
}
// Disable the SPI hardware port
void spi_disable()
{
SPI.end();
}
// Write a data byte using the SPI hardware
void spi_write(int8_t data) // Byte to be written to SPI port
{
SPDR = data; //! 1) Start the SPI transfer
while (!(SPSR & _BV(SPIF))); //! 2) Wait until transfer complete
}
// Read and write a data byte using the SPI hardware
// Returns the data byte read
int8_t spi_read(int8_t data) //!The data byte to be written
{
SPDR = data; //! 1) Start the SPI transfer
while (!(SPSR & _BV(SPIF))); //! 2) Wait until transfer complete
return SPDR; //! 3) Return the data read
}
// Below are implementations of spi_read, etc. that do not use the
// Arduino SPI library. To use these functions, uncomment them and comment out
// the correcsponding function above.
//
// // Reads and sends a byte
// // Return 0 if successful, 1 if failed
// uint8_t spi_transfer_byte(uint8_t cs_pin, uint8_t tx, uint8_t *rx)
// {
// output_low(cs_pin); //! 1) Pull CS low
//
// *rx = spi_read(tx); //! 2) Read byte and send byte
//
// output_high(cs_pin); //! 3) Pull CS high
//
// return(0);
// }
//
// // Reads and sends a word
// // Return 0 if successful, 1 if failed
// uint8_t spi_transfer_word(uint8_t cs_pin, uint16_t tx, uint16_t *rx)
// {
// union
// {
// uint8_t b[2];
// uint16_t w;
// } data_tx;
//
// union
// {
// uint8_t b[2];
// uint16_t w;
// } data_rx;
//
// data_tx.w = tx;
//
// output_low(cs_pin); //! 1) Pull CS low
//
// data_rx.b[1] = spi_read(data_tx.b[1]); //! 2) Read MSB and send MSB
// data_rx.b[0] = spi_read(data_tx.b[0]); //! 3) Read LSB and send LSB
// *rx = data_rx.w;
//
// output_high(cs_pin); //! 4) Pull CS high
//
// return(0);
// }
//
// // Reads and sends a byte array
// // Return 0 if successful, 1 if failed
// uint8_t spi_transfer_block(uint8_t cs_pin, uint8_t *tx, uint8_t *rx, uint8_t length)
// {
// int8_t i;
//
// output_low(cs_pin); //! 1) Pull CS low
//
// for(i=0; i < length; i++)
// rx[i] = spi_read(tx[i]); //! 2) Read and send byte array
//
// output_high(cs_pin); //! 3) Pull CS high
//
// return(0);
// }
//
// // Connect SPI pins to QuikEval connector through the Linduino MUX. This will disconnect I2C.
// void quikeval_SPI_connect()
// {
// output_high(QUIKEVAL_CS); //! 1) Pull Chip Select High
//
// //! 2) Enable Main SPI
// pinMode(QUIKEVAL_MUX_MODE_PIN, OUTPUT);
// digitalWrite(QUIKEVAL_MUX_MODE_PIN, LOW);
// }
//
// // Configure the SPI port for 4MHz SCK.
// // This function or spi_enable() must be called
// // before using the other SPI routines.
// void quikeval_SPI_init(void) // Initializes SPI
// {
// spi_enable(SPI_CLOCK_DIV32); //! 2) Configure the spi port for 4MHz SCK
// }
//
// // Setup the processor for hardware SPI communication.
// // Must be called before using the other SPI routines.
// // Alternatively, call quikeval_SPI_connect(), which automatically
// // calls this function.
// void spi_enable(uint8_t spi_clock_divider) // Configures SCK frequency. Use constant defined in header file.
// {
// pinMode(SCK, OUTPUT); //! 1) Setup SCK as output
// pinMode(MOSI, OUTPUT); //! 2) Setup MOSI as output
// pinMode(QUIKEVAL_CS, OUTPUT); //! 3) Setup CS as output
// output_low(SCK);
// output_low(MOSI);
// output_high(QUIKEVAL_CS);
// SPCR |= _BV(MSTR); //! 4) Set the SPI port to master mode
// //! 5) Set the SPI hardware rate
// SPCR = (SPCR & ~SPI_CLOCK_MASK) | (spi_clock_divider & SPI_CLOCK_MASK);
// SPSR = (SPSR & ~SPI_2XCLOCK_MASK) | ((spi_clock_divider >> 2) & SPI_2XCLOCK_MASK);
// SPCR |= _BV(SPE); //! 5) Enable the SPI port
// }
//
// // Disable the SPI hardware port
// void spi_disable()
// {
// SPCR &= ~_BV(SPE);
// }