mirror of
https://github.com/goodtft/LCD-show.git
synced 2024-12-11 11:24:16 +01:00
18 lines
280 B
C
18 lines
280 B
C
#pragma once
|
|
|
|
#ifdef TONTEC_MZ61581
|
|
|
|
#if !defined(GPIO_TFT_DATA_CONTROL)
|
|
#define GPIO_TFT_DATA_CONTROL 25
|
|
#endif
|
|
|
|
#if !defined(GPIO_TFT_RESET_PIN)
|
|
#define GPIO_TFT_RESET_PIN 15
|
|
#endif
|
|
|
|
#if !defined(GPIO_TFT_BACKLIGHT)
|
|
#define GPIO_TFT_BACKLIGHT 18
|
|
#endif
|
|
|
|
#endif
|