Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of SeeedStudioTFTv2 by
Revision 14:913035015ac7, committed 2016-09-12
- Comitter:
- rba90
- Date:
- Mon Sep 12 20:19:25 2016 +0000
- Parent:
- 13:362765fdf287
- Commit message:
- fix a bug where SeeedStudioTFTv2 will privately inherit from SPI_TFT_ILI9341 when macro USE_SDCARD is defined.
Changed in this revision
| SeeedStudioTFTv2.h | Show annotated file Show diff for this revision Revisions of this file | 
--- a/SeeedStudioTFTv2.h	Tue May 06 18:12:49 2014 +0000
+++ b/SeeedStudioTFTv2.h	Mon Sep 12 20:19:25 2016 +0000
@@ -25,11 +25,11 @@
     int y;
 };
 
-class SeeedStudioTFTv2 : public  
+class SeeedStudioTFTv2 :  
 #ifdef USE_SDCARD
-    SDFileSystem,
+    public SDFileSystem,
 #endif
-    SPI_TFT_ILI9341
+    public SPI_TFT_ILI9341
 {
 public:
     /** create a TFT with touch object connected to the pins:
    