-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathST7565R.c
648 lines (496 loc) · 16 KB
/
ST7565R.c
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
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
/* ************************************************************************
*
* driver functions for ST7565R compatible grafic displays
* - compatibles: UC1701, NT7538 (needs long reset pulse)
* - 128 x 64 (132 x 64) pixels
* - interfaces
* - 8 bit parallel in 6800 mode (not supported)
* - 8 bit parallel in 8080 mode (not supported)
* - 4 line SPI
*
* (c) 2015-2023 by Markus Reschke
*
* ************************************************************************ */
/*
* hints:
* - pin assignment for SPI
* /CS1 LCD_CS (optional)
* /RES LCD_RESET (optional)
* A0 LCD_A0
* SCL (DB6) LCD_SCL / SPI_SCK
* SI (DB7) LCD_SI / SPI_MOSI
* For hardware SPI LCD_SCL and LCD_SI have to be the MCU's SCK and
* MOSI pins.
* - max. SPI clock rate: 20MHz
* - write only
* - horizontal flip might require an offset of 4 dots
* (132 RAM dots - 128 real dots = 4)
*/
/* local includes */
#include "config.h" /* global configuration */
#ifdef LCD_ST7565R
/*
* local constants
*/
/* source management */
#define LCD_DRIVER_C
/*
* include header files
*/
/* local includes */
#include "common.h" /* common header file */
#include "variables.h" /* global variables */
#include "functions.h" /* external functions */
#include "ST7565R.h" /* ST7565R specifics */
/* fonts and symbols */
/* vertically aligned, vertical bit order flipped, bank-wise grouping */
#include "font_6x8_vf.h"
#include "font_8x8_vf.h"
#include "font_8x16_vfp.h"
#include "font_6x8_iso8859-2_vf.h"
#include "font_8x8_iso8859-2_vf.h"
#include "font_8x12t_iso8859-2_vfp.h"
#include "font_8x16_iso8859-2_vfp.h"
#include "font_8x8_win1251_vf.h"
#include "font_8x8alt_win1251_vf.h"
#include "font_8x8t_win1251_vf.h"
#include "font_8x12t_win1251_vfp.h"
#include "font_8x16_win1251_vfp.h"
#include "symbols_24x24_vfp.h"
#include "symbols_24x24_alt1_vfp.h"
#include "symbols_24x24_alt2_vfp.h"
#include "symbols_24x24_old_vfp.h"
/* sanity check */
#ifndef FONT_SET
#error <<< No font selected! >>>
#endif
#ifdef SW_SYMBOLS
#ifndef SYMBOL_SET
#error <<< No symbols selected! >>>
#endif
#endif
/*
* derived constants
*/
/* pages/bytes required for character's height */
#define CHAR_PAGES ((FONT_SIZE_Y + 7) / 8)
/* number of lines and characters per line */
#define LCD_CHAR_X (LCD_DOTS_X / FONT_SIZE_X)
#define LCD_CHAR_Y ((LCD_DOTS_Y / 8) / CHAR_PAGES)
/* component symbols */
#ifdef SW_SYMBOLS
/* pages/bytes required for symbol's height */
#define SYMBOL_PAGES ((SYMBOL_SIZE_Y + 7) / 8)
/* size in relation to a character */
#define LCD_SYMBOL_CHAR_X ((SYMBOL_SIZE_X + FONT_SIZE_X - 1) / FONT_SIZE_X)
#define LCD_SYMBOL_CHAR_Y ((SYMBOL_SIZE_Y + CHAR_PAGES * 8 - 1) / (CHAR_PAGES * 8))
/* check y size: we need at least 2 lines */
#if LCD_SYMBOL_CHAR_Y < 2
#error <<< Symbols too small! >>>
#endif
#endif
/*
* local variables
*/
/* position management */
uint8_t X_Start; /* start position X (column) */
uint8_t Y_Start; /* start position Y (page) */
/* ************************************************************************
* low level functions for 4 line SPI interface
* ************************************************************************ */
#ifdef LCD_SPI
/*
* set up interface bus
* - should be called at firmware startup
*/
void LCD_BusSetup(void)
{
uint8_t Bits; /* register bits */
/*
* set control signals
*/
/* set directions */
Bits = LCD_DDR; /* get current directions */
/* basic output pins */
Bits |= (1 << LCD_A0); /* A0 */
/* optional output pins */
#ifdef LCD_RESET
Bits |= (1 << LCD_RESET); /* /RES */
#endif
#ifdef LCD_CS
Bits |= (1 << LCD_CS); /* /CS1 */
#endif
LCD_DDR = Bits; /* set new directions */
/* set default levels */
#ifdef LCD_CS
/* disable chip */
LCD_PORT |= (1 << LCD_CS); /* set /CS1 high */
#endif
#ifdef LCD_RESET
/* disable reset */
LCD_PORT |= (1 << LCD_RESET); /* set /RES high */
#endif
/*
* init SPI bus
* - SPI bus is set up already in main()
*/
#ifdef SPI_HARDWARE
/*
* set SPI clock rate (max. 20MHz)
* - max. MCU clock 20MHz / 2 = 10MHz
* - f_osc/2 (SPR1 = 0, SPR0 = 0, SPI2X = 1)
*/
SPI.ClockRate = SPI_CLOCK_2X; /* set clock rate flags */
SPI_Clock(); /* update SPI clock */
#endif
}
/*
* send a command to the LCD
*
* requires:
* - byte value to send
*/
void LCD_Cmd(uint8_t Cmd)
{
/* indicate command mode */
LCD_PORT &= ~(1 << LCD_A0); /* set A0 low */
/* select chip, if pin available */
#ifdef LCD_CS
LCD_PORT &= ~(1 << LCD_CS); /* set /CS1 low */
#endif
SPI_Write_Byte(Cmd); /* write command byte */
/* deselect chip, if pin available */
#ifdef LCD_CS
LCD_PORT |= (1 << LCD_CS); /* set /CS1 high */
#endif
}
/*
* send data to the LCD
*
* requires:
* - byte value to send
*/
void LCD_Data(uint8_t Data)
{
/* indicate data mode */
LCD_PORT |= (1 << LCD_A0); /* set A0 high */
/* select chip, if pin available */
#ifdef LCD_CS
LCD_PORT &= ~(1 << LCD_CS); /* set /CS1 low */
#endif
SPI_Write_Byte(Data); /* write data byte */
/* deselect chip, if pin available */
#ifdef LCD_CS
LCD_PORT |= (1 << LCD_CS); /* set /CS1 high */
#endif
}
#endif
/* ************************************************************************
* high level functions
* ************************************************************************ */
/*
* set LCD dot position
* - since we can't read the LCD and don't use a RAM buffer
* we have to move page-wise in y direction
* - top left: 0/0
*
* requires:
* - x: horizontal position (0-)
* - y: vertical position (0-)
*/
void LCD_DotPos(uint8_t x, uint8_t y)
{
uint8_t Temp; /* temp. value */
/* horizontal position (column) */
Temp = x;
Temp &= 0b00001111; /* filter lower nibble */
LCD_Cmd(CMD_COLUMN_L | Temp); /* set lower nibble */
Temp = x;
Temp >>= 4; /* shift upper nibble to lower */
Temp &= 0b00001111; /* filter nibble */
LCD_Cmd(CMD_COLUMN_H | Temp); /* set upper nibble */
/* vertical position (page) */
LCD_Cmd(CMD_PAGE | y); /* set page */
}
/*
* set LCD character position
* - since we can't read the LCD and don't use a RAM buffer
* we have to move page-wise in y direction
* - top left: 1/1
*
* requires:
* - x: horizontal position (1-)
* - y: vertical position (1-)
*/
void LCD_CharPos(uint8_t x, uint8_t y)
{
/* update UI */
UI.CharPos_X = x;
UI.CharPos_Y = y;
/*
* calculate dot position
* - top left of character
*/
/* horizontal position (column) */
x--; /* columns start at 0 */
x *= FONT_SIZE_X; /* offset for character */
#ifdef LCD_OFFSET_X
x += 4; /* x offset of 4 dots */
#endif
X_Start = x; /* update start position */
/* vertical position (page) */
y--; /* pages start at 0 */
y *= CHAR_PAGES; /* offset for character */
Y_Start = y; /* update start position */
/* update display */
LCD_DotPos(x, y); /* set dot position */
}
/*
* clear one single character line
*
* requires:
* - Line: line number (1-)
* special case line 0: clear remaining space in current line
*/
void LCD_ClearLine(uint8_t Line)
{
uint8_t MaxPage; /* page limit */
uint8_t n = 1; /* counter */
if (Line == 0) /* special case: rest of current line */
{
Line = UI.CharPos_Y; /* get current line */
n = UI.CharPos_X; /* get current character position */
}
LCD_CharPos(n, Line); /* set char position */
/* calculate pages */
Line = Y_Start; /* get start page */
MaxPage = Line + CHAR_PAGES; /* end page + 1 */
/* clear line */
while (Line < MaxPage) /* loop through pages */
{
LCD_DotPos(X_Start, Line); /* set dot position */
/* clear page */
n = X_Start; /* reset counter */
while (n < 132) /* up to internal RAM size */
{
LCD_Data(0); /* send empty byte */
n++; /* next byte */
}
Line++; /* next page */
}
}
/*
* clear the display
*/
void LCD_Clear(void)
{
uint8_t n = 1; /* counter */
/* we have to clear all dots manually :( */
while (n <= LCD_CHAR_Y) /* for all lines */
{
LCD_ClearLine(n); /* clear line */
n++; /* next line */
}
LCD_CharPos(1, 1); /* reset character position */
}
/*
* set contrast
* required:
* - value: 0-63
*/
void LCD_Contrast(uint8_t Contrast)
{
if (Contrast <= 63) /* limit value */
{
/* set contrast */
LCD_Cmd(CMD_V0_MODE); /* set command */
LCD_Cmd(Contrast); /* contrast value */
NV.Contrast = Contrast; /* update value */
}
}
/*
* initialize LCD
* - for a single 3.3V supply
*/
void LCD_Init(void)
{
#ifdef LCD_RESET
/* reset display */
#ifdef LCD_LONG_RESET
/* long reset for NT7538 (10µs/1µs) */
/* trigger reset */
LCD_PORT &= ~(1 << LCD_RESET); /* set /RES low */
wait20us(); /* wait 20µs */
LCD_PORT |= (1 << LCD_RESET); /* set /RES high */
/* wait for controller to perform reset */
wait2us(); /* wait 2µs */
#else
/* standard reset for ST7565 */
/* trigger reset */
LCD_PORT &= ~(1 << LCD_RESET); /* set /RES low */
wait1us(); /* wait 1µs */
LCD_PORT |= (1 << LCD_RESET); /* set /RES high */
/* wait for controller to perform reset */
wait1us(); /* wait 1µs */
#endif
#endif
/* set start line: user defined value (default 0) */
LCD_Cmd(CMD_START_LINE | LCD_START_Y);
/* set segment driver direction (ADC) */
#ifdef LCD_FLIP_X
LCD_Cmd(CMD_SEGMENT_DIR | FLAG_ADC_REVERSE); /* flip horizontally */
#else
LCD_Cmd(CMD_SEGMENT_DIR | FLAG_ADC_NORMAL); /* normal */
#endif
/* set common driver direction */
#ifdef LCD_FLIP_Y
LCD_Cmd(CMD_COMMON_DIR | FLAG_COM_REVERSE); /* flip vertically */
#else
LCD_Cmd(CMD_COMMON_DIR | FLAG_COM_NORMAL); /* normal */
#endif
/* set LCD bias to 1/9 (duty 1/65) */
LCD_Cmd(CMD_LCD_BIAS | FLAG_BIAS_19);
/* set power mode: all on */
LCD_Cmd(CMD_POWER_MODE | FLAG_FOLOWER_ON | FLAG_REGULATOR_ON | FLAG_BOOSTER_ON);
/* set booster ratio to 4x */
LCD_Cmd(CMD_BOOSTER_MODE); /* set command */
LCD_Cmd(FLAG_BOOSTER_234); /* ratio */
/* set contrast: resistor ratio 6.5 */
LCD_Cmd(CMD_V0_RATIO | FLAG_RATIO_65);
/* set contrast: default value */
LCD_Contrast(LCD_CONTRAST);
/* no indicator */
LCD_Cmd(CMD_INDICATOR_MODE); /* set command */
LCD_Cmd(FLAG_INDICATOR_OFF); /* mode */
/* switch display on */
LCD_Cmd(CMD_DISPLAY | FLAG_DISPLAY_ON);
/* update maximums */
UI.CharMax_X = LCD_CHAR_X; /* characters per line */
UI.CharMax_Y = LCD_CHAR_Y; /* lines */
UI.MaxContrast = 63; /* LCD contrast */
#ifdef SW_SYMBOLS
UI.SymbolSize_X = LCD_SYMBOL_CHAR_X; /* x size in chars */
UI.SymbolSize_Y = LCD_SYMBOL_CHAR_Y; /* y size in chars */
#endif
LCD_Clear(); /* clear display */
}
/*
* display a single character
*
* requires:
* - Char: character to display
*/
void LCD_Char(unsigned char Char)
{
uint8_t *Table; /* pointer to table */
uint8_t Index; /* font index */
uint16_t Offset; /* address offset */
uint8_t Page; /* page number */
uint8_t x; /* bitmap x byte counter */
uint8_t y = 1; /* bitmap y byte counter */
/* prevent x overflow */
if (UI.CharPos_X > LCD_CHAR_X) return;
/* get font index number from lookup table */
Table = (uint8_t *)&FontTable; /* start address */
Table += Char; /* add offset for character */
Index = pgm_read_byte(Table); /* get index number */
if (Index == 0xff) return; /* no character bitmap available */
/* calculate start address of character bitmap */
Table = (uint8_t *)&FontData; /* start address of font data */
Offset = FONT_BYTES_N * Index; /* offset for character */
Table += Offset; /* address of character data */
Page = Y_Start; /* get start page */
/* read character bitmap and send it to display */
while (y <= FONT_BYTES_Y)
{
LCD_DotPos(X_Start, Page); /* set start position */
/* read and send all column bytes for this row */
x = 1;
while (x <= FONT_BYTES_X)
{
Index = pgm_read_byte(Table); /* read byte */
LCD_Data(Index); /* send byte */
Table++; /* address for next byte */
x++; /* next byte */
}
Page++; /* next page */
y++; /* next row */
}
/* update character position */
UI.CharPos_X++; /* next character in current line */
X_Start += FONT_SIZE_X; /* also update X dot position */
}
/*
* set cursor
*
* required:
* - Mode: cursor mode
* 0: cursor on
* 1: cursor off
*/
void LCD_Cursor(uint8_t Mode)
{
LCD_CharPos(LCD_CHAR_X, LCD_CHAR_Y); /* move to bottom right */
if (Mode) /* cursor on */
{
LCD_Char('>');
}
else /* cursor off */
{
LCD_Char(' ');
}
}
/* ************************************************************************
* fancy stuff
* ************************************************************************ */
#ifdef SW_SYMBOLS
/*
* display a component symbol
*
* requires:
* - ID: symbol to display
*/
void LCD_Symbol(uint8_t ID)
{
uint8_t *Table; /* pointer to symbol table */
uint8_t Data; /* symbol data */
uint16_t Offset; /* address offset */
uint8_t Page; /* page number */
uint8_t x; /* bitmap x byte counter */
uint8_t y = 1; /* bitmap y byte counter */
/* calculate start address of character bitmap */
Table = (uint8_t *)&SymbolData; /* start address of symbol data */
Offset = SYMBOL_BYTES_N * ID; /* offset for symbol */
Table += Offset; /* address of symbol data */
Page = Y_Start; /* get start page */
/* read symbol bitmap and send it to display */
while (y <= SYMBOL_BYTES_Y)
{
if (y > 1) /* multi-page bitmap */
{
LCD_DotPos(X_Start, Page); /* move to new page */
}
/* read and send all column bytes for this row */
x = 1;
while (x <= SYMBOL_BYTES_X)
{
Data = pgm_read_byte(Table); /* read byte */
LCD_Data(Data); /* send byte */
Table++; /* address for next byte */
x++; /* next byte */
}
Page++; /* next page */
y++; /* next row */
}
/* hint: we don't update the char position */
}
#endif
/* ************************************************************************
* clean-up of local constants
* ************************************************************************ */
/* source management */
#undef LCD_DRIVER_C
#endif
/* ************************************************************************
* EOF
* ************************************************************************ */