.
Diff: Display/TFT.h
- Revision:
- 21:ae0a4eedfc90
- Parent:
- 20:14daa48ffd4c
- Child:
- 25:daacdcf34e52
diff -r 14daa48ffd4c -r ae0a4eedfc90 Display/TFT.h --- a/Display/TFT.h Mon Mar 23 14:08:04 2015 +0000 +++ b/Display/TFT.h Tue Mar 31 21:14:48 2015 +0000 @@ -4,6 +4,8 @@ #include "GraphicsDisplay.h" #include "PAR8.h" #include "PAR16.h" +#include "BUS8.h" +#include "BUS16.h" #include "SPI8.h" #include "SPI16.h" #include "Protocols.h" @@ -16,12 +18,17 @@ public: - /** Create a monochrome LCD Parallel interface + /** Create a TFT Parallel Port interface * @param name The name used by the parent class to access the interface */ TFT(proto_t displayproto,PortName port, PinName CS, PinName reset, PinName DC, PinName WR, PinName RD, const int lcdsize_x, const int lcdsize_y, const char* name); - /** Create a monochrome LCD SPI interface + /** Create a TFT Parallel Bus interface + * @param name The name used by the parent class to access the interface + */ + TFT(proto_t displayproto,PinName* buspins, PinName CS, PinName reset, PinName DC, PinName WR, PinName RD, const int lcdsize_x, const int lcdsize_y, const char* name); + + /** Create a TFT SPI interface * @param name The name used by the parent class to access the interface */ TFT(proto_t displayproto, int Hz, PinName mosi, PinName miso, PinName sclk, PinName CS, PinName reset, PinName DC, const int lcdsize_x, const int lcdsize_y, const char* name);