mirror of
https://github.com/Bodmer/TFT_eSPI.git
synced 2025-07-29 18:27:35 +02:00
Remove unused macros
This commit is contained in:
@ -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
|
||||
|
||||
|
Reference in New Issue
Block a user