Hi!
I have an IPC with a 1/4 VGA 320x200 display here and I'm trying to
implement a font for the framebuffer console which is capable of
displaying 80xSomething characters. As this is only possible with a 4x6
pixel matrix I tried to chang one of the predefined fonts (font_8x8.c).
However, it doesn't seem to work properly. It now looks like this:
[...]
#define FONTDATAMAX (6*256)
[...]
/* 255 0xff 'ÿ' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
};
struct fbcon_font_desc font_vga_8x8 = {
VGA8x8_IDX,
"VGA8x8",
4,
6,
fontdata_8x8,
0
};
The height of the characters are displayed correctly, but the width is
still 8 px.
Any idea?
Robert
--
+----------------------------------------------------------------------+
I Dipl.-Ing. Robert Schwebel, Luedemannstrasse 25, 24114 Kiel, Germany I
I Phone +49-431-6794138 Fax +49-431-6794139 email: [EMAIL PROTECTED] I
+----------------------------------------------------------------------+
--
To unsubscribe from this list, send a message to [EMAIL PROTECTED]
with the command "unsubscribe linux-embedded" in the message body.
For more information, see <http://waste.org/mail/linux-embedded>.