You are currently viewing How to Interface GLCD with LPC2148 ARM7 evaluation board

How to Interface GLCD with LPC2148 ARM7 evaluation board

Spread the love

The ARM7 LPC2148 Evaluation Board is specifically designed to help students to master the required skills in the area of embedded systems. The kit is designed in such way that all the possible features of the microcontroller will be easily used by the students. The kit supports in system programming (ISP) which is done through serial port.

NXP’s ARM7 (LPC2148), ARM Evaluation Kit is proposed to smooth the progress of developing and debugging of various designs encompassing of High speed 32-bit Microcontrollers.

GLCD (Graphical Liquid Crystal Display)

The Graphics LCD as the name suggests is a type of LCD which can display graphics. The graphical representation of any data presents good understanding than just characters. More user friendly applications can be designed by using the graphical LCDs.

Interfacing GLCD

Fig. 1 shows how to interface the GLCD to microcontroller. The 128X64 Graphical LCD interfaces to adjust contrast through trim pot. The GLCD needed to create 8-bit interface; 8 data bits (D0 – D7), three control lines, address bit (RS), read/write bit (R/W) and control signal (E), Page Select (CS).

Interfacing GLCD to Microcontroller
Fig. 1 Interfacing GLCD to Microcontroller

Interfacing GLCD with LPC2148

We now want to display a text in LPC2148 Evaluation Board by using GLCD module. In LPC2148 Evaluation Board contains the LCD and GLCD connections in a single header.

The ARM7 LPC2148 Evaluation Board has numbers of GLCD connections, connected with I/O Port lines (P1.18 – P1.22 && P0.16 – P0.23) to make GLCD display.

Pin Assignment with LPC2148

Circuit Diagram to Interface GLCD with LPC2148

Circuit Diagram to Interface GLCD with LPC2148

Source Code

The Interfacing GLCD with LPC2148 program is very simple and straight forward, that display a text in 128 X 64 GLCD module. Some delay is occurring when a single command / data is executed.

C Program to display a text in GLCD using LPC2148

#include 
#include "Glcd.h"
#include "bmp_maska.h"
#include "Utility.h"
unsigned char
	ii;

char
	*someText;
int main (void)
{
	PINSEL0 = 0;
	PINSEL1 = 0;
	PINSEL2 &= 0x0000000C;
	PINSEL2 |= 0x00000030;
	DelayProc(0.2 * CCLOCK);


	IODIR0 = 0;
	Glcd_Init(&IOPIN0,	// Control lines Port
						&IOPIN0,	// Data Lines Port
						10,				// CS1#
						11,				// CS2#
						12,				// RS
						13,				// R/W#
						15,				// RST
						14,				// EN
						16);			// D0 data line position
	while (1)
	{
		Glcd_Fill(0x00);

		Glcd_Image( maska_bmp );
		DelayProc(2.0 * CCLOCK);

		Glcd_Fill(0x00);

		Glcd_Line(120,1, 5,60, 1);
		Glcd_Line(12,42, 5,60, 1);
		DelayProc(1.0 * CCLOCK);

		Glcd_Rectangle(12,20, 93,57, 1);
		DelayProc(1.0 * CCLOCK);

		Glcd_Line(120,12, 12,60, 1);
		DelayProc(1.0 * CCLOCK);

		Glcd_H_Line(5,15, 6, 1);
		Glcd_Line(0,12, 120,60, 1);
		Glcd_V_Line(7,63, 127, 1);
		DelayProc(1.0 * CCLOCK);

		for (ii = 1; ii <= 10; ii++)
			Glcd_Circle(63,32, 3*ii, 1);
		DelayProc(1.0 * CCLOCK);

		Glcd_Box(12,20, 70,57, 2);
		DelayProc(1.0 * CCLOCK);

		someText = "BIG:ONE";
		Glcd_Write_Text(someText, 5,3, 2);
		DelayProc(1.0 * CCLOCK);

		someText = "SMALL:NOT:SMALLER";
		Glcd_Write_Text(someText, 20,5, 1);
		DelayProc(1.0 * CCLOCK);
	}
}

To compile the above C code you need the KEIL software. They must be properly set up and a project with correct settings must be created in order to compile the code. To compile the above code, the C file must be added to the project.

In Keil, you want to develop or debug the project without any hardware setup. You must compile the code for generating HEX file. In debugging Mode, you want to check the port output without microcontroller Evaluation Board.

The Flash Magic software is used to download the hex file into your microcontroller through UART0.

Testing the Graphical LCD Module with LPC2148

Give +3.3V power supply to LPC2148 Evaluation Board; the Graphical LCD is connected with microcontroller LPC2148 Board. When the program is downloading into LPC2148 in Evaluation Board , the screen should show the picture output.

If you not reading any output from Graphical LCD, then you just check the jumper connections & adjust the trim pot level. Otherwise you just check it with debugging mode in Keil. If you want to see more details about debugging just see the videos in below link.

How to Create and Debug a Project in Keil

General Information

☞For proper working use the components of exact values as shown in Circuit file. Wherever possible use new components.

☞Solder everything in a clean way. A major problem arises due to improper soldering, solder jumps and loose joints.

☞Use the exact value crystal shown in schematic.

☞More instructions are available in following articles,

How to Interface LCD with LPC2148 ARM7 Evaluation Board

Creating & Debugging a Project in KEIL

User Manual for ARM7 LPC2148 Evaluation kit

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.