diff options
author | Joel Bodenmann <joel@unormal.org> | 2014-02-09 02:19:38 +0100 |
---|---|---|
committer | Joel Bodenmann <joel@unormal.org> | 2014-02-09 02:19:38 +0100 |
commit | f68f4fcd21831894a1330131d7feefa0e63c39c1 (patch) | |
tree | 53f68c28ca4bc52a9ef0d393b362a488ca8e0ddf /gfxconf.example.h | |
parent | 3c6df9a4a1b810411d9207fd2da39c3378bb9657 (diff) | |
parent | c5f87f9952b11f0792dd1455e3f4286123c1d388 (diff) | |
download | uGFX-f68f4fcd21831894a1330131d7feefa0e63c39c1.tar.gz uGFX-f68f4fcd21831894a1330131d7feefa0e63c39c1.tar.bz2 uGFX-f68f4fcd21831894a1330131d7feefa0e63c39c1.zip |
Merge branch 'gfile'
Diffstat (limited to 'gfxconf.example.h')
-rw-r--r-- | gfxconf.example.h | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/gfxconf.example.h b/gfxconf.example.h index e6a3381e..d9dcf88b 100644 --- a/gfxconf.example.h +++ b/gfxconf.example.h @@ -9,6 +9,8 @@ /** * Copy this file into your project directory and rename it as gfxconf.h * Edit your copy to turn on the uGFX features you want to use. + * The values below are the defaults. You should delete anything + * you are leaving as default. * * Please use spaces instead of tabs in this file. */ @@ -26,7 +28,7 @@ /////////////////////////////////////////////////////////////////////////// // GDISP // /////////////////////////////////////////////////////////////////////////// -#define GFX_USE_GDISP TRUE +#define GFX_USE_GDISP FALSE #define GDISP_NEED_AUTOFLUSH FALSE #define GDISP_NEED_TIMERFLUSH FALSE @@ -186,6 +188,27 @@ /////////////////////////////////////////////////////////////////////////// +// GFILE // +/////////////////////////////////////////////////////////////////////////// +#define GFX_USE_GFILE FALSE + +#define GFILE_NEED_PRINTG FALSE +#define GFILE_NEED_SCANG FALSE +#define GFILE_NEED_STRINGS FALSE +#define GFILE_NEED_STDIO FALSE + #define GFILE_ALLOW_FLOATS FALSE + #define GFILE_ALLOW_DEVICESPECIFIC FALSE + #define GFILE_MAX_GFILES 3 + +#define GFILE_NEED_MEMFS FALSE +#define GFILE_NEED_ROMFS FALSE +#define GFILE_NEED_RAMFS FALSE +#define GFILE_NEED_FATFS FALSE +#define GFILE_NEED_NATIVEFS FALSE +#define GFILE_NEED_CHBIOSFS FALSE + + +/////////////////////////////////////////////////////////////////////////// // GADC // /////////////////////////////////////////////////////////////////////////// #define GFX_USE_GADC FALSE |