diff options
author | Andrew Hannam <andrewh@inmarket.com.au> | 2012-08-05 21:45:58 +1000 |
---|---|---|
committer | Andrew Hannam <andrewh@inmarket.com.au> | 2012-08-05 21:45:58 +1000 |
commit | 8ccb2b24442f1cc26a877a866f92e8f0e8caf28e (patch) | |
tree | 881179491cb48371b1e366a8765c93307373f15c /glcd/fonts.h | |
parent | 4f26ccedd0191e1d8d7b295eefdaea8cb1517190 (diff) | |
download | uGFX-8ccb2b24442f1cc26a877a866f92e8f0e8caf28e.tar.gz uGFX-8ccb2b24442f1cc26a877a866f92e8f0e8caf28e.tar.bz2 uGFX-8ccb2b24442f1cc26a877a866f92e8f0e8caf28e.zip |
Update GLCD to use GDISP low level drivers
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 |