PICDEM™ 17 Demonstration Board User’s Guide
DS39024B-page 52
2001 Microchip Technology Inc.
*
must check to see if the LCD controller is
*
busy before calling this routine. The address
*
is read from the character generator RAM or
*
the display data RAM depending on what the
*
previous SetxxRamAddr routine was called.
*******************************************************************
**/
unsigned char ReadAddrXLCD(void)
{
char data;
// Holds the data retrieved
from the LCD
#ifdef BIT8
// 8-bit interface
RW_PIN = 1;
// Set control bits for the
read
RS_PIN = 0;
DelayFor18TCY();
E_PIN = 1;
// Clock data out of the LCD
controller
DelayFor18TCY();
data = DATA_PORT;
// Save the data in the reg-
ister
E_PIN = 0;
RW_PIN = 0;
// Reset the control bits
#else
// 4-bit interface
RW_PIN = 1;
// Set control bits for the
read
RS_PIN = 0;
DelayFor18TCY();
E_PIN = 1;
// Clock data out of the LCD
controller
DelayFor18TCY();
#ifdef UPPER
// Upper nibble interface
data = DATA_PORT&0xf0;// Read the nibble into the upper nibble
of data
#else
// Lower nibble interface
data = (DATA_PORT<<4)&0xf0;// Read nibble to upper nibble of
data
#endif
E_PIN = 0;
// Reset the clock
DelayFor18TCY();
E_PIN = 1;
// Clock out the lower nib-
ble
DelayFor18TCY();
#ifdef UPPER
// Upper nibble interface
data |= (DATA_PORT>>4)&0x0f;// Read nibble to lower nibble of
data
#else
// Lower nibble interface
data |= DATA_PORT&0x0f;
// Read nibble to lower nib-
ble of data
#endif
E_PIN = 0;
RW_PIN = 0;
// Reset the control lines
#endif
return (data&0x7f);
// Return the address, Mask
off the busy bit
}
Содержание Picdem 17
Страница 1: ...PICDEM 17 DEMONSTRATION BOARD USER S GUIDE 2001 Microchip Technology Inc DS39024B ...
Страница 19: ... 2001 Microchip Technology Inc DS39024B page 13 Using the PICDEM 17 Monitor Figure 2 5 Running Diagnostics ...
Страница 24: ...PICDEM 17 Demonstration Board User s Guide DS39024B page 18 2001 Microchip Technology Inc NOTES ...
Страница 28: ...PICDEM 17 Demonstration Board User s Guide DS39024B page 22 2001 Microchip Technology Inc NOTES ...
Страница 40: ...PICDEM 17 Demonstration Board User s Guide DS39024B page 34 2001 Microchip Technology Inc NOTES ...
Страница 62: ...PICDEM 17 Demonstration Board User s Guide DS39024B page 56 2001 Microchip Technology Inc NOTES ...
Страница 80: ...PICDEM 17 Demonstration Board User s Guide DS39024B page 74 2001 Microchip Technology Inc NOTES ...
Страница 82: ...PICDEM 17 Demonstration Board User s Guide DS39024B page 76 2001 Microchip Technology Inc A 1 SCHEMATIC 1 ...
Страница 83: ... 2001 Microchip Technology Inc DS39024B page 77 PICDEM 17 Demonstration Board Schematics A 2 SCHEMATIC 2 ...
Страница 84: ...PICDEM 17 Demonstration Board User s Guide DS39024B page 78 2001 Microchip Technology Inc A 3 SCHEMATIC 3 ...
Страница 85: ... 2001 Microchip Technology Inc DS39024B page 79 PICDEM 17 Demonstration Board Schematics A 4 SCHEMATIC 4 ...
Страница 86: ...PICDEM 17 Demonstration Board User s Guide DS39024B page 80 2001 Microchip Technology Inc NOTES ...
Страница 90: ...PICDEM 17 Demonstration Board User s Guide DS39024B page 84 2001 Microchip Technology Inc NOTES ...
Страница 91: ... 2001 Microchip Technology Inc DS39024B page 85 Floppy Disk Contents NOTES ...