Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of C12832 by
Revision 18:2dcbe4ec6b5e, committed 2014-11-27
- Comitter:
- MACRUM
- Date:
- Thu Nov 27 06:30:56 2014 +0000
- Parent:
- 17:cbb00d4ca010
- Commit message:
- Add target check
Changed in this revision
C12832.h | Show annotated file Show diff for this revision Revisions of this file |
diff -r cbb00d4ca010 -r 2dcbe4ec6b5e C12832.h --- a/C12832.h Thu Nov 27 06:25:58 2014 +0000 +++ b/C12832.h Thu Nov 27 06:30:56 2014 +0000 @@ -39,7 +39,11 @@ * NORMAl * XOR set pixel by xor the screen */ +#if defined(TARGET_RZ_A1H) enum {_NORMAL, _XOR}; +#else +enum {NORMAL, XOR}; +#endif /** Bitmap */