Commit 612e7634 authored by Bodmer's avatar Bodmer

Remove unused macros

parent 6b408803
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment