Remove unused macros
This commit is contained in:
parent
6b40880375
commit
612e76343e
|
|
@ -453,12 +453,6 @@
|
|||
// Write 32 bits
|
||||
#define tft_Write_32(C) TFT_WRITE_BITS(C, 32)
|
||||
|
||||
// Write two address coordinates
|
||||
#define tft_Write_16C(C,D) TFT_WRITE_BITS((uint16_t)(D)<<8 | (C), 16)
|
||||
|
||||
// Write same value twice
|
||||
#define tft_Write_16D(C) TFT_WRITE_BITS((uint16_t)(C)<<8 | (C), 16)
|
||||
|
||||
// Write two address coordinates
|
||||
#define tft_Write_32C(C,D) TFT_WRITE_BITS((uint16_t)((D)<<8 | (D)>>8)<<16 | (uint16_t)((C)<<8 | (C)>>8), 32)
|
||||
|
||||
|
|
|
|||
|
|
@ -5,14 +5,6 @@
|
|||
#define TFT_HEIGHT 128
|
||||
#endif
|
||||
|
||||
#ifndef tft_Write_16D
|
||||
#define tft_Write_16C(C) tft_Write_8(C); tft_Write_8(C);
|
||||
#endif
|
||||
|
||||
#ifndef tft_Write_16C
|
||||
#define tft_Write_16C(C,D) tft_Write_8(C); tft_Write_8(D);
|
||||
#endif
|
||||
|
||||
// Delay between some initialisation commands
|
||||
#define TFT_INIT_DELAY 0x80
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue