-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathSPI.c
394 lines (287 loc) · 8.02 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
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
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
/* ************************************************************************
*
* SPI (bit-bang & hardware)
*
* (c) 2017-2019 by Markus Reschke
*
* ************************************************************************ */
/*
* hints:
* - port and pins for bit-bang SPI
* SPI_PORT port data register
* SPI_DDR port data direction register
* SPI_PIN port input pins register
* SPI_SCK pin for SCK
* SPI_MOSI pin for MOSI
* SPI_MISO pin for MISO
* - For hardware SPI the MCU specific pins are used:
* ATmega 328: SCK / MOSI / MISO
* ATmega 644: SCK PB7 / MOSI PB5 / MISO PB6
* - /CS and other control signals have to be managed by the specific
* chip driver
*/
/* local includes */
#include "config.h" /* global configuration */
#ifdef HW_SPI
/*
* local constants
*/
/* source management */
#define SPI_C
/*
* include header files
*/
/* local includes */
#include "common.h" /* common header file */
#include "variables.h" /* global variables */
#include "functions.h" /* external functions */
/* ************************************************************************
* functions for bit-bang SPI
* ************************************************************************ */
#ifdef SPI_BITBANG
/*
* set up SPI bus
* - SCK, MOSI and MISO lines
* - don't care about clock
*/
void SPI_Setup(void)
{
/* set up bus only once */
if (Cfg.OP_Mode & OP_SPI) return;
/*
* set up bitbang SPI:
* - master mode
*/
#ifdef SPI_MISO
/* set MISO line to input mode */
SPI_DDR &= ~(1 << SPI_MISO);
#endif
/* set SCK and MOSI to output mode */
SPI_DDR |= (1 << SPI_SCK) | (1 << SPI_MOSI);
/* preset lines to 0 */
SPI_PORT &= ~((1 << SPI_SCK) | (1 << SPI_MOSI));
Cfg.OP_Mode |= OP_SPI; /* bus is set up */
}
#ifdef SPI_9
/*
* write a single bit
* - for displays supporting D/C control via SPI
*
* requires:
* - Bit: bit to write
*/
void SPI_Write_Bit(uint8_t Bit)
{
/* expected state: SCK low / MOSI undefined */
/* set MOSI based on bit */
if (Bit) /* 1 */
{
/* set MOSI high */
SPI_PORT |= (1 << SPI_MOSI);
}
else /* 0 */
{
/* set MOSI low */
SPI_PORT &= ~(1 << SPI_MOSI);
}
/* end clock cycle (rising edge takes bit) */
SPI_PORT |= (1 << SPI_SCK);
/* start next clock cycle (falling edge) */
SPI_PORT &= ~(1 << SPI_SCK);
/* current state: SCK low / MOSI undefined */
}
#endif
/*
* write a single byte
*
* requires:
* - Byte: byte to write
*/
void SPI_Write_Byte(uint8_t Byte)
{
uint8_t n = 8; /* counter */
/* expected state: SCK low / MOSI undefined */
/*
* bitbang 8 bits:
* - SPI mode 0 (CPOL = 0, CPHA = 0)
* - set MOSI before rising SCK
* - MSB first
*/
while (n > 0) /* for 8 bits */
{
/* get current MSB and set MOSI */
if (Byte & 0b10000000) /* 1 */
{
/* set MOSI high */
SPI_PORT |= (1 << SPI_MOSI);
}
else /* 0 */
{
/* set MOSI low */
SPI_PORT &= ~(1 << SPI_MOSI);
}
/* end clock cycle (rising edge takes bit) */
SPI_PORT |= (1 << SPI_SCK);
/* start next clock cycle (falling edge) */
SPI_PORT &= ~(1 << SPI_SCK);
Byte <<= 1; /* shift bits one step left */
n--; /* next bit */
}
/* current state: SCK low / MOSI undefined */
}
#if SPI_RW
/*
* write and read a single byte
*
* requires:
* - Byte: byte to write
*
* returns:
* - byte read
*/
uint8_t SPI_WriteRead_Byte(uint8_t Byte)
{
uint8_t Byte2 = 0; /* return value */
uint8_t n = 8; /* counter */
uint8_t Temp; /* temporary value */
/* expected state: SCK low / MOSI undefined */
/*
* bitbang 8 bits:
* - SPI mode 0 (CPOL = 0, CPHA = 0)
* - set MOSI before rising SCK
* - read MISO after rising SCK
* - MSB first
*/
while (n > 0) /* for 8 bits */
{
/* get current MSB and set MOSI */
if (Byte & 0b10000000) /* 1 */
{
/* set MOSI high */
SPI_PORT |= (1 << SPI_MOSI);
}
else /* 0 */
{
/* set MOSI low */
SPI_PORT &= ~(1 << SPI_MOSI);
}
/* end clock cycle (rising edge takes bit) */
SPI_PORT |= (1 << SPI_SCK);
/* read MISO */
Temp = SPI_PIN; /* read port */
Temp &= (1 << SPI_MISO); /* filter MISO */
Byte2 <<= 1; /* shift bits one step left */
if (Temp) /* MISO set */
{
Byte2 |= 0b00000001; /* set bit */
}
/* start next clock cycle (falling edge) */
SPI_PORT &= ~(1 << SPI_SCK);
Byte <<= 1; /* shift bits one step left */
n--; /* next bit */
}
/* current state: SCK low / MOSI undefined */
return Byte2;
}
#endif
#endif
/* ************************************************************************
* functions for hardware SPI
* ************************************************************************ */
#ifdef SPI_HARDWARE
/*
* set SPI clock rate
* - uses SPI.ClockRate for input
*/
void SPI_Clock(void)
{
uint8_t Clock; /* clock rate bits */
uint8_t Bits; /* bits/bitmask */
Clock = SPI.ClockRate; /* get clock rate flags */
Bits = SPCR; /* get control register */
Bits &= ~((1 << SPR1) | (1 << SPR0)); /* clear clock rate bits */
/* set divider bits */
if (Clock & SPI_CLOCK_R0) Bits |= (1 << SPR0);
if (Clock & SPI_CLOCK_R1) Bits |= (1 << SPR1);
SPCR = Bits; /* set new clock rate */
Bits = 0; /* clear "double" bit */
/* set bit to double SPI speed */
if (Clock & SPI_CLOCK_2X) Bits = (1 << SPI2X);
SPSR = Bits; /* update register */
}
/*
* set up SPI bus
* - clock and mode
* - lines are set up automatically
*/
void SPI_Setup(void)
{
uint8_t Bits; /* bits/bitmask */
/* set up bus only once */
if (Cfg.OP_Mode & OP_SPI) return;
/* set SCK and MOSI to output mode */
/* using variable Bits to keep compiler happy */
Bits = SPI_DDR;
Bits |= (1 << SPI_SCK) | (1 << SPI_MOSI);
SPI_DDR = Bits;
/* MISO is automatically set to input mode by enabling SPI */
/*
* set up hardware SPI
* - master mode (MSTR = 1)
* - SPI mode 0 (CPOL = 0, CPHA = 0)
* - MSB first (DORD = 0)
* - polling mode (SPIE = 0)
*/
/* set mode and enable SPI */
SPCR = (1 << SPE) | (1 << MSTR);
/* set clock rate */
SPI_Clock();
/* clear SPI interrupt flag, just in case */
Bits = SPSR; /* read flag */
Bits = SPDR; /* clear flag by reading data */
Cfg.OP_Mode |= OP_SPI; /* bus is set up */
}
/*
* write a single byte
*
* requires:
* - Byte: byte to write
*/
void SPI_Write_Byte(uint8_t Byte)
{
/* send byte */
SPDR = Byte; /* start transmission */
while (!(SPSR & (1 << SPIF))); /* wait for flag */
Byte = SPDR; /* clear flag by reading data */
}
#if SPI_RW
/*
* write and read a single byte
*
* requires:
* - Byte: byte to write
*
* returns:
* - byte read
*/
uint8_t SPI_WriteRead_Byte(uint8_t Byte)
{
uint8_t Byte2; /* return value */
/* send byte */
SPDR = Byte; /* start transmission */
while (!(SPSR & (1 << SPIF))); /* wait for flag */
/* get received byte */
Byte2 = SPDR; /* clear flag by reading data */
return Byte2;
}
#endif
#endif
/* ************************************************************************
* clean-up of local constants
* ************************************************************************ */
/* source management */
#undef SPI_C
#endif
/* ************************************************************************
* EOF
* ************************************************************************ */