LCD_define_glyph_code

Description

This function defines the picture displayed for a special character. There are only 8 characters that can have their pictures defined by the programmer. These special characters have the binary values 0x00 to 0x07. This should not be confused with the ASCII character '0' to '7' which have the binary values 0x30 to 0x37

Definition

LCD_define_glyph_code(ubyte ch, ubyte * const src)

Library

LIB/lcd_lib.bas

Usage

On entry:
ch is the binary value of the character to have its picture changed.

src is a pointer to a constant array of bytes (this is a table held in the code space of the processor). src must point to an array of 8 bytes. These bytes define the character picture as a 5 by 8 cell

On exit:
There is no return value