aboutsummaryrefslogtreecommitdiffstats
path: root/docs/configure.txt
diff options
context:
space:
mode:
authorJoel Bodenmann <joel.bodenmann@hevs.ch>2012-10-25 01:04:36 +0200
committerJoel Bodenmann <joel.bodenmann@hevs.ch>2012-10-25 01:04:36 +0200
commite04654e6d9c18262f0e2818ea344a1e961bf1d73 (patch)
treeafebe662a28e2768910fe5c9579f2972e9f1faa6 /docs/configure.txt
parent9bcabe082ab7c35eadeaf552bcab8d6b429fc78b (diff)
downloaduGFX-e04654e6d9c18262f0e2818ea344a1e961bf1d73.tar.gz
uGFX-e04654e6d9c18262f0e2818ea344a1e961bf1d73.tar.bz2
uGFX-e04654e6d9c18262f0e2818ea344a1e961bf1d73.zip
version 1.3 release
Diffstat (limited to 'docs/configure.txt')
-rw-r--r--docs/configure.txt43
1 files changed, 0 insertions, 43 deletions
diff --git a/docs/configure.txt b/docs/configure.txt
deleted file mode 100644
index 17540062..00000000
--- a/docs/configure.txt
+++ /dev/null
@@ -1,43 +0,0 @@
-There are serval macros available to configure the behaviour of the GFX-Library.
-
-HAL macros:
-
- #define HAL_USE_GFX // enables the GDISP sub system. This is essentially needed to use the display
- #define GFX_USE_TOUCHPAD // enables the TouchPad sub system. This is essentially needed to use the touchpad
-
-
-
-GDISP macors:
-
- #define GDISP_USE_GPIO // GDISP is connected to the MCU using GPIO interface, involves using lld_lcdWriteGPIO() and lld_lcdReadGPIO()
- #define GDISP_USE_FSMC // GDISP is connected to the MCU using FSMC interface
- #define GDISP_USE_SPI // GDISP is connected to the MCU using SPI interface
-
- #define GDISP_SCREEN_WIDTH // defines width of panel in pixels. This is essentially needed to use the display
- #define GDISP_SCREEN_HEIGHT // defines height of panel in pixels. This is essentailly needed to use the display
-
- #define GDISP_NEED_MULTITHREAD // GDISP will be accessed across different threads -> thread safe mode
- #define GDISP_NEED_CONTROL // must be set to TRUE if controll access to the LCD controller is needed, eg for changing orientation or power mode
- #define GDISP_NEED_CLIP // when clipping is needed
- #define GDISP_NEED_CIRCLE // for circle drawing support (filled and frame)
- #define GDISP_NEED_ELLIPSE // for ellipse drawing support (filled and frame)
- #define GDISP_NEED_ARC // for arc drawing support (filled and frame)
- #define GDISP_NEED_TEXT // for font rendering support
- #define GDISP_NEED_PIXELREAD // to read a pixels color value back
- #define GDISP_NEED_SCROLL // is scrolling is needed (pixel shift)
- #define GDISP_NEED_QUERY // to make certain queries to the LCD controller
-
- #define GFX_USE_CONSOLE // for the console abstraction
-
-
-TouchPad macros:
-
- #define TOUCHPAD_NEED_MULTITHREAD // TouchPad will be accessed across different threads -> thread safe mode
-
- #define TOUCHPAD_XY_INVERTED // output of tpReadX() and tpReadY() swapped - needed if touchpad writes swapped to touchpad controller
-
- #define TOUCHPAD_STORE_CALIBRATION // calibration values can be stored if set to true. Therefore tpCalibration() is not neccessary to call on each reset. involves using lld_tpWriteCalibration() and lld_tpReadCalibration()
-
-
-
-