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.
Fork of UniGraphic by
Protocols/SPI8.h@4:12ba0ecc2c1f, 2015-02-15 (annotated)
- Committer:
- Geremia
- Date:
- Sun Feb 15 20:06:07 2015 +0000
- Revision:
- 4:12ba0ecc2c1f
- Parent:
- 1:ff019d22b275
- Child:
- 5:b222a9461d6b
Added PAR16, separated 16bit writes for cmd parameters and pixeldata
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
Geremia | 0:75ec1b3cde17 | 1 | #ifndef SPI8_H |
Geremia | 0:75ec1b3cde17 | 2 | #define SPI8_H |
Geremia | 0:75ec1b3cde17 | 3 | |
Geremia | 0:75ec1b3cde17 | 4 | #include "mbed.h" |
Geremia | 0:75ec1b3cde17 | 5 | #include "Protocols.h" |
Geremia | 0:75ec1b3cde17 | 6 | //#include "GraphicsDisplay.h" |
Geremia | 0:75ec1b3cde17 | 7 | |
Geremia | 0:75ec1b3cde17 | 8 | class SPI8 : public Protocols |
Geremia | 0:75ec1b3cde17 | 9 | { |
Geremia | 0:75ec1b3cde17 | 10 | public: |
Geremia | 0:75ec1b3cde17 | 11 | |
Geremia | 0:75ec1b3cde17 | 12 | /** Create an SPI 8bit display interface with 3 control pins |
Geremia | 0:75ec1b3cde17 | 13 | * |
Geremia | 0:75ec1b3cde17 | 14 | * @param SPI mosi |
Geremia | 0:75ec1b3cde17 | 15 | * @param SPI miso |
Geremia | 0:75ec1b3cde17 | 16 | * @param SPI sclk |
Geremia | 0:75ec1b3cde17 | 17 | * @param CS pin connected to CS of display |
Geremia | 0:75ec1b3cde17 | 18 | * @param reset pin connected to RESET of display |
Geremia | 0:75ec1b3cde17 | 19 | * @param DC pin connected to data/command of display |
Geremia | 0:75ec1b3cde17 | 20 | */ |
Geremia | 1:ff019d22b275 | 21 | SPI8(int Hz, PinName mosi, PinName miso, PinName sclk, PinName CS, PinName reset, PinName DC); |
Geremia | 0:75ec1b3cde17 | 22 | |
Geremia | 0:75ec1b3cde17 | 23 | protected: |
Geremia | 0:75ec1b3cde17 | 24 | |
Geremia | 1:ff019d22b275 | 25 | /** Send 8bit command to display controller |
Geremia | 0:75ec1b3cde17 | 26 | * |
Geremia | 0:75ec1b3cde17 | 27 | * @param cmd: byte to send |
Geremia | 0:75ec1b3cde17 | 28 | * |
Geremia | 0:75ec1b3cde17 | 29 | */ |
Geremia | 1:ff019d22b275 | 30 | virtual void wr_cmd8(unsigned char cmd); |
Geremia | 0:75ec1b3cde17 | 31 | |
Geremia | 1:ff019d22b275 | 32 | /** Send 8bit data to display controller |
Geremia | 0:75ec1b3cde17 | 33 | * |
Geremia | 1:ff019d22b275 | 34 | * @param data: byte to send |
Geremia | 0:75ec1b3cde17 | 35 | * |
Geremia | 0:75ec1b3cde17 | 36 | */ |
Geremia | 1:ff019d22b275 | 37 | virtual void wr_data8(unsigned char data); |
Geremia | 0:75ec1b3cde17 | 38 | |
Geremia | 4:12ba0ecc2c1f | 39 | /** Send 2x8bit command to display controller |
Geremia | 1:ff019d22b275 | 40 | * |
Geremia | 1:ff019d22b275 | 41 | * @param cmd: halfword to send |
Geremia | 1:ff019d22b275 | 42 | */ |
Geremia | 1:ff019d22b275 | 43 | virtual void wr_cmd16(unsigned short cmd); |
Geremia | 1:ff019d22b275 | 44 | |
Geremia | 4:12ba0ecc2c1f | 45 | /** Send 2x8bit data to display controller |
Geremia | 1:ff019d22b275 | 46 | * |
Geremia | 1:ff019d22b275 | 47 | * @param data: halfword to send |
Geremia | 1:ff019d22b275 | 48 | * |
Geremia | 1:ff019d22b275 | 49 | */ |
Geremia | 1:ff019d22b275 | 50 | virtual void wr_data16(unsigned short data); |
Geremia | 1:ff019d22b275 | 51 | |
Geremia | 4:12ba0ecc2c1f | 52 | /** Send 16bit pixeldata to display controller |
Geremia | 4:12ba0ecc2c1f | 53 | * |
Geremia | 4:12ba0ecc2c1f | 54 | * @param data: halfword to send |
Geremia | 4:12ba0ecc2c1f | 55 | * |
Geremia | 4:12ba0ecc2c1f | 56 | */ |
Geremia | 4:12ba0ecc2c1f | 57 | virtual void wr_gram(unsigned short data); |
Geremia | 4:12ba0ecc2c1f | 58 | |
Geremia | 4:12ba0ecc2c1f | 59 | /** Send same 16bit pixeldata to display controller multiple times |
Geremia | 1:ff019d22b275 | 60 | * |
Geremia | 1:ff019d22b275 | 61 | * @param data: halfword to send |
Geremia | 1:ff019d22b275 | 62 | * @param count: how many |
Geremia | 1:ff019d22b275 | 63 | * |
Geremia | 1:ff019d22b275 | 64 | */ |
Geremia | 4:12ba0ecc2c1f | 65 | virtual void wr_gram(unsigned short data, unsigned int count); |
Geremia | 1:ff019d22b275 | 66 | |
Geremia | 4:12ba0ecc2c1f | 67 | /** Send array of pixeldata shorts to display controller |
Geremia | 1:ff019d22b275 | 68 | * |
Geremia | 4:12ba0ecc2c1f | 69 | * @param data: unsigned short pixeldata array |
Geremia | 1:ff019d22b275 | 70 | * @param lenght: lenght (in shorts) |
Geremia | 1:ff019d22b275 | 71 | * |
Geremia | 1:ff019d22b275 | 72 | */ |
Geremia | 4:12ba0ecc2c1f | 73 | virtual void wr_grambuf(unsigned short* data, unsigned int lenght); |
Geremia | 0:75ec1b3cde17 | 74 | |
Geremia | 0:75ec1b3cde17 | 75 | /** HW reset sequence (without display init commands) |
Geremia | 0:75ec1b3cde17 | 76 | */ |
Geremia | 0:75ec1b3cde17 | 77 | virtual void hw_reset(); |
Geremia | 0:75ec1b3cde17 | 78 | |
Geremia | 0:75ec1b3cde17 | 79 | /** Set ChipSelect high or low |
Geremia | 0:75ec1b3cde17 | 80 | * @param enable 0/1 |
Geremia | 0:75ec1b3cde17 | 81 | */ |
Geremia | 0:75ec1b3cde17 | 82 | virtual void BusEnable(bool enable); |
Geremia | 0:75ec1b3cde17 | 83 | |
Geremia | 0:75ec1b3cde17 | 84 | DigitalOut _CS; |
Geremia | 0:75ec1b3cde17 | 85 | |
Geremia | 0:75ec1b3cde17 | 86 | private: |
Geremia | 0:75ec1b3cde17 | 87 | |
Geremia | 0:75ec1b3cde17 | 88 | SPI _spi; |
Geremia | 0:75ec1b3cde17 | 89 | DigitalOut _reset; |
Geremia | 0:75ec1b3cde17 | 90 | DigitalOut _DC; |
Geremia | 0:75ec1b3cde17 | 91 | |
Geremia | 0:75ec1b3cde17 | 92 | }; |
Geremia | 0:75ec1b3cde17 | 93 | #endif |