forked from stevstrong/Adafruit_ILI9486_STM32
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Adafruit_ILI9486_STM32.cpp
403 lines (381 loc) · 10.7 KB
/
Adafruit_ILI9486_STM32.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
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
395
396
397
398
399
400
401
402
403
/*
See rights and use declaration in License.h
This library has been modified for the Maple Mini.
Includes DMA transfers on DMA1 CH2 and CH3.
*/
#include <Adafruit_ILI9486_STM32.h>
#include <libmaple/dma.h>
uint8_t useDMA;
uint16_t lineBuffer[1];
gpio_reg_map *ctrlRegs;
/*****************************************************************************/
// Constructor uses hardware SPI, the pins being specific to each device
/*****************************************************************************/
Adafruit_ILI9486_STM32::Adafruit_ILI9486_STM32(void) : Adafruit_GFX(TFTWIDTH, TFTHEIGHT), spiSet(SPISettings(32000000)), _trans(0) {}
/*****************************************************************************/
void writedata16(uint16_t c)
{
CD_DATA;
CS_ACTIVE;
SPI.write(c>>8);
SPI.write(c&0xFF);
CS_IDLE;
}
/*****************************************************************************/
void writedata16(uint16_t color, uint32_t num)
{
SPI.setDataSize(DATA_SIZE_16BIT);
CD_DATA;
CS_ACTIVE;
//#ifdef USE_DMA
if (useDMA) {
lineBuffer[0] = color;
while (num>0xFFFF) {
SPI.dmaSend(lineBuffer, 0xFFFF, 0);
num -= 0xFFFF;
}
SPI.dmaSend(lineBuffer, num, 0);
//#else
} else {
SPI.write(color, num);
//#endif
}
CS_IDLE;
SPI.setDataSize(DATA_SIZE_8BIT);
}
/*****************************************************************************/
void writecommand(uint8_t c)
{
CD_COMMAND;
CS_ACTIVE;
SPI.write(c);
CS_IDLE;
}
/*****************************************************************************/
void writedata(uint8_t c)
{
CD_DATA;
CS_ACTIVE;
SPI.write(c);
CS_IDLE;
}
/*****************************************************************************/
// https://github.com/adafruit/adafruit-rpi-fbtft/blob/35890c52f9e3eef3237b76acc295585dd93fc8cd/fb_ili9486.c
#define DELAY 0x80
/*****************************************************************************/
const uint8_t ili9486_init_sequence[] =
{
// 2, 0xb0, 0x0, // Interface Mode Control
// 1, 0x11, // Sleep OUT
// DELAY, 150,
2, 0x3A, 0x55, // use 16 bits per pixel color
2, 0x36, 0x48, // MX, BGR == rotation 0
// 2, 0xC2, 0x44, // Power Control 3
// VCOM Control 1
// 5, 0xC5, 0x00, 0x00, 0x00, 0x00,
// PGAMCTRL(Positive Gamma Control)
16, 0xE0, 0x0F, 0x1F, 0x1C, 0x0C, 0x0F, 0x08, 0x48, 0x98,
0x37, 0x0A, 0x13, 0x04, 0x11, 0x0D, 0x00,
// NGAMCTRL(Negative Gamma Control)
16, 0xE1, 0x0F, 0x32, 0x2E, 0x0B, 0x0D, 0x05, 0x47, 0x75,
0x37, 0x06, 0x10, 0x03, 0x24, 0x20, 0x00,
// Digital Gamma Control 1
16, 0xE2, 0x0F, 0x32, 0x2E, 0x0B, 0x0D, 0x05, 0x47, 0x75,
0x37, 0x06, 0x10, 0x03, 0x24, 0x20, 0x00,
1, 0x11, // Sleep OUT
DELAY, 150, // wait some time
1, 0x29, // Display ON
0 // end marker
};
/*****************************************************************************/
// Companion code to the above tables. Reads and issues
// a series of LCD commands stored in PROGMEM byte array.
/*****************************************************************************/
void commandList(const uint8_t *addr)
{
uint8_t numBytes, tmp;
while ( (numBytes=(*addr++))>0 ) { // end marker == 0
if ( numBytes&DELAY ) {
//Serial.print("delay ");
tmp = *addr++;
//Serial.println(tmp);
delay(tmp); // up to 255 millis
} else {
//Serial.print(numBytes); Serial.print("byte(s): ");
tmp = *addr++;
//Serial.write('<'); Serial.print(tmp, HEX); Serial.write('>');
writecommand(tmp); // first byte is command
while (--numBytes) { // For each argument...
tmp = *addr++;
//Serial.print(tmp, HEX); Serial.write('.');
writedata(tmp); // all consecutive bytes are data
}
//Serial.write('\n');
}
}
}
/*****************************************************************************/
void Adafruit_ILI9486_STM32::startSPI(void)
{
if(_trans == 0)
SPI.beginTransaction(TFT_CS, spiSet);
_trans++;
}
void Adafruit_ILI9486_STM32::endSPI(void)
{
_trans--;
if(_trans == 0)
SPI.endTransaction();
if(_trans < 0) _trans = 0; // sanity check if we end too many times, at least the next start will work...
}
void Adafruit_ILI9486_STM32::begin(void)
{
ctrlRegs = TFT_CNTRL->regs;
pinMode(TFT_RS, OUTPUT);
CD_DATA;
pinMode(TFT_CS, OUTPUT);
CS_IDLE;
// toggle RST low to reset
if (TFT_RST > 0) {
//Serial.println("resetting display...");
pinMode(TFT_RST, OUTPUT);
digitalWrite(TFT_RST, HIGH);
delay(20);
digitalWrite(TFT_RST, LOW);
delay(20);
digitalWrite(TFT_RST, HIGH);
delay(200);
}
startSPI();
//SPI.beginTransaction(TFT_CS, SPISettings(36000000));
// init registers
commandList(ili9486_init_sequence);
useDMA = 0;
endSPI();
}
/*****************************************************************************/
void Adafruit_ILI9486_STM32::setAddrWindow(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1)
{
startSPI();
writecommand(ILI9486_CASET); // Column addr set
writedata(x0 >> 8);
writedata(x0 & 0xFF); // XSTART
writedata(x1 >> 8);
writedata(x1 & 0xFF); // XEND
writecommand(ILI9486_PASET); // Row addr set
writedata(y0 >> 8);
writedata(y0); // YSTART
writedata(y1 >> 8);
writedata(y1); // YEND
writecommand(ILI9486_RAMWR); // write to RAM
endSPI();
}
/*****************************************************************************/
void Adafruit_ILI9486_STM32::pushColor(uint16_t color)
{
startSPI();
writedata16(color);
endSPI();
}
/*****************************************************************************/
void Adafruit_ILI9486_STM32::drawPixel(int16_t x, int16_t y, uint16_t color)
{
if ((x < 0) || (x >= _width) || (y < 0) || (y >= _height)) return;
startSPI();
setAddrWindow(x, y, x + 1, y + 1);
pushColor(color);
endSPI();
}
/*****************************************************************************/
void Adafruit_ILI9486_STM32::drawFastVLine(int16_t x, int16_t y, int16_t h, uint16_t color)
{
// Rudimentary clipping
if ((x >= _width) || (y >= _height || h < 1)) return;
if ((y + h - 1) >= _height) { h = _height - y; }
if (h < 2 ) { drawPixel(x, y, color); return; } // drawpixel already wrapped
startSPI();
setAddrWindow(x, y, x, y + h - 1);
writedata16(color, h);
endSPI();
}
/*****************************************************************************/
void Adafruit_ILI9486_STM32::drawFastHLine(int16_t x, int16_t y, int16_t w, uint16_t color)
{
// Rudimentary clipping
if ((x >= _width) || (y >= _height || w < 1)) return;
if ((x + w - 1) >= _width) { w = _width - x; }
if (w < 2 ) { drawPixel(x, y, color); return; } // drawPixel already wrapped
startSPI();
setAddrWindow(x, y, x + w - 1, y);
writedata16(color, w);
endSPI();
}
/*****************************************************************************/
void Adafruit_ILI9486_STM32::fillScreen(uint16_t color)
{
startSPI();
setAddrWindow(0, 0, _width, _height);
writedata16(color, (_width*_height));
endSPI();
}
/*****************************************************************************/
void Adafruit_ILI9486_STM32::fillRect(int16_t x, int16_t y, int16_t w, int16_t h, uint16_t color)
{
// rudimentary clipping (drawChar w/big text requires this)
if ((x >= _width) || (y >= _height || h < 1 || w < 1)) return;
if ((x + w - 1) >= _width) { w = _width - x; }
if ((y + h - 1) >= _height) { h = _height - y; }
if (w == 1 && h == 1) {
drawPixel(x, y, color); // already wrapped
return;
}
startSPI();
setAddrWindow(x, y, x + w - 1, y + h - 1);
writedata16(color, (w*h));
endSPI();
}
/*
* Draw lines faster by calculating straight sections and drawing them with fastVline and fastHline.
*/
/*****************************************************************************/
void Adafruit_ILI9486_STM32::drawLine(int16_t x0, int16_t y0,int16_t x1, int16_t y1, uint16_t color)
{
if ((y0 < 0 && y1 <0) || (y0 > _height && y1 > _height)) return;
if ((x0 < 0 && x1 <0) || (x0 > _width && x1 > _width)) return;
if (x0 < 0) x0 = 0;
if (x1 < 0) x1 = 0;
if (y0 < 0) y0 = 0;
if (y1 < 0) y1 = 0;
if (y0 == y1) {
if (x1 > x0) {
drawFastHLine(x0, y0, x1 - x0 + 1, color);
}
else if (x1 < x0) {
drawFastHLine(x1, y0, x0 - x1 + 1, color);
}
else {
drawPixel(x0, y0, color);
}
return;
}
else if (x0 == x1) {
if (y1 > y0) {
drawFastVLine(x0, y0, y1 - y0 + 1, color);
}
else {
drawFastVLine(x0, y1, y0 - y1 + 1, color);
}
return;
}
bool steep = abs(y1 - y0) > abs(x1 - x0);
if (steep) {
swap(x0, y0);
swap(x1, y1);
}
if (x0 > x1) {
swap(x0, x1);
swap(y0, y1);
}
int16_t dx, dy;
dx = x1 - x0;
dy = abs(y1 - y0);
int16_t err = dx / 2;
int16_t ystep;
if (y0 < y1) {
ystep = 1;
}
else {
ystep = -1;
}
int16_t xbegin = x0;
if (steep) {
for (; x0 <= x1; x0++) {
err -= dy;
if (err < 0) {
int16_t len = x0 - xbegin;
if (len) {
drawFastVLine (y0, xbegin, len + 1, color);
//writeVLine_cont_noCS_noFill(y0, xbegin, len + 1);
}
else {
drawPixel(y0, x0, color);
//writePixel_cont_noCS(y0, x0, color);
}
xbegin = x0 + 1;
y0 += ystep;
err += dx;
}
}
if (x0 > xbegin + 1) {
//writeVLine_cont_noCS_noFill(y0, xbegin, x0 - xbegin);
drawFastVLine(y0, xbegin, x0 - xbegin, color);
}
}
else {
for (; x0 <= x1; x0++) {
err -= dy;
if (err < 0) {
int16_t len = x0 - xbegin;
if (len) {
drawFastHLine(xbegin, y0, len + 1, color);
//writeHLine_cont_noCS_noFill(xbegin, y0, len + 1);
}
else {
drawPixel(x0, y0, color);
//writePixel_cont_noCS(x0, y0, color);
}
xbegin = x0 + 1;
y0 += ystep;
err += dx;
}
}
if (x0 > xbegin + 1) {
//writeHLine_cont_noCS_noFill(xbegin, y0, x0 - xbegin);
drawFastHLine(xbegin, y0, x0 - xbegin, color);
}
}
}
/*****************************************************************************/
// Pass 8-bit (each) R,G,B, get back 16-bit packed color
/*****************************************************************************/
uint16_t Adafruit_ILI9486_STM32::color565(uint8_t r, uint8_t g, uint8_t b)
{
return ((r & 0xF8) << 8) | ((g & 0xFC) << 3) | (b >> 3);
}
/*****************************************************************************/
void Adafruit_ILI9486_STM32::setRotation(uint8_t m)
{
startSPI();
writecommand(ILI9486_MADCTL);
rotation = m & 3; // can't be higher than 3
switch (rotation) {
case 0:
writedata(MADCTL_MX |MADCTL_BGR);
_width = TFTWIDTH;
_height = TFTHEIGHT;
break;
case 1:
writedata(MADCTL_MV | MADCTL_BGR);
_width = TFTHEIGHT;
_height = TFTWIDTH;
break;
case 2:
writedata(MADCTL_MY | MADCTL_BGR);
_width = TFTWIDTH;
_height = TFTHEIGHT;
break;
case 3:
writedata(MADCTL_MX | MADCTL_MY | MADCTL_MV | MADCTL_BGR);
_width = TFTHEIGHT;
_height = TFTWIDTH;
break;
}
endSPI();
}
/*****************************************************************************/
void Adafruit_ILI9486_STM32::invertDisplay(boolean i)
{
startSPI();
writecommand(i ? ILI9486_INVON : ILI9486_INVOFF);
endSPI();
}