From 8cad9f497343b0a75b1ef209e23c1531512521ad Mon Sep 17 00:00:00 2001 From: Mike Date: Fri, 10 Jul 2020 08:39:51 +0200 Subject: [PATCH] fix #endif without #if --- TFT_Drivers/OTM8009A_Init.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/TFT_Drivers/OTM8009A_Init.h b/TFT_Drivers/OTM8009A_Init.h index 70ad52d..7fe061f 100644 --- a/TFT_Drivers/OTM8009A_Init.h +++ b/TFT_Drivers/OTM8009A_Init.h @@ -14,7 +14,6 @@ DC_D; tft_Write_16(Byte8H(x1)); \ DC_C; tft_Write_16(TFT_CASET + 3); \ DC_D; tft_Write_16(Byte8L(x1)) -#endif #define TFT_PASET_CMD(y0, y1) \ DC_C; tft_Write_16(TFT_PASET); \ @@ -25,7 +24,6 @@ DC_D; tft_Write_16(Byte8H(y1)); \ DC_C; tft_Write_16(TFT_PASET + 3); \ DC_D; tft_Write_16(Byte8L(y1)) -#endif #define writecommand16(cmd) \ writecommand(Byte8H(cmd)); writecommand(Byte8L(cmd))