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.
POKITTO_CORE/PokittoPalettes.h@4:ecf2fe370c1c, 2017-09-19 (annotated)
- Committer:
- Pokitto
- Date:
- Tue Sep 19 13:42:25 2017 +0000
- Revision:
- 4:ecf2fe370c1c
- Parent:
- 0:e8b8f36b4505
My_settings.h added;
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| Pokitto | 0:e8b8f36b4505 | 1 | #ifndef POK_PALETTES_H |
| Pokitto | 0:e8b8f36b4505 | 2 | #define POK_PALETTES_H |
| Pokitto | 0:e8b8f36b4505 | 3 | |
| Pokitto | 0:e8b8f36b4505 | 4 | #include "Pokitto_settings.h" |
| Pokitto | 0:e8b8f36b4505 | 5 | |
| Pokitto | 0:e8b8f36b4505 | 6 | extern const unsigned char paletteDefault[]; |
| Pokitto | 0:e8b8f36b4505 | 7 | extern const unsigned char paletteCGA[]; |
| Pokitto | 0:e8b8f36b4505 | 8 | extern const unsigned char paletteNeon[]; |
| Pokitto | 0:e8b8f36b4505 | 9 | extern const unsigned char palettePico[]; |
| Pokitto | 0:e8b8f36b4505 | 10 | extern const unsigned char paletteCopper[]; |
| Pokitto | 0:e8b8f36b4505 | 11 | extern const unsigned char paletteAction[]; |
| Pokitto | 0:e8b8f36b4505 | 12 | extern const unsigned char paletteMagma[]; |
| Pokitto | 0:e8b8f36b4505 | 13 | extern const unsigned char paletteRainbow[]; |
| Pokitto | 0:e8b8f36b4505 | 14 | extern const unsigned char paletteMono[]; |
| Pokitto | 0:e8b8f36b4505 | 15 | extern const unsigned char paletteGameboy[]; |
| Pokitto | 0:e8b8f36b4505 | 16 | extern const unsigned char paletteZXSpec[]; |
| Pokitto | 0:e8b8f36b4505 | 17 | extern const unsigned char paletteDB16[]; |
| Pokitto | 0:e8b8f36b4505 | 18 | |
| Pokitto | 0:e8b8f36b4505 | 19 | |
| Pokitto | 0:e8b8f36b4505 | 20 | #define POK_DEFAULT_PALETTE paletteCGA |
| Pokitto | 0:e8b8f36b4505 | 21 | |
| Pokitto | 0:e8b8f36b4505 | 22 | #endif |
| Pokitto | 0:e8b8f36b4505 | 23 | |
| Pokitto | 0:e8b8f36b4505 | 24 |