-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDisplayTftSpiBase.cs
461 lines (386 loc) · 14.3 KB
/
DisplayTftSpiBase.cs
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
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
using Meadow.Hardware;
using System;
using System.Threading;
namespace Meadow.Foundation.Displays.Tft
{
public abstract class DisplayTftSpiBase : DisplayBase, IDisposable
{
#region Enums
protected enum LcdCommand
{
CASET = 0x2A,
RASET = 0x2B,
RAMWR = 0x2C
};
public enum Rotation
{
Normal, //zero
Rotate_90, //in degrees
Rotate_180,
Rotate_270,
}
#endregion
//these displays typically support 12, 16 & 18 bit but the current driver only supports 16
public override DisplayColorMode ColorMode => DisplayColorMode.Format16bppRgb565;
public override uint Width => width;
public override uint Height => height;
protected IDigitalOutputPort dataCommandPort;
protected IDigitalOutputPort resetPort;
protected IDigitalOutputPort chipSelectPort;
protected SpiBus spi;
protected ISpiPeripheral spiDisplay;
protected readonly byte[] spiBuffer;
protected readonly byte[] spiReceive;
protected ushort currentPen;
protected uint width;
protected uint height;
protected uint xMin, xMax, yMin, yMax;
protected const bool Data = true;
protected const bool Command = false;
protected abstract void Initialize();
internal DisplayTftSpiBase()
{
}
public DisplayTftSpiBase(IIODevice device, ISpiBus spiBus, IPin chipSelectPin, IPin dcPin, IPin resetPin,
uint width, uint height)
{
this.width = width;
this.height = height;
spi = (SpiBus)spiBus;
spiBuffer = new byte[this.width * this.height * sizeof(ushort)];
spiReceive = new byte[this.width * this.height * sizeof(ushort)];
dataCommandPort = device.CreateDigitalOutputPort(dcPin, false);
if (resetPin != null) { resetPort = device.CreateDigitalOutputPort(resetPin, true); }
if (chipSelectPin != null) { chipSelectPort = device.CreateDigitalOutputPort(chipSelectPin, false); }
spiDisplay = new SpiPeripheral(spiBus, chipSelectPort);
}
protected abstract void SetAddressWindow(uint x0, uint y0, uint x1, uint y1);
/// <summary>
/// Clear the display.
/// </summary>
/// <param name="updateDisplay">Update the dipslay once the buffer has been cleared when true.</param>
public override void Clear(bool updateDisplay = false)
{
Clear(0, updateDisplay);
}
public void Clear(Color color, bool updateDisplay = false)
{
Clear(Get16BitColorFromColor(color), updateDisplay);
}
protected void Clear(ushort color, bool updateDisplay = false)
{
ClearScreen(color);
if (updateDisplay)
{
Show();
}
}
/// <summary>
/// Display a 1-bit bitmap
///
/// This method simply calls a similar method in the display hardware.
/// </summary>
/// <param name="x">Abscissa of the top left corner of the bitmap.</param>
/// <param name="y">Ordinate of the top left corner of the bitmap.</param>
/// <param name="width">Width of the bitmap in bytes.</param>
/// <param name="height">Height of the bitmap in bytes.</param>
/// <param name="bitmap">Bitmap to display.</param>
/// <param name="bitmapMode">How should the bitmap be transferred to the display?</param>
public override void DrawBitmap(int x, int y, int width, int height, byte[] bitmap, BitmapMode bitmapMode)
{
if ((width * height) != bitmap.Length)
{
throw new ArgumentException("Width and height do not match the bitmap size.");
}
for (var ordinate = 0; ordinate < height; ordinate++)
{
for (var abscissa = 0; abscissa < width; abscissa++)
{
var b = bitmap[(ordinate * width) + abscissa];
byte mask = 0x01;
for (var pixel = 0; pixel < 8; pixel++)
{
DrawPixel(x + (8 * abscissa) + pixel, y + ordinate, (b & mask) > 0);
mask <<= 1;
}
}
}
}
/// <summary>
/// Display a 1-bit bitmap
///
/// This method simply calls a similar method in the display hardware.
/// </summary>
/// <param name="x">Abscissa of the top left corner of the bitmap.</param>
/// <param name="y">Ordinate of the top left corner of the bitmap.</param>
/// <param name="width">Width of the bitmap in bytes.</param>
/// <param name="height">Height of the bitmap in bytes.</param>
/// <param name="bitmap">Bitmap to display.</param>
/// <param name="color">The color of the bitmap.</param>
public override void DrawBitmap(int x, int y, int width, int height, byte[] bitmap, Color color)
{
if ((width * height) != bitmap.Length)
{
throw new ArgumentException("Width and height do not match the bitmap size.");
}
for (var ordinate = 0; ordinate < height; ordinate++)
{
for (var abscissa = 0; abscissa < width; abscissa++)
{
var b = bitmap[(ordinate * width) + abscissa];
byte mask = 0x01;
for (var pixel = 0; pixel < 8; pixel++)
{
if ((b & mask) > 0)
{
DrawPixel(x + (8 * abscissa) + pixel, y + ordinate, color);
}
mask <<= 1;
}
}
}
}
/// <summary>
/// Sets the pen color used for DrawPixel calls
/// <param name="pen">Pen color</param>
/// </summary>
public override void SetPenColor(Color pen)
{
currentPen = Get16BitColorFromColor(pen);
}
/// <summary>
/// Draw a single pixel using the current pen
/// </summary>
/// <param name="x">x location </param>
/// <param name="y">y location</param>
public override void DrawPixel(int x, int y)
{
SetPixel(x, y, currentPen);
}
/// <summary>
/// Draw a single pixel
/// </summary>
/// <param name="x">x location </param>
/// <param name="y">y location</param>
/// <param name="colored">Turn the pixel on (true) or off (false).</param>
public override void DrawPixel(int x, int y, bool colored)
{
SetPixel(x, y, (colored ? (ushort)(0xFFFF) : (ushort)0));
}
/// <summary>
/// Draw a single pixel
/// </summary>
/// <param name="x">x location </param>
/// <param name="y">y location</param>
/// <param name="color">16bpp 5/6/5 ushort value for pixel color</param>
public void DrawPixel(int x, int y, ushort color)
{
SetPixel(x, y, color);
}
/// <summary>
/// Draw a single pixel
/// </summary>
/// <param name="x">x location </param>
/// <param name="y">y location</param>
/// <param name="color">Color of pixel.</param>
public override void DrawPixel(int x, int y, Color color)
{
SetPixel(x, y, Get16BitColorFromColor(color));
}
/// <summary>
/// Draw a single pixel
/// </summary>
/// <param name="x">x location </param>
/// <param name="y">y location</param>
/// <param name="r">8 bit red value</param>
/// <param name="g">8 bit green value</param>
/// <param name="b">8 bit blue value</param>
public void DrawPixel(int x, int y, byte r, byte g, byte b)
{
SetPixel(x, y, Get16BitColorFromRGB(r, g, b));
}
/// <summary>
/// Draw a single pixel
/// </summary>
/// <param name="x">x location </param>
/// <param name="y">y location</param>
/// <param name="color">16bpp (565) encoded color value</param>
private void SetPixel(int x, int y, ushort color)
{
if (x < 0 || y < 0 || x >= width || y >= height)
return;
var index = ((y * width) + x) * sizeof(ushort);
spiBuffer[index] = (byte)(color >> 8);
spiBuffer[++index] = (byte)(color);
xMin = (uint)Math.Min(xMin, x);
xMax = (uint)Math.Max(xMax, x);
yMin = (uint)Math.Min(yMin, y);
yMax = (uint)Math.Max(yMax, y);
}
/// <summary>
/// Draw the display buffer to screen
/// </summary>
public override void Show()
{
// spiDisplay.WriteBytes(spiBuffer);
if (xMax == 0 || yMax == 0)
return;
if(xMin > 0 || yMin > 0)
{
Show(xMin, yMin, xMax, yMax);
return;
}
SetAddressWindow(0, 0, Width - 1, yMax);
int len = (int)((yMax + 1) * Width * 2);
dataCommandPort.State = Data;
spi.ExchangeData(chipSelectPort, ChipSelectMode.ActiveLow, spiBuffer, spiReceive, len);
xMin = width;
yMin = height;
xMax = 0;
yMax = 0;
}
byte[] lineBufferSend;
byte[] lineBufferReceive;
/// <summary>
/// Draw the display buffer to screen from x0,y0 to x1,y1
/// </summary>
public void Show(uint x0, uint y0, uint x1, uint y1)
{
if(x1 <= x0 || y1 <= y0)
{ //could throw an exception
return;
}
if (lineBufferSend == null)
{
lineBufferSend = new byte[width * sizeof(ushort)];
lineBufferReceive = new byte[width * sizeof(ushort)];
}
SetAddressWindow(x0, y0, x1, y1);
var len = (x1 - x0 + 1) * sizeof(ushort);
dataCommandPort.State = Data;
uint sourceIndex;
for (uint y = y0; y <= y1; y++)
{
sourceIndex = ((y * width) + x0) * sizeof(ushort);
Array.Copy(spiBuffer, sourceIndex, lineBufferSend, 0, len);
spi.ExchangeData(chipSelectPort, ChipSelectMode.ActiveLow, lineBufferSend, lineBufferReceive, (int)len);
}
xMin = width;
yMin = height;
xMax = 0;
yMax = 0;
}
private ushort Get16BitColorFromRGB(byte red, byte green, byte blue)
{
red >>= 3;
green >>= 2;
blue >>= 3;
return (ushort)(red << 11 | green << 5 | blue);
}
private ushort Get16BitColorFromColor(Color color)
{
//this seems heavy
byte red = (byte)(color.R * 255.0);
byte green = (byte)(color.G * 255.0);
byte blue = (byte)(color.B * 255.0);
return Get16BitColorFromRGB(red, green, blue);
}
protected void Write(byte value)
{
spiDisplay.WriteByte(value);
}
protected void Write(byte[] data)
{
spiDisplay.WriteBytes(data);
}
protected void DelayMs(int millseconds)
{
Thread.Sleep(millseconds);
}
protected void SendCommand(byte command)
{
dataCommandPort.State = Command;
Write(command);
}
protected void SendData(int data)
{
SendData((byte)data);
}
protected void SendData(byte data)
{
dataCommandPort.State = Data;
Write(data);
}
protected void SendData(byte[] data)
{
dataCommandPort.State = Data;
spiDisplay.WriteBytes(data);
}
/// <summary>
/// Directly sets the display to a 16bpp color value
/// </summary>
/// <param name="color">16bpp color value (565)</param>
public void ClearScreen(ushort color = 0)
{
var high = (byte)(color >> 8);
var low = (byte)(color);
var index = 0;
spiBuffer[index++] = high;
spiBuffer[index++] = low;
spiBuffer[index++] = high;
spiBuffer[index++] = low;
spiBuffer[index++] = high;
spiBuffer[index++] = low;
spiBuffer[index++] = high;
spiBuffer[index++] = low;
spiBuffer[index++] = high;
spiBuffer[index++] = low;
spiBuffer[index++] = high;
spiBuffer[index++] = low;
spiBuffer[index++] = high;
spiBuffer[index++] = low;
spiBuffer[index++] = high;
spiBuffer[index++] = low;
Array.Copy(spiBuffer, 0, spiBuffer, 16, 16);
Array.Copy(spiBuffer, 0, spiBuffer, 32, 32);
Array.Copy(spiBuffer, 0, spiBuffer, 64, 64);
Array.Copy(spiBuffer, 0, spiBuffer, 128, 128);
Array.Copy(spiBuffer, 0, spiBuffer, 256, 256);
index = 512;
while (index < spiBuffer.Length - 256)
{
Array.Copy(spiBuffer, 0, spiBuffer, index, 256);
index += 256;
}
while (index < spiBuffer.Length)
{
spiBuffer[index++] = high;
spiBuffer[index++] = low;
}
xMin = 0;
yMin = 0;
xMax = Width - 1;
yMax = Height - 1;
}
/*
* from Netduino testing, can safely remove
public void ClearWithoutFullScreenBuffer(ushort color)
{
var buffer = new ushort[_width];
for (int x = 0; x < _width; x++)
{
buffer[x] = color;
}
for (int y = 0; y < _height; y++)
{
spiDisplay.WriteBytes(buffer);
}
}*/
public void Dispose()
{
spi = null;
dataCommandPort = null;
resetPort = null;
}
}
}