acid-drop- Unnamed repository; edit this file 'description' to name the repository. |
git clone git://git.acid.vegas/-c.git |
Log | Files | Refs | Archive | README | LICENSE |
commit 462ed146c924dc60c040bdf17aa6ebc4c802cce8
parent 833d15db65f55226a16df4747c1597115fa9490c Author: acidvegas <acid.vegas@acid.vegas> Date: Wed, 29 May 2024 00:37:46 -0400 Still need ifdef undef for some warnings I guess.... Diffstat:
|
1 file changed, 21 insertions(+), 0 deletions(-) |
diff --git a/lib/TFT_eSPI/User_Setups/Setup210_LilyGo_T_Deck.h b/lib/TFT_eSPI/User_Setups/Setup210_LilyGo_T_Deck.h @@ -1,3 +1,24 @@ +// Added by acidvegas to hide warnings during build +#ifdef TFT_MISO +#undef TFT_MISO +#endif +#ifdef TFT_MOSI +#undef TFT_MOSI +#endif +#ifdef TFT_CS +#undef TFT_CS +#endif +#ifdef TFT_DC +#undef TFT_DC +#endif +#ifdef TFT_RST +#undef TFT_RST +#endif +#ifdef TFT_BL +#undef TFT_BL +#endif + + // ST7789 240 x 280 display with no chip select line #define USER_SETUP_ID 210 |