aboutsummaryrefslogtreecommitdiff
path: root/3rd-party/LCDHD44780.c
blob: e7837d01a8acf8b18e024a31811694eb4d11288f (plain)
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
/*##############################################################*/
/* Author: Marcus Nasarek                                       */
/* File:   LCDH44780.c                                          */
/* Compile with:                                                */
/*      gcc -Wall -c LCDHD44780.c -o LCDHD44780.o               */
/* License:                                                     */
/*                                                              */
/*  This program is free software; you can redistribute it      */
/*  and/or modify it under the terms of the GNU General         */
/*  Public License as published by the Free Software            */
/*  Foundation; either version 3 of the License, or             */
/*  (at your option) any later version.                         */
/*                                                              */
/*  This program is distributed in the hope that it will        */
/*  be useful, but WITHOUT ANY WARRANTY; without even the       */
/*  implied warranty of MERCHANTABILITY or                      */
/*  FITNESS FOR A PARTICULAR PURPOSE. See the GNU General       */
/*  Public License for more details.                            */
/*                                                              */
/*  You should have received a copy of the GNU General          */
/*  Public License along with this program; if not,             */
/*  see <http://www.gnu.org/licenses/>.                         */
/*                                                              */
/*##############################################################*/

#include "LCDHD44780.h"

void init_gpio(void)
{
	// Set all pins to output
	bcm2835_gpio_fsel(LCD_RS, BCM2835_GPIO_FSEL_OUTP);
	bcm2835_gpio_fsel(LCD_D4, BCM2835_GPIO_FSEL_OUTP);
	bcm2835_gpio_fsel(LCD_D5, BCM2835_GPIO_FSEL_OUTP);
	bcm2835_gpio_fsel(LCD_D6, BCM2835_GPIO_FSEL_OUTP);
	bcm2835_gpio_fsel(LCD_D7, BCM2835_GPIO_FSEL_OUTP);
	bcm2835_gpio_fsel(LCD_E,  BCM2835_GPIO_FSEL_OUTP);

	bcm2835_delayMicroseconds(C_DELAY);

	// Set all pins to LOW
	bcm2835_gpio_clr(LCD_RS);
	bcm2835_gpio_clr(LCD_D4);
	bcm2835_gpio_clr(LCD_D5);
	bcm2835_gpio_clr(LCD_D5);
	bcm2835_gpio_clr(LCD_D7);
	bcm2835_gpio_clr(LCD_E);

}

void set_data_pins_to_output(void)
{
		// set data pins to output
	bcm2835_gpio_fsel(LCD_D7, BCM2835_GPIO_FSEL_OUTP);
	bcm2835_gpio_fsel(LCD_D6, BCM2835_GPIO_FSEL_OUTP);
	bcm2835_gpio_fsel(LCD_D5, BCM2835_GPIO_FSEL_OUTP);
	bcm2835_gpio_fsel(LCD_D4, BCM2835_GPIO_FSEL_OUTP);
}

void set_data_pins_to_input(void)
{
	// set data pins to input
	bcm2835_gpio_fsel(LCD_D7, BCM2835_GPIO_FSEL_INPT);
	bcm2835_gpio_fsel(LCD_D6, BCM2835_GPIO_FSEL_INPT);
	bcm2835_gpio_fsel(LCD_D5, BCM2835_GPIO_FSEL_INPT);
	bcm2835_gpio_fsel(LCD_D4, BCM2835_GPIO_FSEL_INPT);
}

void pulse_e(void)
{
	// Toogle ENABLE pin in us
	// bcm2835_gpio_fsel(LCD_E, BCM2835_GPIO_FSEL_OUTP);
	bcm2835_delayMicroseconds(E_DELAY);
	bcm2835_gpio_set(LCD_E);
	bcm2835_delayMicroseconds(E_DATA_PULSE);
	bcm2835_gpio_clr(LCD_E);
	(LCD_DATA) ? bcm2835_delayMicroseconds(E_DATA_PULSE) :bcm2835_delayMicroseconds(E_CMD_PULSE);
}

void init_lcd(void)
{
	init_gpio();

	/*
	The busy flag (BF) is kept in the busy state
	until the initialization ends (BF = 1). The
	busy state lasts for 10 ms after VCC rises to 4.5 V
	*/

	/*
	--- symbols:
	I/D = 1: Increment
	I/D = 0: Decrement
	S = 1: Accompanies display shift
	S/C = 1: Display shift
	S/C = 0: Cursor move
	R/L = 1: Shift to the right
	R/L = 0: Shift to the left
	DL = 1: 8 bits, DL = 0: 4 bits
	N = 1: 2 lines, N = 0: 1 line
	F = 1: 5
	×
	10 dots, F = 0: 5
	×
	8 dots
	BF = 1: Internally operating
	BF = 0: Instructions acceptable
	*/

	/*
	--- Display init after turn on:
	1. Display clear
	2. Function set:
			DL = 1; 8-bit interface data
			N = 0; 1-line display
			F = 0; 5×8 dot character font
	3. Display on/off control:
			D = 0; Display off
			C = 0; Cursor off
			B = 0; Blinking off
	4. Entry mode set:
			I/D = 1; Increment by 1
			S = 0; No shift
	*/

	// begin of "warming up"
	// see fig 24 on page 46 of datasheet

	// Function set -
	// Sets interface data length
	// (DL), number of display lines
	// (N), and character font (F).
	// RS R/W DB7 DB6 DB5 DB4 DB3 DB2 DB1 DB0
	// 0  0   0   0   1   DL   N   F   -   -
	// DL = 0 --> 4 bit data length (1 = 8 bit)
	// N = 1 --> 2 line display (0 = 1 line)
	// F = 0 --> 5x8 dot character font
	// 0x33 =
	// 0  0   0   0   1   1    0   0   1   1
	// --> ?
	write_to_lcd(0x33, LCD_CMD);
	bcm2835_delayMicroseconds(100);

	// Function set -
	// Sets interface data length
	// (DL), number of display lines
	// (N), and character font (F).
	// RS R/W DB7 DB6 DB5 DB4 DB3 DB2 DB1 DB0
	// 0  0   0   0   1   DL   N   F   -   -
	// DL = 0 --> 4 bit data length (1 = 8 bit)
	// N = 1 --> 2 line display (0 = 1 line)
	// F = 0 --> 5x8 dot character font
	// 0x32 =
	// 0  0   0   0   1   1    0   0   1   0
	// --> ?
	write_to_lcd(0x32, LCD_CMD);
	bcm2835_delayMicroseconds(R_EXEC_TIME);

	// end of "warming up"

	lcd_function_set(TWO_LINES);

	lcd_control(DISPLAY_ON);

	lcd_entry_mode(ADDR_INCREMENT);

	clear_lcd();

}

void lcd_function_set(uint8_t control_flags)
{
	// Function set -
	// Sets interface data length
	// (DL), number of display lines
	// (N), and character font (F).
	// RS R/W DB7 DB6 DB5 DB4 DB3 DB2 DB1 DB0
	// 0  0   0   0   1   DL   N   F   -   -
	// DL = 0 --> 4 bit data length (1 = 8 bit)
	// N = 1 --> 2 line display (0 = 1 line)
	// F = 0 --> 5x8 dot character font
	// F = 1 --> 5x10 dot character font
	// 0x28 =
	// 0  0   0   0   1   0    1  0   0   0
	write_to_lcd(LCD_FUNCTION_SET | control_flags, LCD_CMD);
	bcm2835_delayMicroseconds(R_EXEC_TIME);
}

void lcd_control(uint8_t control_flags)
{
	// Display on/off control -
	// Sets entire display (D) on/off,
	// cursor on/off (C), and
	// blinking of cursor position
	// character (B).
	// RS R/W DB7 DB6 DB5 DB4 DB3 DB2 DB1 DB0
	// 0  0   0   0   0   0   1   D   C   B
	// D = 1 --> display on
	// C = 0 --> cursor off
	// B = 0 --> blinking off
	write_to_lcd(LCD_CONTROL | control_flags, LCD_CMD);
	bcm2835_delayMicroseconds(R_EXEC_TIME);
}

void lcd_shift_control(uint8_t control_flags)
{
	// Cursor or display shift -
	// Moves the cursor and shifts
	// display without chaning
	// DDRAM contents.
	// Execution time 37us
	// RS R/W DB7 DB6 DB5 DB4 DB3 DB2 DB1 DB0
	// 0  0   0   0   0   1   S/C R/L -   -
	// S/C = cursor/display shift
	// S/C = 0 --> cursor shift
	// R/L = shift direction
	// R/L = 1 --> shift to right
	write_to_lcd(CURSOR_DISPLAY_SHIFT | control_flags, LCD_CMD);
	bcm2835_delayMicroseconds(R_EXEC_TIME);
}

void lcd_entry_mode(uint8_t control_flags)
{
	// Entry mode set -
	// Sets cursor move direction
	// and specifies display shift.
	// These operations are
	// performed during data write
	// and read.
	// Execution time 37us
	// RS R/W DB7 DB6 DB5 DB4 DB3 DB2 DB1 DB0
	// 0  0   0   0   0   0   0   1   I/D S
	// I/D = increment/decrement address pointer
	// I/D = 1 --> increment
	// S = 0 --> no shift
	write_to_lcd(LCD_ENTRY_MODE | control_flags, LCD_CMD);
	bcm2835_delayMicroseconds(R_EXEC_TIME);
}

void clear_lcd(void) {
	// Clear display -
	// Clears entire display and
	// sets DDRAM address 0 in
	// address counter:
	// RS R/W DB7 DB6 DB5 DB4 DB3 DB2 DB1 DB0
	// 0  0   0   0   0   0   0   0   0   1
	write_to_lcd(0x01, LCD_CMD);
	bcm2835_delayMicroseconds(R_EXEC_TIME);
}

void return_home(void)
{
	// Return home -
	// Sets DDRAM address to 0
	// in address counter. Also
	// returns display from being
	// shifted to original position
	// DDRAM contents remains unchanged
	// RS R/W DB7 DB6 DB5 DB4 DB3 DB2 DB1 DB0
	// 0  0   0   0   0   0   0   0   1   -
	write_to_lcd(0x02, LCD_CMD);
	bcm2835_delayMicroseconds(R_EXEC_TIME);
}


void display_off(void)
{
	lcd_control(DISPLAY_OFF);
}

void show_cursor(bool on)
{
	uint8_t cursor_flag;
	cursor_flag = ( on ? CURSOR_ON : 0x00);
	lcd_control(DISPLAY_ON | cursor_flag);
}

void cursor_blinking(bool on)
{
	uint8_t blinking_flag;
	blinking_flag = ( on ? BLINKING_ON : 0x00);
	lcd_control(DISPLAY_ON | blinking_flag);
}

void set_cursor(uint8_t addr)
{
	// Set DDRAM address
	// RS R/W DB7 DB6 DB5 DB4 DB3 DB2 DB1 DB0
	// 0  0   1   ADD ADD ADD ADD ADD ADD ADD
	write_to_lcd(addr, LCD_CMD);
	bcm2835_delayMicroseconds(R_EXEC_TIME);
	// fprintf(stdout,"cursor on addr: 0x%0x\n", addr);
}

void shift_cursor(uint8_t direction)
{
	lcd_shift_control(CURSOR_SHIFT | direction);
}

void shift_display(uint8_t direction)
{
	lcd_shift_control(DISPLAY_SHIFT | direction);
}

void write_to_lcd(uint8_t byte, uint8_t mode)
{
	switch (mode) {
		case LCD_CMD:
			bcm2835_gpio_clr(LCD_RS);
			// fprintf(stdout, "Set RS to cmd mode\n");
			break;
		case LCD_DATA:
			bcm2835_gpio_set(LCD_RS);
			// fprintf(stdout, "Set RS to data mode for '%c'\n", byte);
			break;
		default:
			// fprintf(stderr, "mode for setting GPIO pin unknown: %i\n", mode);
			exit(EXIT_FAILURE);
	}

	// write high bits
	bcm2835_gpio_clr(LCD_D4);
	bcm2835_gpio_clr(LCD_D5);
	bcm2835_gpio_clr(LCD_D6);
	bcm2835_gpio_clr(LCD_D7);

	if ((byte & 0x10) == 0x10) {
		bcm2835_gpio_set(LCD_D4);
	}
	if ((byte & 0x20) == 0x20) {
		bcm2835_gpio_set(LCD_D5);
	}
	if ((byte & 0x40) == 0x40) {
		bcm2835_gpio_set(LCD_D6);
	}
	if ((byte & 0x80) == 0x80) {
		bcm2835_gpio_set(LCD_D7);
	}

	// Toogle ENABLE pin in us
	pulse_e();

	// write low bits
	bcm2835_gpio_clr(LCD_D4);
	bcm2835_gpio_clr(LCD_D5);
	bcm2835_gpio_clr(LCD_D6);
	bcm2835_gpio_clr(LCD_D7);

	if ((byte & 0x01) == 0x01) {
		bcm2835_gpio_set(LCD_D4);
	}
	if ((byte & 0x02) == 0x02) {
		bcm2835_gpio_set(LCD_D5);
	}
	if ((byte & 0x04) == 0x04) {
		bcm2835_gpio_set(LCD_D6);
	}
	if ((byte & 0x08) == 0x08) {
		bcm2835_gpio_set(LCD_D7);
	}

	pulse_e();

}

void write_string(char *str)
{
	uint16_t i;
	uint8_t len = 0;

	len = (strlen(str) > LCD_WIDTH ? LCD_WIDTH : strlen(str));

	for (i=0; i<len;i++) {
		write_to_lcd(str[i], LCD_DATA);
	}
}

void gpio_reset(void)
{
	// bcm2835_gpio_fsel(LCD_RS, BCM2835_GPIO_PUD_OFF);
	// bcm2835_gpio_fsel(LCD_E, BCM2835_GPIO_PUD_OFF);
	// bcm2835_gpio_fsel(LCD_D4, BCM2835_GPIO_PUD_OFF);
	// bcm2835_gpio_fsel(LCD_D5, BCM2835_GPIO_PUD_OFF);
	// bcm2835_gpio_fsel(LCD_D6, BCM2835_GPIO_PUD_OFF);
	// bcm2835_gpio_fsel(LCD_D7, BCM2835_GPIO_PUD_OFF);

	// bcm2835_gpio_fsel(LCD_RS, BCM2835_GPIO_FSEL_INPT);
	// bcm2835_gpio_fsel(LCD_E, BCM2835_GPIO_FSEL_INPT);
	// bcm2835_gpio_fsel(LCD_D4, BCM2835_GPIO_FSEL_INPT);
	// bcm2835_gpio_fsel(LCD_D5, BCM2835_GPIO_FSEL_INPT);
	// bcm2835_gpio_fsel(LCD_D6, BCM2835_GPIO_FSEL_INPT);
	// bcm2835_gpio_fsel(LCD_D7, BCM2835_GPIO_FSEL_INPT);

	bcm2835_gpio_clr(LCD_RS);
	bcm2835_gpio_clr(LCD_E);
	bcm2835_gpio_clr(LCD_D4);
	bcm2835_gpio_clr(LCD_D5);
	bcm2835_gpio_clr(LCD_D6);
	bcm2835_gpio_clr(LCD_D7);
}