test
Fork of UniGraphic by
Diff: Protocols/Protocols.h
- Revision:
- 20:14daa48ffd4c
- Parent:
- 11:b842b8e332cb
- Child:
- 21:ae0a4eedfc90
--- a/Protocols/Protocols.h Mon Mar 02 10:52:26 2015 +0000 +++ b/Protocols/Protocols.h Mon Mar 23 14:08:04 2015 +0000 @@ -104,6 +104,35 @@ */ virtual unsigned int rd_extcreg_data32(unsigned char reg, unsigned char SPIreadenablecmd) = 0; + /** ILI932x specific, does a dummy read cycle, number of bits is protocol dependent + * for PAR protocols: a signle RD bit toggle + * for SPI8: 8clocks + * for SPI16: 16 clocks + */ + virtual void dummyread () = 0; + + /** ILI932x specific, select register for a successive write or read + * + * @param reg register to be selected + * @param forread false = a write next (default), true = a read next + * @note forread only used by SPI protocols + */ + virtual void reg_select(unsigned char reg, bool forread =false) = 0; + + /** ILI932x specific, write register with data + * + * @param reg register to write + * @param data 16bit data + */ + virtual void reg_write(unsigned char reg, unsigned short data) = 0; + + /** ILI932x specific, read register + * + * @param reg register to be read + * @returns 16bit register value + */ + virtual unsigned short reg_read(unsigned char reg) = 0; + /** HW reset sequence (without display init commands) */ virtual void hw_reset() = 0;