forked from Ho-Ro/ComponentTester
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSSD1306.c
952 lines (719 loc) · 21.6 KB
/
SSD1306.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
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
/* ************************************************************************
*
* driver functions for SSD1306 compatible OLED grafic displays
* - 128 x 64 pixels
* - interfaces
* - 8 bit parallel in 6800 mode (not supported)
* - 8 bit parallel in 8080 mode (not supported)
* - 4 line SPI
* - 3 line SPI
* - I2C
*
* (c) 2017-2021 by Markus Reschke
*
* ************************************************************************ */
/*
* hints:
* - pin assignment for 4 line SPI
* /CS Gnd or LCD_CS (optional)
* /RES Vcc or LCD_RESET (optional)
* DC LCD_DC
* SCLK (D0) LCD_SCLK / SPI_SCK
* SDIN (D1) LCD_SDIN / SPI_MOSI
* For hardware SPI LCD_SCL and LCD_SI have to be the MCU's SCK and
* MOSI pins.
* - pin assignment for 3 line SPI
* /CS Gnd or LCD_CS (optional)
* /RES Vcc or LCD_RESET (optional)
* SCLK (D0) LCD_SCLK / SPI_SCK
* SDIN (D1) LCD_SDIN / SPI_MOSI
* Bit-bang mode only!
* - max. SPI clock rate: 10MHz
* - pin assignment for I2C
* /RES Vcc or LCD_RESET (optional)
* /CS Gnd
* SA0 (D/C) slave address SA0 (Gnd for 0x3c / 3.3V for 0x3d)
* SCL (D0) I2C_SCL
* SDA (D1 & D2) I2C_SDA
* - max. I2C clock rate: 400kHz (fast mode)
*/
/* local includes */
#include "config.h" /* global configuration */
#ifdef LCD_SSD1306
/*
* 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 "SSD1306.h" /* SSD1306 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"
/* 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 wire SPI interface
* ************************************************************************ */
/*
* protocol:
* - /CS -> D/C -> D7-0 with rising edge of SCLK
* - D/C: high = data / low = command
*/
#if defined (LCD_SPI) && ! 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 */
/* basic output pins */
Bits |= (1 << LCD_DC); /* D/C */
/* 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()
*/
#ifdef SPI_HARDWARE
/*
* set SPI clock rate (max. 10MHz)
* - 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_DC); /* set D/C low */
/* select chip, if pin available */
#ifdef LCD_CS
LCD_PORT &= ~(1 << LCD_CS); /* set /CS low */
#endif
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)
{
/* indicate data mode */
LCD_PORT |= (1 << LCD_DC); /* set D/C high */
/* select chip, if pin available */
#ifdef LCD_CS
LCD_PORT &= ~(1 << LCD_CS); /* set /CS low */
#endif
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
/* ************************************************************************
* 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
/* ************************************************************************
* low level functions for I2C interface
* ************************************************************************ */
#ifdef LCD_I2C
/*
* some early SSD1306 displays don't answer with an ACK
* fix: short pin 19 (LCD_D1) and 20 (LCD_D2) on the ribbon cable
*/
/*
* local constants
*/
/* transfer mode */
#define CTRL_CMD 0b00000001 /* command */
#define CTRL_DATA 0b00000010 /* data */
#define CTRL_SINGLE 0b00000100 /* single byte */
#define CTRL_MULTI 0b00001000 /* multiple bytes */
/*
* local variables
*/
/* single/multi byte control */
uint8_t MultiByte; /* control flag */
/*
* set up interface bus
* - should be called at firmware startup
*/
void LCD_BusSetup(void)
{
/* I2C is set up already in main() */
/* optional control lines */
#ifdef LCD_RESET
/* set pin to output mode */
LCD_DDR |= (1 << LCD_RESET); /* /RES */
/* disable reset */
LCD_PORT |= (1 << LCD_RESET); /* set /RES high */
#endif
/* set timing */
I2C.Timeout = 1; /* ACK timeout 10µs */
/* init control flag */
MultiByte = 0; /* single byte mode */
}
/*
* start sending I2C data
* - set up I2C transfer
* - send control byte
* - manage single/multi byte mode
*
* requires:
* - Mode:
* CTRL_CMD command
* CTRL_DATA data
* CTRL_SINGLE single byte
* CTRL_MULTI multiple bytes
*/
void LCD_StartTransfer(uint8_t Mode)
{
uint8_t Byte; /* control byte */
/* update control flag */
if (Mode & CTRL_MULTI) /* multi byte mode */
{
MultiByte = 1; /* set flag */
}
/* init control byte */
Byte = LCD_CONTROL_BYTE;
if (Mode & CTRL_SINGLE) Byte |= FLAG_CTRL_SINGLE; /* single byte mode */
if (Mode & CTRL_DATA) Byte |= FLAG_CTRL_DATA; /* data mode */
/* flags for multi byte mode and command mode are 0 */
if (I2C_Start(I2C_START) == I2C_OK) /* start */
{
I2C.Byte = LCD_I2C_ADDR << 1; /* address (7 bit & write) */
if (I2C_WriteByte(I2C_ADDRESS) == I2C_ACK) /* address slave */
{
I2C.Byte = Byte; /* copy control byte */
I2C_WriteByte(I2C_DATA); /* send byte */
}
}
/* todo: error handling? */
}
/*
* end sending I2C data
* - end I2C transfer
* - manage multi byte mode
*/
void LCD_EndTransfer(void)
{
/* reset control flag anyway */
MultiByte = 0; /* single byte mode */
/* end I2C transfer */
I2C_Stop(); /* stop */
}
/*
* send a command to the LCD
*
* requires:
* - byte value to send
*/
void LCD_Cmd(uint8_t Cmd)
{
if (MultiByte == 0) /* single byte mode */
{
/* init transfer */
LCD_StartTransfer(CTRL_SINGLE | CTRL_CMD);
}
/* send command */
I2C.Byte = Cmd; /* copy command */
I2C_WriteByte(I2C_DATA); /* send command */
if (MultiByte == 0) /* single byte mode */
{
LCD_EndTransfer(); /* end transfer */
}
}
/*
* send data to the LCD
*
* requires:
* - byte value to send
*/
void LCD_Data(uint8_t Data)
{
if (MultiByte == 0) /* single byte mode */
{
/* init transfer */
LCD_StartTransfer(CTRL_SINGLE | CTRL_DATA);
}
/* send command */
I2C.Byte = Data; /* copy data */
I2C_WriteByte(I2C_DATA); /* send data */
if (MultiByte == 0) /* single byte mode */
{
LCD_EndTransfer(); /* end transfer */
}
}
#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 */
#ifdef LCD_I2C
/* init transfer */
LCD_StartTransfer(CTRL_MULTI | CTRL_CMD);
#endif
/* 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_START_PAGE | y); /* set page */
#ifdef LCD_I2C
LCD_EndTransfer(); /* end transfer */
#endif
}
/*
* 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; /* 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 */
#ifdef LCD_I2C
/* init transfer */
LCD_StartTransfer(CTRL_MULTI | CTRL_DATA);
#endif
/* clear page */
n = X_Start; /* reset counter */
while (n < 128) /* for all columns */
{
LCD_Data(0); /* send empty byte */
n++; /* next byte */
}
#ifdef LCD_I2C
LCD_EndTransfer(); /* end transfer */
#endif
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:
* - Contrast: 0-255
*/
void LCD_Contrast(uint8_t Contrast)
{
/* set contrast */
LCD_Cmd(CMD_CONTRAST); /* set command */
LCD_Cmd(Contrast); /* contrast value */
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 3µs */
LCD_PORT |= (1 << LCD_RESET); /* set /RES high */
wait3us(); /* wait 3µs */
#endif
/* enable internal charge pump */
LCD_Cmd(CMD_CHARGE_PUMP);
LCD_Cmd(FLAG_CHARGEPUMP_ON);
/* segment mapping */
#ifdef LCD_FLIP_X
LCD_Cmd(CMD_SEGMENT_MAP | FLAG_SEG_127); /* flip horizontally */
#endif
/* COM output scan direction */
#ifdef LCD_FLIP_Y
LCD_Cmd(CMD_COM_SCAN_DIR | FLAG_COM_63); /* flip vertically */
#endif
/* set contrast: default value */
LCD_Contrast(LCD_CONTRAST);
/* switch display on */
LCD_Cmd(CMD_DISPLAY | FLAG_DISPLAY_ON);
/* display needs about 100ms */
/* update maximums */
UI.CharMax_X = LCD_CHAR_X; /* characters per line */
UI.CharMax_Y = LCD_CHAR_Y; /* lines */
UI.MaxContrast = 255; /* 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 */
#ifdef LCD_I2C
/* init transfer */
LCD_StartTransfer(CTRL_MULTI | CTRL_DATA);
#endif
/* 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 */
}
#ifdef LCD_I2C
LCD_EndTransfer(); /* end transfer */
#endif
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 */
}
#ifdef LCD_I2C
/* init transfer */
LCD_StartTransfer(CTRL_MULTI | CTRL_DATA);
#endif
/* 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 */
}
#ifdef LCD_I2C
LCD_EndTransfer(); /* end transfer */
#endif
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
* ************************************************************************ */