diff options
Diffstat (limited to 'src/touchscreen.c')
-rw-r--r-- | src/touchscreen.c | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/src/touchscreen.c b/src/touchscreen.c index 14eba4c5..0fa5402e 100644 --- a/src/touchscreen.c +++ b/src/touchscreen.c @@ -33,14 +33,6 @@ #if GFX_USE_TOUCHSCREEN || defined(__DOXYGEN__)
/*===========================================================================*/
-/* Driver local definitions. */
-/*===========================================================================*/
-
-/*===========================================================================*/
-/* Driver exported variables. */
-/*===========================================================================*/
-
-/*===========================================================================*/
/* Driver local variables. */
/*===========================================================================*/
static struct cal_t *cal;
@@ -294,7 +286,10 @@ void tsCalibrate(void) { int32_t px, py;
uint8_t i, j;
+ #if GDISP_NEED_CONTROL
gdispSetOrientation(GDISP_ROTATE_0);
+ #endif
+
gdispClear(Blue);
gdispFillStringBox(0, 5, gdispGetWidth(), 30, "Calibration", &fontUI2Double, White, Blue, justifyCenter);
|