aboutsummaryrefslogtreecommitdiffstats
path: root/demos/modules/gdisp/gdisp_fonts_cyrillic/main.c
diff options
context:
space:
mode:
authorJoel Bodenmann <joel@unormal.org>2013-10-28 00:42:38 +0100
committerJoel Bodenmann <joel@unormal.org>2013-10-28 00:42:38 +0100
commit630989d6b4a367ed16517be44f282b13a001c611 (patch)
treeff4b8751f62d2719eaa83c7d18a3f0b5558311d6 /demos/modules/gdisp/gdisp_fonts_cyrillic/main.c
parentcf616ae80412f20ddf0a534284b67010b4937969 (diff)
downloaduGFX-630989d6b4a367ed16517be44f282b13a001c611.tar.gz
uGFX-630989d6b4a367ed16517be44f282b13a001c611.tar.bz2
uGFX-630989d6b4a367ed16517be44f282b13a001c611.zip
updated GDISP and GWIN demos
Diffstat (limited to 'demos/modules/gdisp/gdisp_fonts_cyrillic/main.c')
-rw-r--r--demos/modules/gdisp/gdisp_fonts_cyrillic/main.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/demos/modules/gdisp/gdisp_fonts_cyrillic/main.c b/demos/modules/gdisp/gdisp_fonts_cyrillic/main.c
deleted file mode 100644
index dd39a5d5..00000000
--- a/demos/modules/gdisp/gdisp_fonts_cyrillic/main.c
+++ /dev/null
@@ -1,20 +0,0 @@
-#include "gfx.h"
-
-int main(void) {
- font_t font1;
-
- // Initialize uGFX and the underlying system
- gfxInit();
-
- // Get the fonts we want to use
- font1 = gdispOpenFont("Archangelsk Regular 12");
-
- // Demonstrate our other fonts
- gdispDrawString(10, 10, "привет мир", font1, Yellow);
-
- // Wait forever
- while(TRUE) {
- gfxSleepMilliseconds(500);
- }
-}
-