forked from Ho-Ro/ComponentTester
-
Notifications
You must be signed in to change notification settings - Fork 0
/
STE2007.c
601 lines (451 loc) · 14.4 KB
/
STE2007.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
/* ************************************************************************
*
* driver functions for STE2007 compatible grafic displays
* - compatible controllers: HX1230
* - AKA Nokia 1202 display
* - 96 x 68 pixels
* - interfaces
* - 3 line SPI
* modules are wired usually for 3-line SPI
* - 4 line SPI (not supported yet)
* - I2C (not supported yet)
*
* (c) 2019-2021 by Markus Reschke
*
* ************************************************************************ */
/*
* hints:
* - pin assignment for 3-line SPI
* /RES LCD_RESET (optional)
* /CS LCD_CS (optional)
* SCLK LCD_SCLK
* SDAIN LCD_SDIN
* Bit-bang mode only!
* - max. SPI clock rate: 4MHz
* - max. I2C clock rate: 400kHz (fast mode) or 3.4MHz (high speed mode)
*/
/* local includes */
#include "config.h" /* global configuration */
#ifdef LCD_STE2007
/*
* 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 "STE2007.h" /* STE2007 specifics */
/* fonts and symbols */
/* vertically aligned, vertical bit order flipped, page-wise grouping */
#include "font_6x8_vf.h"
#include "font_6x8_iso8859-2_vf.h"
#include "symbols_24x24_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 pages */
#define LCD_PAGES 9
/* 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 3 wire SPI interface
* ************************************************************************ */
/*
* The 3 wire SPI interface ignores the D/C line and adds a D/C control
* bit to the SPI data resulting in a 9 bit frame:
* - first bit for D/C, followed by D7 to D0
* - bitbang SPI only since the MCU's hardware SPI supports just bytes
*/
#if defined (LCD_SPI) && defined (SPI_BITBANG) && defined (SPI_9)
/*
* 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 */
/* optional output pins */
#ifdef LCD_RESET
Bits |= (1 << LCD_RESET); /* /RES */
#endif
#ifdef LCD_CS
Bits |= (1 << LCD_CS); /* /CS */
#endif
LCD_DDR = Bits; /* set new directions */
/* set default levels */
#ifdef LCD_CS
/* disable chip */
LCD_PORT |= (1 << LCD_CS); /* set /CS 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()
*/
}
/*
* send a command to the LCD
*
* requires:
* - byte value to send
*/
void LCD_Cmd(uint8_t Cmd)
{
/* select chip, if pin available */
#ifdef LCD_CS
LCD_PORT &= ~(1 << LCD_CS); /* set /CS low */
#endif
SPI_Write_Bit(0); /* indicate command (D/C=0) */
SPI_Write_Byte(Cmd); /* write command byte */
/* deselect chip, if pin available */
#ifdef LCD_CS
LCD_PORT |= (1 << LCD_CS); /* set /CS high */
#endif
}
/*
* send data to the LCD
*
* requires:
* - byte value to send
*/
void LCD_Data(uint8_t Data)
{
/* select chip, if pin available */
#ifdef LCD_CS
LCD_PORT &= ~(1 << LCD_CS); /* set /CS low */
#endif
SPI_Write_Bit(1); /* indicate data (D/C=1) */
SPI_Write_Byte(Data); /* write data byte */
/* deselect chip, if pin available */
#ifdef LCD_CS
LCD_PORT |= (1 << LCD_CS); /* set /CS 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 */
/* vertical position (page) */
LCD_Cmd(CMD_PAGE | y); /* set page */
/* 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 &= 0b00000111; /* filter nibble (just 3 bits) */
LCD_Cmd(CMD_COLUMN_H | Temp); /* set upper nibble */
}
/*
* 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 */
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; /* current line */
n = UI.CharPos_X; /* 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 < 96) /* for all columns */
{
LCD_Data(0); /* send empty byte */
n++; /* next byte */
}
Line++; /* next page */
}
}
/*
* clear the display
*/
void LCD_Clear(void)
{
uint8_t Page = 0; /* page counter */
uint8_t Pos; /* column counter */
/* we have to clear all dots manually :-( */
LCD_DotPos(0, 0); /* set start address */
while (Page < LCD_PAGES) /* loop through all pages */
{
Pos = 0; /* start at the left */
while (Pos < 96) /* for all 96 columns */
{
LCD_Data(0); /* send empty byte */
Pos++; /* next column */
}
Page++; /* next page */
}
LCD_CharPos(1, 1); /* reset character position */
}
/*
* set contrast
*
* required:
* - value: 0-31
*/
void LCD_Contrast(uint8_t Contrast)
{
/* set contrast */
LCD_Cmd(CMD_EV | Contrast); /* set electronic volume */
NV.Contrast = Contrast; /* update value */
}
/*
* initialize LCD
*/
void LCD_Init(void)
{
#ifdef LCD_RESET
/* reset display */
LCD_PORT &= ~(1 << LCD_RESET); /* set /RES low */
wait3us(); /* wait >2.5µs */
LCD_PORT |= (1 << LCD_RESET); /* set /RES high */
wait3us(); /* wait 2.5µs */
#endif
/* should we set VOP? */
/* set contrast: default value */
LCD_Contrast(LCD_CONTRAST);
/* set pixel mode: normal */
LCD_Cmd(CMD_PIXEL_MODE | FLAG_PIXEL_NORMAL);
/* enable booster */
LCD_Cmd(CMD_PWR_CONTROL | FLAG_PWR_ON);
/* segment driver direction */
#ifdef LCD_FLIP_X
LCD_Cmd(CMD_SEG_DIR | FLAG_SEG_REVERSED); /* flip horizontally */
#endif
/* common driver direction */
#ifdef LCD_FLIP_Y
LCD_Cmd(CMD_COM_DIR | FLAG_COM_REVERSED); /* flip vertically */
#endif
/* switch display on */
LCD_Cmd(CMD_DISPLAY | FLAG_DISPLAY_ON);
/* display needs about ???ms */
/* update maximums */
UI.CharMax_X = LCD_CHAR_X; /* characters per line */
UI.CharMax_Y = LCD_CHAR_Y; /* lines */
UI.MaxContrast = 31; /* maximum 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 character 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
* ************************************************************************ */