|
35 | 35 | * |
36 | 36 | * Advanced settings can be found in Configuration_adv.h |
37 | 37 | */ |
38 | | -#define CONFIGURATION_H_VERSION 020007 |
| 38 | +#define CONFIGURATION_H_VERSION 020008 |
39 | 39 |
|
40 | 40 | //=========================================================================== |
41 | 41 | //============================= Getting Started ============================= |
|
2205 | 2205 | //============================================================================= |
2206 | 2206 |
|
2207 | 2207 | /** |
2208 | | - * TFT Type - Select your Display type |
2209 | | - * |
2210 | | - * Available options are: |
2211 | | - * MKS_TS35_V2_0, |
2212 | | - * MKS_ROBIN_TFT24, MKS_ROBIN_TFT28, MKS_ROBIN_TFT32, MKS_ROBIN_TFT35, |
2213 | | - * MKS_ROBIN_TFT43, MKS_ROBIN_TFT_V1_1R |
2214 | | - * TFT_TRONXY_X5SA, ANYCUBIC_TFT35, LONGER_LK_TFT28 |
2215 | | - * TFT_GENERIC |
2216 | | - * |
2217 | | - * For TFT_GENERIC, you need to configure these 3 options: |
2218 | | - * Driver: TFT_DRIVER |
2219 | | - * Current Drivers are: AUTO, ST7735, ST7789, ST7796, R61505, ILI9328, ILI9341, ILI9488 |
2220 | | - * Resolution: TFT_WIDTH and TFT_HEIGHT |
2221 | | - * Interface: TFT_INTERFACE_FSMC or TFT_INTERFACE_SPI |
| 2208 | + * Specific TFT Model Presets. Enable one of the following options |
| 2209 | + * or enable TFT_GENERIC and set sub-options. |
2222 | 2210 | */ |
| 2211 | + |
| 2212 | +// |
| 2213 | +// 480x320, 3.5", SPI Display From MKS |
| 2214 | +// Normally used in MKS Robin Nano V2 |
| 2215 | +// |
| 2216 | +//#define MKS_TS35_V2_0 |
| 2217 | + |
| 2218 | +// |
| 2219 | +// 320x240, 2.4", FSMC Display From MKS |
| 2220 | +// Normally used in MKS Robin Nano V1.2 |
| 2221 | +// |
| 2222 | +//#define MKS_ROBIN_TFT24 |
| 2223 | + |
| 2224 | +// |
| 2225 | +// 320x240, 2.8", FSMC Display From MKS |
| 2226 | +// Normally used in MKS Robin Nano V1.2 |
| 2227 | +// |
| 2228 | +//#define MKS_ROBIN_TFT28 |
| 2229 | + |
| 2230 | +// |
| 2231 | +// 320x240, 3.2", FSMC Display From MKS |
| 2232 | +// Normally used in MKS Robin Nano V1.2 |
| 2233 | +// |
| 2234 | +//#define MKS_ROBIN_TFT32 |
| 2235 | + |
| 2236 | +// |
| 2237 | +// 480x320, 3.5", FSMC Display From MKS |
| 2238 | +// Normally used in MKS Robin Nano V1.2 |
| 2239 | +// |
| 2240 | +//#define MKS_ROBIN_TFT35 |
| 2241 | + |
| 2242 | +// |
| 2243 | +// 480x272, 4.3", FSMC Display From MKS |
| 2244 | +// |
| 2245 | +//#define MKS_ROBIN_TFT43 |
| 2246 | + |
| 2247 | +// |
| 2248 | +// 320x240, 3.2", FSMC Display From MKS |
| 2249 | +// Normally used in MKS Robin |
| 2250 | +// |
| 2251 | +//#define MKS_ROBIN_TFT_V1_1R |
| 2252 | + |
| 2253 | +// |
| 2254 | +// 480x320, 3.5", FSMC Stock Display from TronxXY |
| 2255 | +// |
| 2256 | +//#define TFT_TRONXY_X5SA |
| 2257 | + |
| 2258 | +// |
| 2259 | +// 480x320, 3.5", FSMC Stock Display from AnyCubic |
| 2260 | +// |
| 2261 | +//#define ANYCUBIC_TFT35 |
| 2262 | + |
| 2263 | +// |
| 2264 | +// 320x240, 2.8", FSMC Stock Display from Longer/Alfawise |
| 2265 | +// |
| 2266 | +//#define LONGER_LK_TFT28 |
| 2267 | + |
| 2268 | +// |
| 2269 | +// Generic TFT with detailed options |
| 2270 | +// |
2223 | 2271 | //#define TFT_GENERIC |
| 2272 | +#if ENABLED(TFT_GENERIC) |
| 2273 | + // :[ 'AUTO', 'ST7735', 'ST7789', 'ST7796', 'R61505', 'ILI9328', 'ILI9341', 'ILI9488' ] |
| 2274 | + #define TFT_DRIVER AUTO |
| 2275 | + |
| 2276 | + // Interface. Enable one of the following options: |
| 2277 | + //#define TFT_INTERFACE_FSMC |
| 2278 | + //#define TFT_INTERFACE_SPI |
| 2279 | + |
| 2280 | + // TFT Resolution. Enable one of the following options: |
| 2281 | + //#define TFT_RES_320x240 |
| 2282 | + //#define TFT_RES_480x272 |
| 2283 | + //#define TFT_RES_480x320 |
| 2284 | +#endif |
2224 | 2285 |
|
2225 | 2286 | /** |
2226 | 2287 | * TFT UI - User Interface Selection. Enable one of the following options: |
|
0 commit comments