forked from KonstantinChizhov/Mcucpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspi.h
executable file
·157 lines (134 loc) · 4.06 KB
/
spi.h
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
//*****************************************************************************
//
// Author : Konstantin Chizhov
// Date : 2013
// All rights reserved.
// Redistribution and use in source and binary forms, with or without modification,
// are permitted provided that the following conditions are met:
// Redistributions of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
// 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 HOLDER 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.
//*****************************************************************************
#include "__compatibility.h"
#include <iopins.h>
#include <enum.h>
#ifndef _MCUCPP_AVR_SPI_H
#define _MCUCPP_AVR_SPI_H
namespace Mcucpp
{
namespace Private
{
using namespace IO;
#include "__spi_pins.h"
}
class SpiBase
{
protected:
enum{SPI2X_shift = 8};
public:
enum ClockDivider
{
Div2 = 1 << (SPI2X + SPI2X_shift) | 0 << SPR1 | 0 << SPR0,
Div4 = 0 << (SPI2X + SPI2X_shift) | 0 << SPR1 | 0 << SPR0,
Div8 = 1 << (SPI2X + SPI2X_shift) | 0 << SPR1 | 1 << SPR0,
Div16 = 0 << (SPI2X + SPI2X_shift) | 0 << SPR1 | 1 << SPR0,
Div32 = 1 << (SPI2X + SPI2X_shift) | 1 << SPR1 | 0 << SPR0,
Div64 = 1 << (SPI2X + SPI2X_shift) | 1 << SPR1 | 1 << SPR0,
Div128 = 0 << (SPI2X + SPI2X_shift) | 1 << SPR1 | 1 << SPR0,
Fastest = Div2,
Fast = Div4,
Medium = Div16,
Slow = Div64,
Slowest = Div128
};
enum ModeFlags
{
SoftSlaveControl = 0,
LsbFirst = 1 << DORD,
MsbFirst = 0,
DataSize8 = 0,
ClockPolarityLow = 0,
ClockPolarityHigh = 1 << CPOL,
ClockPhase1Edge = 0,
ClockPhase2Edge = 1 << CPHA,
Master = 1 << MSTR,
Slave = 0
};
};
inline SpiBase::ModeFlags operator|(SpiBase::ModeFlags left, SpiBase::ModeFlags right)
{
return static_cast<SpiBase::ModeFlags>(static_cast<int>(left) | static_cast<int>(right));
}
class Spi :public SpiBase
{
public:
typedef Private::SsPin SsPin;
typedef Private::MosiPin MosiPin;
typedef Private::MisoPin MisoPin;
typedef Private::SckPin SckPin;
static void Enable()
{
SPCR |= 1<<SPE;
}
static void Disable()
{
SPCR &= ~(1<<SPE);
}
static void Init(ClockDivider divider, ModeFlags mode = Master)
{
SsPin::SetDirWrite();
SsPin::Set();
MosiPin::SetDirWrite();
SckPin::SetDirWrite();
MisoPin::SetDirRead();
if(divider & (1 << (SPI2X + SPI2X_shift)))
SPSR |= 1 << SPI2X;
else
SPSR &= ~(1 << SPI2X);
SPCR = uint8_t(mode) | uint8_t(divider) | 1<<SPE;
}
static uint8_t ReadWrite(uint8_t outValue)
{
SPDR = outValue;
while(!(SPSR & (1<<SPIF)));
return SPDR;
}
static uint8_t Read()
{
return ReadWrite(0xff);
}
static void Write(uint8_t outValue)
{
(void)ReadWrite(outValue);
}
static void InterruptEnable()
{
SPCR |= (1 << SPIE);
}
static void InterruptDisable()
{
SPCR &= ~(1 << SPIE);
}
static void SetSS()
{
SsPin::Set();
}
static void ClearSS()
{
SsPin::Clear();
}
};
}
#endif