A library with drivers for different peripherals on the LPC4088 QuickStart Board or related add-on boards.
Dependents: LPC4088test LPC4088test_ledonly LPC4088test_deleteall LPC4088_RAMtest ... more
glcdfont.c@20:e1e36493f347, 2015-06-10 (annotated)
- Committer:
- embeddedartists
- Date:
- Wed Jun 10 08:34:09 2015 +0000
- Revision:
- 20:e1e36493f347
- Parent:
- 0:0fdadbc3d852
Fixed compiler error in MCIFileSystem regarding us_ticker_api.h
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
embeddedartists | 0:0fdadbc3d852 | 1 | #ifndef FONT5X7_H |
embeddedartists | 0:0fdadbc3d852 | 2 | #define FONT5X7_H |
embeddedartists | 0:0fdadbc3d852 | 3 | |
embeddedartists | 0:0fdadbc3d852 | 4 | #ifdef __AVR__ |
embeddedartists | 0:0fdadbc3d852 | 5 | #include <avr/io.h> |
embeddedartists | 0:0fdadbc3d852 | 6 | #include <avr/pgmspace.h> |
embeddedartists | 0:0fdadbc3d852 | 7 | #else |
embeddedartists | 0:0fdadbc3d852 | 8 | #define PROGMEM |
embeddedartists | 0:0fdadbc3d852 | 9 | #endif |
embeddedartists | 0:0fdadbc3d852 | 10 | |
embeddedartists | 0:0fdadbc3d852 | 11 | // Standard ASCII 5x7 font |
embeddedartists | 0:0fdadbc3d852 | 12 | |
embeddedartists | 0:0fdadbc3d852 | 13 | static const unsigned char font[] PROGMEM = { |
embeddedartists | 0:0fdadbc3d852 | 14 | 0x00, 0x00, 0x00, 0x00, 0x00, |
embeddedartists | 0:0fdadbc3d852 | 15 | 0x3E, 0x5B, 0x4F, 0x5B, 0x3E, |
embeddedartists | 0:0fdadbc3d852 | 16 | 0x3E, 0x6B, 0x4F, 0x6B, 0x3E, |
embeddedartists | 0:0fdadbc3d852 | 17 | 0x1C, 0x3E, 0x7C, 0x3E, 0x1C, |
embeddedartists | 0:0fdadbc3d852 | 18 | 0x18, 0x3C, 0x7E, 0x3C, 0x18, |
embeddedartists | 0:0fdadbc3d852 | 19 | 0x1C, 0x57, 0x7D, 0x57, 0x1C, |
embeddedartists | 0:0fdadbc3d852 | 20 | 0x1C, 0x5E, 0x7F, 0x5E, 0x1C, |
embeddedartists | 0:0fdadbc3d852 | 21 | 0x00, 0x18, 0x3C, 0x18, 0x00, |
embeddedartists | 0:0fdadbc3d852 | 22 | 0xFF, 0xE7, 0xC3, 0xE7, 0xFF, |
embeddedartists | 0:0fdadbc3d852 | 23 | 0x00, 0x18, 0x24, 0x18, 0x00, |
embeddedartists | 0:0fdadbc3d852 | 24 | 0xFF, 0xE7, 0xDB, 0xE7, 0xFF, |
embeddedartists | 0:0fdadbc3d852 | 25 | 0x30, 0x48, 0x3A, 0x06, 0x0E, |
embeddedartists | 0:0fdadbc3d852 | 26 | 0x26, 0x29, 0x79, 0x29, 0x26, |
embeddedartists | 0:0fdadbc3d852 | 27 | 0x40, 0x7F, 0x05, 0x05, 0x07, |
embeddedartists | 0:0fdadbc3d852 | 28 | 0x40, 0x7F, 0x05, 0x25, 0x3F, |
embeddedartists | 0:0fdadbc3d852 | 29 | 0x5A, 0x3C, 0xE7, 0x3C, 0x5A, |
embeddedartists | 0:0fdadbc3d852 | 30 | 0x7F, 0x3E, 0x1C, 0x1C, 0x08, |
embeddedartists | 0:0fdadbc3d852 | 31 | 0x08, 0x1C, 0x1C, 0x3E, 0x7F, |
embeddedartists | 0:0fdadbc3d852 | 32 | 0x14, 0x22, 0x7F, 0x22, 0x14, |
embeddedartists | 0:0fdadbc3d852 | 33 | 0x5F, 0x5F, 0x00, 0x5F, 0x5F, |
embeddedartists | 0:0fdadbc3d852 | 34 | 0x06, 0x09, 0x7F, 0x01, 0x7F, |
embeddedartists | 0:0fdadbc3d852 | 35 | 0x00, 0x66, 0x89, 0x95, 0x6A, |
embeddedartists | 0:0fdadbc3d852 | 36 | 0x60, 0x60, 0x60, 0x60, 0x60, |
embeddedartists | 0:0fdadbc3d852 | 37 | 0x94, 0xA2, 0xFF, 0xA2, 0x94, |
embeddedartists | 0:0fdadbc3d852 | 38 | 0x08, 0x04, 0x7E, 0x04, 0x08, |
embeddedartists | 0:0fdadbc3d852 | 39 | 0x10, 0x20, 0x7E, 0x20, 0x10, |
embeddedartists | 0:0fdadbc3d852 | 40 | 0x08, 0x08, 0x2A, 0x1C, 0x08, |
embeddedartists | 0:0fdadbc3d852 | 41 | 0x08, 0x1C, 0x2A, 0x08, 0x08, |
embeddedartists | 0:0fdadbc3d852 | 42 | 0x1E, 0x10, 0x10, 0x10, 0x10, |
embeddedartists | 0:0fdadbc3d852 | 43 | 0x0C, 0x1E, 0x0C, 0x1E, 0x0C, |
embeddedartists | 0:0fdadbc3d852 | 44 | 0x30, 0x38, 0x3E, 0x38, 0x30, |
embeddedartists | 0:0fdadbc3d852 | 45 | 0x06, 0x0E, 0x3E, 0x0E, 0x06, |
embeddedartists | 0:0fdadbc3d852 | 46 | 0x00, 0x00, 0x00, 0x00, 0x00, |
embeddedartists | 0:0fdadbc3d852 | 47 | 0x00, 0x00, 0x5F, 0x00, 0x00, |
embeddedartists | 0:0fdadbc3d852 | 48 | 0x00, 0x07, 0x00, 0x07, 0x00, |
embeddedartists | 0:0fdadbc3d852 | 49 | 0x14, 0x7F, 0x14, 0x7F, 0x14, |
embeddedartists | 0:0fdadbc3d852 | 50 | 0x24, 0x2A, 0x7F, 0x2A, 0x12, |
embeddedartists | 0:0fdadbc3d852 | 51 | 0x23, 0x13, 0x08, 0x64, 0x62, |
embeddedartists | 0:0fdadbc3d852 | 52 | 0x36, 0x49, 0x56, 0x20, 0x50, |
embeddedartists | 0:0fdadbc3d852 | 53 | 0x00, 0x08, 0x07, 0x03, 0x00, |
embeddedartists | 0:0fdadbc3d852 | 54 | 0x00, 0x1C, 0x22, 0x41, 0x00, |
embeddedartists | 0:0fdadbc3d852 | 55 | 0x00, 0x41, 0x22, 0x1C, 0x00, |
embeddedartists | 0:0fdadbc3d852 | 56 | 0x2A, 0x1C, 0x7F, 0x1C, 0x2A, |
embeddedartists | 0:0fdadbc3d852 | 57 | 0x08, 0x08, 0x3E, 0x08, 0x08, |
embeddedartists | 0:0fdadbc3d852 | 58 | 0x00, 0x80, 0x70, 0x30, 0x00, |
embeddedartists | 0:0fdadbc3d852 | 59 | 0x08, 0x08, 0x08, 0x08, 0x08, |
embeddedartists | 0:0fdadbc3d852 | 60 | 0x00, 0x00, 0x60, 0x60, 0x00, |
embeddedartists | 0:0fdadbc3d852 | 61 | 0x20, 0x10, 0x08, 0x04, 0x02, |
embeddedartists | 0:0fdadbc3d852 | 62 | 0x3E, 0x51, 0x49, 0x45, 0x3E, |
embeddedartists | 0:0fdadbc3d852 | 63 | 0x00, 0x42, 0x7F, 0x40, 0x00, |
embeddedartists | 0:0fdadbc3d852 | 64 | 0x72, 0x49, 0x49, 0x49, 0x46, |
embeddedartists | 0:0fdadbc3d852 | 65 | 0x21, 0x41, 0x49, 0x4D, 0x33, |
embeddedartists | 0:0fdadbc3d852 | 66 | 0x18, 0x14, 0x12, 0x7F, 0x10, |
embeddedartists | 0:0fdadbc3d852 | 67 | 0x27, 0x45, 0x45, 0x45, 0x39, |
embeddedartists | 0:0fdadbc3d852 | 68 | 0x3C, 0x4A, 0x49, 0x49, 0x31, |
embeddedartists | 0:0fdadbc3d852 | 69 | 0x41, 0x21, 0x11, 0x09, 0x07, |
embeddedartists | 0:0fdadbc3d852 | 70 | 0x36, 0x49, 0x49, 0x49, 0x36, |
embeddedartists | 0:0fdadbc3d852 | 71 | 0x46, 0x49, 0x49, 0x29, 0x1E, |
embeddedartists | 0:0fdadbc3d852 | 72 | 0x00, 0x00, 0x14, 0x00, 0x00, |
embeddedartists | 0:0fdadbc3d852 | 73 | 0x00, 0x40, 0x34, 0x00, 0x00, |
embeddedartists | 0:0fdadbc3d852 | 74 | 0x00, 0x08, 0x14, 0x22, 0x41, |
embeddedartists | 0:0fdadbc3d852 | 75 | 0x14, 0x14, 0x14, 0x14, 0x14, |
embeddedartists | 0:0fdadbc3d852 | 76 | 0x00, 0x41, 0x22, 0x14, 0x08, |
embeddedartists | 0:0fdadbc3d852 | 77 | 0x02, 0x01, 0x59, 0x09, 0x06, |
embeddedartists | 0:0fdadbc3d852 | 78 | 0x3E, 0x41, 0x5D, 0x59, 0x4E, |
embeddedartists | 0:0fdadbc3d852 | 79 | 0x7C, 0x12, 0x11, 0x12, 0x7C, |
embeddedartists | 0:0fdadbc3d852 | 80 | 0x7F, 0x49, 0x49, 0x49, 0x36, |
embeddedartists | 0:0fdadbc3d852 | 81 | 0x3E, 0x41, 0x41, 0x41, 0x22, |
embeddedartists | 0:0fdadbc3d852 | 82 | 0x7F, 0x41, 0x41, 0x41, 0x3E, |
embeddedartists | 0:0fdadbc3d852 | 83 | 0x7F, 0x49, 0x49, 0x49, 0x41, |
embeddedartists | 0:0fdadbc3d852 | 84 | 0x7F, 0x09, 0x09, 0x09, 0x01, |
embeddedartists | 0:0fdadbc3d852 | 85 | 0x3E, 0x41, 0x41, 0x51, 0x73, |
embeddedartists | 0:0fdadbc3d852 | 86 | 0x7F, 0x08, 0x08, 0x08, 0x7F, |
embeddedartists | 0:0fdadbc3d852 | 87 | 0x00, 0x41, 0x7F, 0x41, 0x00, |
embeddedartists | 0:0fdadbc3d852 | 88 | 0x20, 0x40, 0x41, 0x3F, 0x01, |
embeddedartists | 0:0fdadbc3d852 | 89 | 0x7F, 0x08, 0x14, 0x22, 0x41, |
embeddedartists | 0:0fdadbc3d852 | 90 | 0x7F, 0x40, 0x40, 0x40, 0x40, |
embeddedartists | 0:0fdadbc3d852 | 91 | 0x7F, 0x02, 0x1C, 0x02, 0x7F, |
embeddedartists | 0:0fdadbc3d852 | 92 | 0x7F, 0x04, 0x08, 0x10, 0x7F, |
embeddedartists | 0:0fdadbc3d852 | 93 | 0x3E, 0x41, 0x41, 0x41, 0x3E, |
embeddedartists | 0:0fdadbc3d852 | 94 | 0x7F, 0x09, 0x09, 0x09, 0x06, |
embeddedartists | 0:0fdadbc3d852 | 95 | 0x3E, 0x41, 0x51, 0x21, 0x5E, |
embeddedartists | 0:0fdadbc3d852 | 96 | 0x7F, 0x09, 0x19, 0x29, 0x46, |
embeddedartists | 0:0fdadbc3d852 | 97 | 0x26, 0x49, 0x49, 0x49, 0x32, |
embeddedartists | 0:0fdadbc3d852 | 98 | 0x03, 0x01, 0x7F, 0x01, 0x03, |
embeddedartists | 0:0fdadbc3d852 | 99 | 0x3F, 0x40, 0x40, 0x40, 0x3F, |
embeddedartists | 0:0fdadbc3d852 | 100 | 0x1F, 0x20, 0x40, 0x20, 0x1F, |
embeddedartists | 0:0fdadbc3d852 | 101 | 0x3F, 0x40, 0x38, 0x40, 0x3F, |
embeddedartists | 0:0fdadbc3d852 | 102 | 0x63, 0x14, 0x08, 0x14, 0x63, |
embeddedartists | 0:0fdadbc3d852 | 103 | 0x03, 0x04, 0x78, 0x04, 0x03, |
embeddedartists | 0:0fdadbc3d852 | 104 | 0x61, 0x59, 0x49, 0x4D, 0x43, |
embeddedartists | 0:0fdadbc3d852 | 105 | 0x00, 0x7F, 0x41, 0x41, 0x41, |
embeddedartists | 0:0fdadbc3d852 | 106 | 0x02, 0x04, 0x08, 0x10, 0x20, |
embeddedartists | 0:0fdadbc3d852 | 107 | 0x00, 0x41, 0x41, 0x41, 0x7F, |
embeddedartists | 0:0fdadbc3d852 | 108 | 0x04, 0x02, 0x01, 0x02, 0x04, |
embeddedartists | 0:0fdadbc3d852 | 109 | 0x40, 0x40, 0x40, 0x40, 0x40, |
embeddedartists | 0:0fdadbc3d852 | 110 | 0x00, 0x03, 0x07, 0x08, 0x00, |
embeddedartists | 0:0fdadbc3d852 | 111 | 0x20, 0x54, 0x54, 0x78, 0x40, |
embeddedartists | 0:0fdadbc3d852 | 112 | 0x7F, 0x28, 0x44, 0x44, 0x38, |
embeddedartists | 0:0fdadbc3d852 | 113 | 0x38, 0x44, 0x44, 0x44, 0x28, |
embeddedartists | 0:0fdadbc3d852 | 114 | 0x38, 0x44, 0x44, 0x28, 0x7F, |
embeddedartists | 0:0fdadbc3d852 | 115 | 0x38, 0x54, 0x54, 0x54, 0x18, |
embeddedartists | 0:0fdadbc3d852 | 116 | 0x00, 0x08, 0x7E, 0x09, 0x02, |
embeddedartists | 0:0fdadbc3d852 | 117 | 0x18, 0xA4, 0xA4, 0x9C, 0x78, |
embeddedartists | 0:0fdadbc3d852 | 118 | 0x7F, 0x08, 0x04, 0x04, 0x78, |
embeddedartists | 0:0fdadbc3d852 | 119 | 0x00, 0x44, 0x7D, 0x40, 0x00, |
embeddedartists | 0:0fdadbc3d852 | 120 | 0x20, 0x40, 0x40, 0x3D, 0x00, |
embeddedartists | 0:0fdadbc3d852 | 121 | 0x7F, 0x10, 0x28, 0x44, 0x00, |
embeddedartists | 0:0fdadbc3d852 | 122 | 0x00, 0x41, 0x7F, 0x40, 0x00, |
embeddedartists | 0:0fdadbc3d852 | 123 | 0x7C, 0x04, 0x78, 0x04, 0x78, |
embeddedartists | 0:0fdadbc3d852 | 124 | 0x7C, 0x08, 0x04, 0x04, 0x78, |
embeddedartists | 0:0fdadbc3d852 | 125 | 0x38, 0x44, 0x44, 0x44, 0x38, |
embeddedartists | 0:0fdadbc3d852 | 126 | 0xFC, 0x18, 0x24, 0x24, 0x18, |
embeddedartists | 0:0fdadbc3d852 | 127 | 0x18, 0x24, 0x24, 0x18, 0xFC, |
embeddedartists | 0:0fdadbc3d852 | 128 | 0x7C, 0x08, 0x04, 0x04, 0x08, |
embeddedartists | 0:0fdadbc3d852 | 129 | 0x48, 0x54, 0x54, 0x54, 0x24, |
embeddedartists | 0:0fdadbc3d852 | 130 | 0x04, 0x04, 0x3F, 0x44, 0x24, |
embeddedartists | 0:0fdadbc3d852 | 131 | 0x3C, 0x40, 0x40, 0x20, 0x7C, |
embeddedartists | 0:0fdadbc3d852 | 132 | 0x1C, 0x20, 0x40, 0x20, 0x1C, |
embeddedartists | 0:0fdadbc3d852 | 133 | 0x3C, 0x40, 0x30, 0x40, 0x3C, |
embeddedartists | 0:0fdadbc3d852 | 134 | 0x44, 0x28, 0x10, 0x28, 0x44, |
embeddedartists | 0:0fdadbc3d852 | 135 | 0x4C, 0x90, 0x90, 0x90, 0x7C, |
embeddedartists | 0:0fdadbc3d852 | 136 | 0x44, 0x64, 0x54, 0x4C, 0x44, |
embeddedartists | 0:0fdadbc3d852 | 137 | 0x00, 0x08, 0x36, 0x41, 0x00, |
embeddedartists | 0:0fdadbc3d852 | 138 | 0x00, 0x00, 0x77, 0x00, 0x00, |
embeddedartists | 0:0fdadbc3d852 | 139 | 0x00, 0x41, 0x36, 0x08, 0x00, |
embeddedartists | 0:0fdadbc3d852 | 140 | 0x02, 0x01, 0x02, 0x04, 0x02, |
embeddedartists | 0:0fdadbc3d852 | 141 | 0x3C, 0x26, 0x23, 0x26, 0x3C, |
embeddedartists | 0:0fdadbc3d852 | 142 | 0x1E, 0xA1, 0xA1, 0x61, 0x12, |
embeddedartists | 0:0fdadbc3d852 | 143 | 0x3A, 0x40, 0x40, 0x20, 0x7A, |
embeddedartists | 0:0fdadbc3d852 | 144 | 0x38, 0x54, 0x54, 0x55, 0x59, |
embeddedartists | 0:0fdadbc3d852 | 145 | 0x21, 0x55, 0x55, 0x79, 0x41, |
embeddedartists | 0:0fdadbc3d852 | 146 | 0x21, 0x54, 0x54, 0x78, 0x41, |
embeddedartists | 0:0fdadbc3d852 | 147 | 0x21, 0x55, 0x54, 0x78, 0x40, |
embeddedartists | 0:0fdadbc3d852 | 148 | 0x20, 0x54, 0x55, 0x79, 0x40, |
embeddedartists | 0:0fdadbc3d852 | 149 | 0x0C, 0x1E, 0x52, 0x72, 0x12, |
embeddedartists | 0:0fdadbc3d852 | 150 | 0x39, 0x55, 0x55, 0x55, 0x59, |
embeddedartists | 0:0fdadbc3d852 | 151 | 0x39, 0x54, 0x54, 0x54, 0x59, |
embeddedartists | 0:0fdadbc3d852 | 152 | 0x39, 0x55, 0x54, 0x54, 0x58, |
embeddedartists | 0:0fdadbc3d852 | 153 | 0x00, 0x00, 0x45, 0x7C, 0x41, |
embeddedartists | 0:0fdadbc3d852 | 154 | 0x00, 0x02, 0x45, 0x7D, 0x42, |
embeddedartists | 0:0fdadbc3d852 | 155 | 0x00, 0x01, 0x45, 0x7C, 0x40, |
embeddedartists | 0:0fdadbc3d852 | 156 | 0xF0, 0x29, 0x24, 0x29, 0xF0, |
embeddedartists | 0:0fdadbc3d852 | 157 | 0xF0, 0x28, 0x25, 0x28, 0xF0, |
embeddedartists | 0:0fdadbc3d852 | 158 | 0x7C, 0x54, 0x55, 0x45, 0x00, |
embeddedartists | 0:0fdadbc3d852 | 159 | 0x20, 0x54, 0x54, 0x7C, 0x54, |
embeddedartists | 0:0fdadbc3d852 | 160 | 0x7C, 0x0A, 0x09, 0x7F, 0x49, |
embeddedartists | 0:0fdadbc3d852 | 161 | 0x32, 0x49, 0x49, 0x49, 0x32, |
embeddedartists | 0:0fdadbc3d852 | 162 | 0x32, 0x48, 0x48, 0x48, 0x32, |
embeddedartists | 0:0fdadbc3d852 | 163 | 0x32, 0x4A, 0x48, 0x48, 0x30, |
embeddedartists | 0:0fdadbc3d852 | 164 | 0x3A, 0x41, 0x41, 0x21, 0x7A, |
embeddedartists | 0:0fdadbc3d852 | 165 | 0x3A, 0x42, 0x40, 0x20, 0x78, |
embeddedartists | 0:0fdadbc3d852 | 166 | 0x00, 0x9D, 0xA0, 0xA0, 0x7D, |
embeddedartists | 0:0fdadbc3d852 | 167 | 0x39, 0x44, 0x44, 0x44, 0x39, |
embeddedartists | 0:0fdadbc3d852 | 168 | 0x3D, 0x40, 0x40, 0x40, 0x3D, |
embeddedartists | 0:0fdadbc3d852 | 169 | 0x3C, 0x24, 0xFF, 0x24, 0x24, |
embeddedartists | 0:0fdadbc3d852 | 170 | 0x48, 0x7E, 0x49, 0x43, 0x66, |
embeddedartists | 0:0fdadbc3d852 | 171 | 0x2B, 0x2F, 0xFC, 0x2F, 0x2B, |
embeddedartists | 0:0fdadbc3d852 | 172 | 0xFF, 0x09, 0x29, 0xF6, 0x20, |
embeddedartists | 0:0fdadbc3d852 | 173 | 0xC0, 0x88, 0x7E, 0x09, 0x03, |
embeddedartists | 0:0fdadbc3d852 | 174 | 0x20, 0x54, 0x54, 0x79, 0x41, |
embeddedartists | 0:0fdadbc3d852 | 175 | 0x00, 0x00, 0x44, 0x7D, 0x41, |
embeddedartists | 0:0fdadbc3d852 | 176 | 0x30, 0x48, 0x48, 0x4A, 0x32, |
embeddedartists | 0:0fdadbc3d852 | 177 | 0x38, 0x40, 0x40, 0x22, 0x7A, |
embeddedartists | 0:0fdadbc3d852 | 178 | 0x00, 0x7A, 0x0A, 0x0A, 0x72, |
embeddedartists | 0:0fdadbc3d852 | 179 | 0x7D, 0x0D, 0x19, 0x31, 0x7D, |
embeddedartists | 0:0fdadbc3d852 | 180 | 0x26, 0x29, 0x29, 0x2F, 0x28, |
embeddedartists | 0:0fdadbc3d852 | 181 | 0x26, 0x29, 0x29, 0x29, 0x26, |
embeddedartists | 0:0fdadbc3d852 | 182 | 0x30, 0x48, 0x4D, 0x40, 0x20, |
embeddedartists | 0:0fdadbc3d852 | 183 | 0x38, 0x08, 0x08, 0x08, 0x08, |
embeddedartists | 0:0fdadbc3d852 | 184 | 0x08, 0x08, 0x08, 0x08, 0x38, |
embeddedartists | 0:0fdadbc3d852 | 185 | 0x2F, 0x10, 0xC8, 0xAC, 0xBA, |
embeddedartists | 0:0fdadbc3d852 | 186 | 0x2F, 0x10, 0x28, 0x34, 0xFA, |
embeddedartists | 0:0fdadbc3d852 | 187 | 0x00, 0x00, 0x7B, 0x00, 0x00, |
embeddedartists | 0:0fdadbc3d852 | 188 | 0x08, 0x14, 0x2A, 0x14, 0x22, |
embeddedartists | 0:0fdadbc3d852 | 189 | 0x22, 0x14, 0x2A, 0x14, 0x08, |
embeddedartists | 0:0fdadbc3d852 | 190 | 0xAA, 0x00, 0x55, 0x00, 0xAA, |
embeddedartists | 0:0fdadbc3d852 | 191 | 0xAA, 0x55, 0xAA, 0x55, 0xAA, |
embeddedartists | 0:0fdadbc3d852 | 192 | 0x00, 0x00, 0x00, 0xFF, 0x00, |
embeddedartists | 0:0fdadbc3d852 | 193 | 0x10, 0x10, 0x10, 0xFF, 0x00, |
embeddedartists | 0:0fdadbc3d852 | 194 | 0x14, 0x14, 0x14, 0xFF, 0x00, |
embeddedartists | 0:0fdadbc3d852 | 195 | 0x10, 0x10, 0xFF, 0x00, 0xFF, |
embeddedartists | 0:0fdadbc3d852 | 196 | 0x10, 0x10, 0xF0, 0x10, 0xF0, |
embeddedartists | 0:0fdadbc3d852 | 197 | 0x14, 0x14, 0x14, 0xFC, 0x00, |
embeddedartists | 0:0fdadbc3d852 | 198 | 0x14, 0x14, 0xF7, 0x00, 0xFF, |
embeddedartists | 0:0fdadbc3d852 | 199 | 0x00, 0x00, 0xFF, 0x00, 0xFF, |
embeddedartists | 0:0fdadbc3d852 | 200 | 0x14, 0x14, 0xF4, 0x04, 0xFC, |
embeddedartists | 0:0fdadbc3d852 | 201 | 0x14, 0x14, 0x17, 0x10, 0x1F, |
embeddedartists | 0:0fdadbc3d852 | 202 | 0x10, 0x10, 0x1F, 0x10, 0x1F, |
embeddedartists | 0:0fdadbc3d852 | 203 | 0x14, 0x14, 0x14, 0x1F, 0x00, |
embeddedartists | 0:0fdadbc3d852 | 204 | 0x10, 0x10, 0x10, 0xF0, 0x00, |
embeddedartists | 0:0fdadbc3d852 | 205 | 0x00, 0x00, 0x00, 0x1F, 0x10, |
embeddedartists | 0:0fdadbc3d852 | 206 | 0x10, 0x10, 0x10, 0x1F, 0x10, |
embeddedartists | 0:0fdadbc3d852 | 207 | 0x10, 0x10, 0x10, 0xF0, 0x10, |
embeddedartists | 0:0fdadbc3d852 | 208 | 0x00, 0x00, 0x00, 0xFF, 0x10, |
embeddedartists | 0:0fdadbc3d852 | 209 | 0x10, 0x10, 0x10, 0x10, 0x10, |
embeddedartists | 0:0fdadbc3d852 | 210 | 0x10, 0x10, 0x10, 0xFF, 0x10, |
embeddedartists | 0:0fdadbc3d852 | 211 | 0x00, 0x00, 0x00, 0xFF, 0x14, |
embeddedartists | 0:0fdadbc3d852 | 212 | 0x00, 0x00, 0xFF, 0x00, 0xFF, |
embeddedartists | 0:0fdadbc3d852 | 213 | 0x00, 0x00, 0x1F, 0x10, 0x17, |
embeddedartists | 0:0fdadbc3d852 | 214 | 0x00, 0x00, 0xFC, 0x04, 0xF4, |
embeddedartists | 0:0fdadbc3d852 | 215 | 0x14, 0x14, 0x17, 0x10, 0x17, |
embeddedartists | 0:0fdadbc3d852 | 216 | 0x14, 0x14, 0xF4, 0x04, 0xF4, |
embeddedartists | 0:0fdadbc3d852 | 217 | 0x00, 0x00, 0xFF, 0x00, 0xF7, |
embeddedartists | 0:0fdadbc3d852 | 218 | 0x14, 0x14, 0x14, 0x14, 0x14, |
embeddedartists | 0:0fdadbc3d852 | 219 | 0x14, 0x14, 0xF7, 0x00, 0xF7, |
embeddedartists | 0:0fdadbc3d852 | 220 | 0x14, 0x14, 0x14, 0x17, 0x14, |
embeddedartists | 0:0fdadbc3d852 | 221 | 0x10, 0x10, 0x1F, 0x10, 0x1F, |
embeddedartists | 0:0fdadbc3d852 | 222 | 0x14, 0x14, 0x14, 0xF4, 0x14, |
embeddedartists | 0:0fdadbc3d852 | 223 | 0x10, 0x10, 0xF0, 0x10, 0xF0, |
embeddedartists | 0:0fdadbc3d852 | 224 | 0x00, 0x00, 0x1F, 0x10, 0x1F, |
embeddedartists | 0:0fdadbc3d852 | 225 | 0x00, 0x00, 0x00, 0x1F, 0x14, |
embeddedartists | 0:0fdadbc3d852 | 226 | 0x00, 0x00, 0x00, 0xFC, 0x14, |
embeddedartists | 0:0fdadbc3d852 | 227 | 0x00, 0x00, 0xF0, 0x10, 0xF0, |
embeddedartists | 0:0fdadbc3d852 | 228 | 0x10, 0x10, 0xFF, 0x10, 0xFF, |
embeddedartists | 0:0fdadbc3d852 | 229 | 0x14, 0x14, 0x14, 0xFF, 0x14, |
embeddedartists | 0:0fdadbc3d852 | 230 | 0x10, 0x10, 0x10, 0x1F, 0x00, |
embeddedartists | 0:0fdadbc3d852 | 231 | 0x00, 0x00, 0x00, 0xF0, 0x10, |
embeddedartists | 0:0fdadbc3d852 | 232 | 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, |
embeddedartists | 0:0fdadbc3d852 | 233 | 0xF0, 0xF0, 0xF0, 0xF0, 0xF0, |
embeddedartists | 0:0fdadbc3d852 | 234 | 0xFF, 0xFF, 0xFF, 0x00, 0x00, |
embeddedartists | 0:0fdadbc3d852 | 235 | 0x00, 0x00, 0x00, 0xFF, 0xFF, |
embeddedartists | 0:0fdadbc3d852 | 236 | 0x0F, 0x0F, 0x0F, 0x0F, 0x0F, |
embeddedartists | 0:0fdadbc3d852 | 237 | 0x38, 0x44, 0x44, 0x38, 0x44, |
embeddedartists | 0:0fdadbc3d852 | 238 | 0x7C, 0x2A, 0x2A, 0x3E, 0x14, |
embeddedartists | 0:0fdadbc3d852 | 239 | 0x7E, 0x02, 0x02, 0x06, 0x06, |
embeddedartists | 0:0fdadbc3d852 | 240 | 0x02, 0x7E, 0x02, 0x7E, 0x02, |
embeddedartists | 0:0fdadbc3d852 | 241 | 0x63, 0x55, 0x49, 0x41, 0x63, |
embeddedartists | 0:0fdadbc3d852 | 242 | 0x38, 0x44, 0x44, 0x3C, 0x04, |
embeddedartists | 0:0fdadbc3d852 | 243 | 0x40, 0x7E, 0x20, 0x1E, 0x20, |
embeddedartists | 0:0fdadbc3d852 | 244 | 0x06, 0x02, 0x7E, 0x02, 0x02, |
embeddedartists | 0:0fdadbc3d852 | 245 | 0x99, 0xA5, 0xE7, 0xA5, 0x99, |
embeddedartists | 0:0fdadbc3d852 | 246 | 0x1C, 0x2A, 0x49, 0x2A, 0x1C, |
embeddedartists | 0:0fdadbc3d852 | 247 | 0x4C, 0x72, 0x01, 0x72, 0x4C, |
embeddedartists | 0:0fdadbc3d852 | 248 | 0x30, 0x4A, 0x4D, 0x4D, 0x30, |
embeddedartists | 0:0fdadbc3d852 | 249 | 0x30, 0x48, 0x78, 0x48, 0x30, |
embeddedartists | 0:0fdadbc3d852 | 250 | 0xBC, 0x62, 0x5A, 0x46, 0x3D, |
embeddedartists | 0:0fdadbc3d852 | 251 | 0x3E, 0x49, 0x49, 0x49, 0x00, |
embeddedartists | 0:0fdadbc3d852 | 252 | 0x7E, 0x01, 0x01, 0x01, 0x7E, |
embeddedartists | 0:0fdadbc3d852 | 253 | 0x2A, 0x2A, 0x2A, 0x2A, 0x2A, |
embeddedartists | 0:0fdadbc3d852 | 254 | 0x44, 0x44, 0x5F, 0x44, 0x44, |
embeddedartists | 0:0fdadbc3d852 | 255 | 0x40, 0x51, 0x4A, 0x44, 0x40, |
embeddedartists | 0:0fdadbc3d852 | 256 | 0x40, 0x44, 0x4A, 0x51, 0x40, |
embeddedartists | 0:0fdadbc3d852 | 257 | 0x00, 0x00, 0xFF, 0x01, 0x03, |
embeddedartists | 0:0fdadbc3d852 | 258 | 0xE0, 0x80, 0xFF, 0x00, 0x00, |
embeddedartists | 0:0fdadbc3d852 | 259 | 0x08, 0x08, 0x6B, 0x6B, 0x08, |
embeddedartists | 0:0fdadbc3d852 | 260 | 0x36, 0x12, 0x36, 0x24, 0x36, |
embeddedartists | 0:0fdadbc3d852 | 261 | 0x06, 0x0F, 0x09, 0x0F, 0x06, |
embeddedartists | 0:0fdadbc3d852 | 262 | 0x00, 0x00, 0x18, 0x18, 0x00, |
embeddedartists | 0:0fdadbc3d852 | 263 | 0x00, 0x00, 0x10, 0x10, 0x00, |
embeddedartists | 0:0fdadbc3d852 | 264 | 0x30, 0x40, 0xFF, 0x01, 0x01, |
embeddedartists | 0:0fdadbc3d852 | 265 | 0x00, 0x1F, 0x01, 0x01, 0x1E, |
embeddedartists | 0:0fdadbc3d852 | 266 | 0x00, 0x19, 0x1D, 0x17, 0x12, |
embeddedartists | 0:0fdadbc3d852 | 267 | 0x00, 0x3C, 0x3C, 0x3C, 0x3C, |
embeddedartists | 0:0fdadbc3d852 | 268 | 0x00, 0x00, 0x00, 0x00, 0x00 |
embeddedartists | 0:0fdadbc3d852 | 269 | }; |
embeddedartists | 0:0fdadbc3d852 | 270 | #endif // FONT5X7_H |
embeddedartists | 0:0fdadbc3d852 | 271 | |
embeddedartists | 0:0fdadbc3d852 | 272 |