Library for SeeedStudioTFTv2 2.8 Zoll 240x360 pixel touch SD card

Dependencies:   SPI_TFT_ILI9341

Dependents:   SeeedStudioTFTv2_HelloWorld SeeedTouchLCD Seeed_TFT_Touch_Shield_v2_HelloWorld

Fork of SeeedStudioTFTv2 by Michael Ammann

Files at this revision

API Documentation at this revision

Comitter:
mazgch
Date:
Mon Oct 21 19:38:34 2013 +0000
Parent:
7:dfd69b3be5b6
Child:
9:06466ca07e4d
Commit message:
remove unavailable reset signal

Changed in this revision

SPI_TFT_ILI9341.lib Show annotated file Show diff for this revision Revisions of this file
SeeedStudioTFTv2.cpp Show annotated file Show diff for this revision Revisions of this file
SeeedStudioTFTv2.h Show annotated file Show diff for this revision Revisions of this file
--- a/SPI_TFT_ILI9341.lib	Sat Oct 19 21:32:43 2013 +0000
+++ b/SPI_TFT_ILI9341.lib	Mon Oct 21 19:38:34 2013 +0000
@@ -1,1 +1,1 @@
-http://mbed.org/users/dreschpe/code/SPI_TFT_ILI9341/#f018e272220b
+http://mbed.org/users/dreschpe/code/SPI_TFT_ILI9341/#93cc09de603a
--- a/SeeedStudioTFTv2.cpp	Sat Oct 19 21:32:43 2013 +0000
+++ b/SeeedStudioTFTv2.cpp	Mon Oct 21 19:38:34 2013 +0000
@@ -18,12 +18,12 @@
 
 SeeedStudioTFTv2::SeeedStudioTFTv2(PinName xp, PinName xm, PinName yp, PinName ym,
                                    PinName mosi, PinName miso, PinName sclk,
-                                   PinName csTft, PinName rstTft, PinName dcTft, PinName blTft,
+                                   PinName csTft, PinName dcTft, PinName blTft,
                                    PinName csSd):
 #ifdef USE_SDCARD
     SDFileSystem(mosi,miso,sclk,csSd, "sdc"),
 #endif
-    SPI_TFT_ILI9341(mosi,miso,sclk,csTft,rstTft,dcTft, "tft"),
+    SPI_TFT_ILI9341(mosi,miso,sclk,csTft,NC,dcTft, "tft"),
     bl(blTft)
 {
 #ifndef USE_SDCARD
--- a/SeeedStudioTFTv2.h	Sat Oct 19 21:32:43 2013 +0000
+++ b/SeeedStudioTFTv2.h	Mon Oct 21 19:38:34 2013 +0000
@@ -45,7 +45,7 @@
      */
     SeeedStudioTFTv2(PinName xp, PinName xm, PinName yp, PinName ym,
                      PinName mosi, PinName miso, PinName sclk,
-                     PinName csTft, PinName rstTft, PinName dcTft, PinName blTft,
+                     PinName csTft, PinName dcTft, PinName blTft,
                      PinName csSd);
 
     void setBacklight(bool enabled);