diff options
author | Tectu <joel@unormal.org> | 2012-08-05 23:02:38 -0700 |
---|---|---|
committer | Tectu <joel@unormal.org> | 2012-08-05 23:02:38 -0700 |
commit | e2629e350b9db524ce328b18535cfa005edec0f4 (patch) | |
tree | 653b83b6a38039a6800cdf283618976da7280cf6 /glcd/fonts.h | |
parent | 856abc84360ebce762086c1313609841c63ee697 (diff) | |
parent | 4311a56126e63ad9f4d551be42d0dac7c7329040 (diff) | |
download | uGFX-e2629e350b9db524ce328b18535cfa005edec0f4.tar.gz uGFX-e2629e350b9db524ce328b18535cfa005edec0f4.tar.bz2 uGFX-e2629e350b9db524ce328b18535cfa005edec0f4.zip |
Merge pull request #32 from inmarket/GLCDBackPort2
Packport GDISP driver into GLCD
Diffstat (limited to 'glcd/fonts.h')
-rw-r--r-- | glcd/fonts.h | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/glcd/fonts.h b/glcd/fonts.h deleted file mode 100644 index a94b5252..00000000 --- a/glcd/fonts.h +++ /dev/null @@ -1,39 +0,0 @@ -/* - ChibiOS/RT - Copyright (C) 2012 - Joel Bodenmann aka Tectu <joel@unormal.org> - - This file is part of ChibiOS-LCD-Driver. - - ChibiOS-LCD-Driver is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 3 of the License, or - (at your option) any later version. - - ChibiOS-LCD-Driver is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see <http://www.gnu.org/licenses/>. -*/ - -#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 |