-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSPIDisplay.cpp
56 lines (52 loc) · 1.27 KB
/
SPIDisplay.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
#include "SPIDisplay.h"
/* Initialize interface port */
void SPIDisplay::begin()
{
SPI.begin();
pinMode(m_cs, OUTPUT);
pinMode(m_dc, OUTPUT);
pinMode(m_rst, OUTPUT);
digitalWrite(m_cs, HIGH);
digitalWrite(m_dc, HIGH);
reset();
}
/* Perform hardware reset */
void SPIDisplay::reset()
{
digitalWrite(m_rst, LOW);
delay(5);
digitalWrite(m_rst, HIGH);
delay(5);
}
/* Write bytes to the device. The first parameter determines D/C line state during transfer. */
void SPIDisplay::write_bytes_(write_mode_t mode, uint8_t const* bytes, uint8_t len, bool pgmem)
{
digitalWrite(m_dc, mode == mode_data ? HIGH : LOW);
for (; len; --len) {
uint8_t byte;
if (bytes != NULL) {
byte = !pgmem ? *bytes : pgm_read_byte(bytes);
++bytes;
} else
byte = 0;
transfer(byte);
if (mode == mode_cmd_head) {
digitalWrite(m_dc, HIGH);
mode = mode_data;
}
}
if (mode != mode_data)
digitalWrite(m_dc, HIGH);
}
/* Write sequence of commands. Each command bytes should be prefixed by the length byte. The whole sequence should be terminated by 0 byte. */
void SPIDisplay::write_cmds_(uint8_t const* buff, bool pgmem)
{
for (;;) {
uint8_t len = !pgmem ? *buff : pgm_read_byte(buff);
if (!len)
break;
++buff;
write_bytes_(mode_cmd_head, buff, len, pgmem);
buff += len;
}
}