85 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			C
		
	
	
	
			
		
		
	
	
			85 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			C
		
	
	
	
| // Change the width and height if required (defined in portrait mode)
 | |
| // or use the constructor to over-ride defaults
 | |
| #define TFT_WIDTH  176
 | |
| #define TFT_HEIGHT 220
 | |
| 
 | |
| // Generic commands used by TFT_eSPI.cpp
 | |
| #define TFT_NOP     0x00
 | |
| #define TFT_SWRST   0x28
 | |
| 
 | |
| #define TFT_CASET 0
 | |
| #define TFT_PASET 0
 | |
| 
 | |
| #define TFT_CASET1     ILI9225_HORIZONTAL_WINDOW_ADDR2
 | |
| #define TFT_CASET2     ILI9225_HORIZONTAL_WINDOW_ADDR1
 | |
| 
 | |
| #define TFT_PASET1     ILI9225_VERTICAL_WINDOW_ADDR2
 | |
| #define TFT_PASET2     ILI9225_VERTICAL_WINDOW_ADDR1
 | |
| 
 | |
| #define TFT_RAM_ADDR1  ILI9225_RAM_ADDR_SET1
 | |
| #define TFT_RAM_ADDR2  ILI9225_RAM_ADDR_SET2
 | |
| 
 | |
| #define TFT_RAMWR      ILI9225_GRAM_DATA_REG
 | |
| 
 | |
| #define TFT_MAD_BGR 0x10
 | |
| #define TFT_MAD_RGB 0x00
 | |
| 
 | |
| #ifdef TFT_RGB_ORDER
 | |
|   #if (TFT_RGB_ORDER == 1)
 | |
|     #define TFT_MAD_COLOR_ORDER TFT_MAD_RGB
 | |
|   #else
 | |
|     #define TFT_MAD_COLOR_ORDER TFT_MAD_BGR
 | |
|   #endif
 | |
| #else
 | |
|   #define TFT_MAD_COLOR_ORDER TFT_MAD_BGR
 | |
| #endif
 | |
| 
 | |
| // Not used
 | |
| #define TFT_INVOFF  0x00
 | |
| #define TFT_INVON   0x00
 | |
| #define TFT_RAMRD   0x00
 | |
| #define TFT_IDXRD   0x00
 | |
| 
 | |
| /* ILI9225 Registers */
 | |
| #define ILI9225_DRIVER_OUTPUT_CTRL      0x01  // Driver Output Control
 | |
| #define ILI9225_LCD_AC_DRIVING_CTRL     0x02  // LCD AC Driving Control
 | |
| #define ILI9225_ENTRY_MODE              0x03  // Entry Mode
 | |
| #define ILI9225_DISP_CTRL1              0x07  // Display Control 1
 | |
| #define ILI9225_BLANK_PERIOD_CTRL1      0x08  // Blank Period Control
 | |
| #define ILI9225_FRAME_CYCLE_CTRL        0x0B  // Frame Cycle Control
 | |
| #define ILI9225_INTERFACE_CTRL          0x0C  // Interface Control
 | |
| #define ILI9225_OSC_CTRL                0x0F  // Osc Control
 | |
| #define ILI9225_POWER_CTRL1             0x10  // Power Control 1
 | |
| #define ILI9225_POWER_CTRL2             0x11  // Power Control 2
 | |
| #define ILI9225_POWER_CTRL3             0x12  // Power Control 3
 | |
| #define ILI9225_POWER_CTRL4             0x13  // Power Control 4
 | |
| #define ILI9225_POWER_CTRL5             0x14  // Power Control 5
 | |
| #define ILI9225_VCI_RECYCLING           0x15  // VCI Recycling
 | |
| #define ILI9225_RAM_ADDR_SET1           0x20  // Horizontal GRAM Address Set
 | |
| #define ILI9225_RAM_ADDR_SET2           0x21  // Vertical GRAM Address Set
 | |
| #define ILI9225_GRAM_DATA_REG           0x22  // GRAM Data Register
 | |
| #define ILI9225_GATE_SCAN_CTRL          0x30  // Gate Scan Control Register
 | |
| #define ILI9225_VERTICAL_SCROLL_CTRL1   0x31  // Vertical Scroll Control 1 Register
 | |
| #define ILI9225_VERTICAL_SCROLL_CTRL2   0x32  // Vertical Scroll Control 2 Register
 | |
| #define ILI9225_VERTICAL_SCROLL_CTRL3   0x33  // Vertical Scroll Control 3 Register
 | |
| #define ILI9225_PARTIAL_DRIVING_POS1    0x34  // Partial Driving Position 1 Register
 | |
| #define ILI9225_PARTIAL_DRIVING_POS2    0x35  // Partial Driving Position 2 Register
 | |
| #define ILI9225_HORIZONTAL_WINDOW_ADDR1 0x36  // Horizontal Address Start Position
 | |
| #define ILI9225_HORIZONTAL_WINDOW_ADDR2 0x37  // Horizontal Address End Position
 | |
| #define ILI9225_VERTICAL_WINDOW_ADDR1   0x38  // Vertical Address Start Position
 | |
| #define ILI9225_VERTICAL_WINDOW_ADDR2   0x39  // Vertical Address End Position
 | |
| #define ILI9225_GAMMA_CTRL1             0x50  // Gamma Control 1
 | |
| #define ILI9225_GAMMA_CTRL2             0x51  // Gamma Control 2
 | |
| #define ILI9225_GAMMA_CTRL3             0x52  // Gamma Control 3
 | |
| #define ILI9225_GAMMA_CTRL4             0x53  // Gamma Control 4
 | |
| #define ILI9225_GAMMA_CTRL5             0x54  // Gamma Control 5
 | |
| #define ILI9225_GAMMA_CTRL6             0x55  // Gamma Control 6
 | |
| #define ILI9225_GAMMA_CTRL7             0x56  // Gamma Control 7
 | |
| #define ILI9225_GAMMA_CTRL8             0x57  // Gamma Control 8
 | |
| #define ILI9225_GAMMA_CTRL9             0x58  // Gamma Control 9
 | |
| #define ILI9225_GAMMA_CTRL10            0x59  // Gamma Control 10
 | |
| 
 | |
| // Delay between some initialisation commands
 | |
| #define TFT_INIT_DELAY 0x00 // Not used unless commandlist invoked
 | |
| 
 |