| Line No. | Rev | Author | Line |
|---|---|---|---|
| 1 | 6 | kaklik | /*! \file fontgr.h \brief Graphic LCD Font (Graphic Characters). */ |
| 2 | //***************************************************************************** |
||
| 3 | // |
||
| 4 | // File Name : 'fontgr.h' |
||
| 5 | // Title : Graphic LCD Font (Graphic Charaters) |
||
| 6 | // Author : Pascal Stang |
||
| 7 | // Date : 10/19/2001 |
||
| 8 | // Revised : 10/19/2001 |
||
| 9 | // Version : 0.1 |
||
| 10 | // Target MCU : Atmel AVR |
||
| 11 | // Editor Tabs : 4 |
||
| 12 | // |
||
| 13 | //***************************************************************************** |
||
| 14 | |||
| 15 | #ifndef FONTGR_H |
||
| 16 | #define FONTGR_H |
||
| 17 | |||
| 18 | #ifndef WIN32 |
||
| 19 | // AVR specific includes |
||
| 20 | #include <avr/pgmspace.h> |
||
| 21 | #endif |
||
| 22 | |||
| 23 | static unsigned char __attribute__ ((progmem)) FontGr[] = |
||
| 24 | { |
||
| 25 | // format is one character per line: |
||
| 26 | // length, byte array[length] |
||
| 27 | 0x0B,0x3E,0x41,0x41,0x41,0x41,0x42,0x42,0x42,0x42,0x3C,0x00,// 0. Folder Icon |
||
| 28 | 0x06,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF // 1. Solid 6x8 block |
||
| 29 | }; |
||
| 30 | |||
| 31 | #endif |
Powered by WebSVN v2.8.3