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
#![no_std]
use embedded_hal as hal;
use hal::digital::v2::OutputPin;
use display_interface::{DataFormat, DisplayError, WriteOnlyDataCommand};
fn send_u8<SPI: hal::blocking::spi::Write<u8>>(
spi: &mut SPI,
words: DataFormat<'_>,
) -> Result<(), DisplayError> {
match words {
DataFormat::U8(slice) => spi.write(slice).map_err(|_| DisplayError::BusWriteError),
DataFormat::U16(slice) => {
use byte_slice_cast::*;
spi.write(slice.as_byte_slice())
.map_err(|_| DisplayError::BusWriteError)
}
}
}
pub struct SPIInterface<SPI, DC, CS> {
spi: SPI,
dc: DC,
cs: CS,
}
impl<SPI, DC, CS> SPIInterface<SPI, DC, CS>
where
SPI: hal::blocking::spi::Write<u8>,
DC: OutputPin,
CS: OutputPin,
{
pub fn new(spi: SPI, dc: DC, cs: CS) -> Self {
Self { spi, dc, cs }
}
pub fn release(self) -> (SPI, DC, CS) {
(self.spi, self.dc, self.cs)
}
}
impl<SPI, DC, CS> WriteOnlyDataCommand for SPIInterface<SPI, DC, CS>
where
SPI: hal::blocking::spi::Write<u8>,
DC: OutputPin,
CS: OutputPin,
{
fn send_commands(&mut self, cmds: DataFormat<'_>) -> Result<(), DisplayError> {
self.cs.set_low().map_err(|_| DisplayError::CSError)?;
self.dc.set_low().map_err(|_| DisplayError::DCError)?;
let err = send_u8(&mut self.spi, cmds);
self.cs.set_high().ok();
err
}
fn send_data(&mut self, buf: DataFormat<'_>) -> Result<(), DisplayError> {
self.cs.set_low().map_err(|_| DisplayError::CSError)?;
self.dc.set_high().map_err(|_| DisplayError::DCError)?;
let err = send_u8(&mut self.spi, buf);
self.cs.set_high().ok();
err
}
}
pub struct SPIInterfaceNoCS<SPI, DC> {
spi: SPI,
dc: DC,
}
impl<SPI, DC> SPIInterfaceNoCS<SPI, DC>
where
SPI: hal::blocking::spi::Write<u8>,
DC: OutputPin,
{
pub fn new(spi: SPI, dc: DC) -> Self {
Self { spi, dc }
}
pub fn release(self) -> (SPI, DC) {
(self.spi, self.dc)
}
}
impl<SPI, DC> WriteOnlyDataCommand for SPIInterfaceNoCS<SPI, DC>
where
SPI: hal::blocking::spi::Write<u8>,
DC: OutputPin,
{
fn send_commands(&mut self, cmds: DataFormat<'_>) -> Result<(), DisplayError> {
self.dc.set_low().map_err(|_| DisplayError::DCError)?;
send_u8(&mut self.spi, cmds)
}
fn send_data(&mut self, buf: DataFormat<'_>) -> Result<(), DisplayError> {
self.dc.set_high().map_err(|_| DisplayError::DCError)?;
send_u8(&mut self.spi, buf)
}
}