2013-06-22 01:09:45 +00:00
|
|
|
/*
|
|
|
|
* This file is subject to the terms of the GFX License. If a copy of
|
|
|
|
* the license was not distributed with this file, you can obtain one at:
|
|
|
|
*
|
2013-07-21 20:20:37 +00:00
|
|
|
* http://ugfx.org/license.html
|
2013-06-22 01:09:45 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef RA8875_H
|
|
|
|
#define RA8875_H
|
|
|
|
|
|
|
|
#define mHIGH(x) (x >> 8)
|
|
|
|
#define mLOW(x) (x & 0xFF)
|
|
|
|
|
|
|
|
#define RA8875_WRITE_MEMORY_START 0x0002
|
|
|
|
#define RA8875_READ_MEMORY_START 0x0002
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|