diff options
author | Kumar Abhishek <abhishek@kumar> | 2012-06-12 18:06:06 +0530 |
---|---|---|
committer | Kumar Abhishek <abhishek@kumar> | 2012-06-12 18:06:06 +0530 |
commit | bd573fbef19fd1a9e28c95e248d1279ad706ae75 (patch) | |
tree | bb940fe73aa8c16d9511dcd5b30cc5b3ed21f08e /fonts.h | |
parent | 346fec7eb4a9e2542e51a17449b672b034964873 (diff) | |
download | uGFX-bd573fbef19fd1a9e28c95e248d1279ad706ae75.tar.gz uGFX-bd573fbef19fd1a9e28c95e248d1279ad706ae75.tar.bz2 uGFX-bd573fbef19fd1a9e28c95e248d1279ad706ae75.zip |
Changes in the Text Rendering API
The code now uses my API
Pls contact for further documentation
Diffstat (limited to 'fonts.h')
-rw-r--r-- | fonts.h | 39 |
1 files changed, 27 insertions, 12 deletions
@@ -1,12 +1,27 @@ -#ifndef ASCIILIB_H
-#define ASCIILIB_H
-
-#include <string.h>
-
-//#define ASCII_8X16_MS_Gothic
-#define ASCII_8X16_System
-
-void GetASCIICode(unsigned char* pBuffer,unsigned char ASCII);
-
-#endif
-
+/* + * fonts.h + * + * File containing prototype of the fonts for display + * + * + */ + +#include <stdint.h> + +#ifndef _FONT_ +#define _FONT_ + +#define FONT_TABLE_HEIGHT_IDX 0 +#define FONT_TABLE_PAD_AFTER_CHAR_IDX 1 +#define FONT_TABLE_LINE_SPACING_IDX 2 +#define FONT_TABLE_DECENDERS_HEIGHT_IDX 3 +#define FONT_TABLE_UNUSED_IDX 4 +#define FONT_TABLE_CHAR_LOOKUP_IDX 5 + +extern const uint8_t font_Small[]; +extern const uint8_t font_Larger[]; +//extern const uint8_t font_Medium[]; +extern const uint8_t font_MediumBold[]; +extern const uint8_t font_LargeNumbers[]; + +#endif |