Basically i glued Peter Drescher and Simon Ford libs in a GraphicsDisplay class, then derived TFT or LCD class (which inherits Protocols class), then the most derived ones (Inits), which are per-display and are the only part needed to be adapted to diff hw.
Dependents: afero_poc15_180216 afero_poc15_180223 afero_poc15_180302 afero_poc15_180403R ... more
Fork of UniGraphic by
UniGraphic for La Suno Version.
To go with La Suno, WatchDog Reset functions were added in ILI9341.
Diff: Inits/ILI9486.cpp
- Revision:
- 9:1749ae993cfe
- Parent:
- 7:bb0383b91104
- Child:
- 10:668cf78ff93a
--- a/Inits/ILI9486.cpp Tue Feb 17 17:54:14 2015 +0000 +++ b/Inits/ILI9486.cpp Tue Feb 17 22:35:07 2015 +0000 @@ -9,12 +9,13 @@ // display settings /////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////// -#define LCDSIZE_X 320 // display X pixels, TFTs are usually portrait view -#define LCDSIZE_Y 480 // display Y pixels +// put in constructor +//#define LCDSIZE_X 320 // display X pixels, TFTs are usually portrait view +//#define LCDSIZE_Y 480 // display Y pixels -ILI9486::ILI9486(proto_t displayproto, PortName port, PinName CS, PinName reset, PinName DC, PinName WR, PinName RD, const char *name) +ILI9486::ILI9486(proto_t displayproto, PortName port, PinName CS, PinName reset, PinName DC, PinName WR, PinName RD, const char *name , unsigned int LCDSIZE_X, unsigned int LCDSIZE_Y) : TFT(displayproto, port, CS, reset, DC, WR, RD, LCDSIZE_X, LCDSIZE_Y, name) { hw_reset(); @@ -25,7 +26,7 @@ cls(); locate(0,0); } -ILI9486::ILI9486(proto_t displayproto, int Hz, PinName mosi, PinName miso, PinName sclk, PinName CS, PinName reset, PinName DC, const char *name) +ILI9486::ILI9486(proto_t displayproto, int Hz, PinName mosi, PinName miso, PinName sclk, PinName CS, PinName reset, PinName DC, const char *name, unsigned int LCDSIZE_X, unsigned int LCDSIZE_Y) : TFT(displayproto, Hz, mosi, miso, sclk, CS, reset, DC, LCDSIZE_X, LCDSIZE_Y, name) { hw_reset(); //TFT class forwards to Protocol class