E_paper, E_ink, Screen size 1.54", resolution 200x200, 4 wire spi, Waveshare, Black and White, Kl25Z, 8 wire print connector, supply 3.3 Volt, IL0373 Controller, font size is 8, 12, 16 and 24.

Dependencies:   mbed

Committer:
GerritPathuis
Date:
Sat Mar 31 08:40:16 2018 +0000
Revision:
10:08e026240a5f
Parent:
3:e4399b5ceb4b
Minor text update

Who changed what in which revision?

UserRevisionLine numberNew contents of line
GerritPathuis 1:d27a7e06c233 1 /**
GerritPathuis 1:d27a7e06c233 2 ******************************************************************************
GerritPathuis 1:d27a7e06c233 3 * @file Font8.c
GerritPathuis 1:d27a7e06c233 4 * @author MCD Application Team
GerritPathuis 1:d27a7e06c233 5 * @version V1.0.0
GerritPathuis 1:d27a7e06c233 6 * @date 18-February-2014
GerritPathuis 1:d27a7e06c233 7 * @brief This file provides text Font8 for STM32xx-EVAL's LCD driver.
GerritPathuis 1:d27a7e06c233 8 ******************************************************************************
GerritPathuis 1:d27a7e06c233 9 * @attention
GerritPathuis 1:d27a7e06c233 10 *
GerritPathuis 1:d27a7e06c233 11 * <h2><center>&copy; COPYRIGHT(c) 2014 STMicroelectronics</center></h2>
GerritPathuis 1:d27a7e06c233 12 *
GerritPathuis 1:d27a7e06c233 13 * Redistribution and use in source and binary forms, with or without modification,
GerritPathuis 1:d27a7e06c233 14 * are permitted provided that the following conditions are met:
GerritPathuis 1:d27a7e06c233 15 * 1. Redistributions of source code must retain the above copyright notice,
GerritPathuis 1:d27a7e06c233 16 * this list of conditions and the following disclaimer.
GerritPathuis 1:d27a7e06c233 17 * 2. Redistributions in binary form must reproduce the above copyright notice,
GerritPathuis 1:d27a7e06c233 18 * this list of conditions and the following disclaimer in the documentation
GerritPathuis 1:d27a7e06c233 19 * and/or other materials provided with the distribution.
GerritPathuis 1:d27a7e06c233 20 * 3. Neither the name of STMicroelectronics nor the names of its contributors
GerritPathuis 1:d27a7e06c233 21 * may be used to endorse or promote products derived from this software
GerritPathuis 1:d27a7e06c233 22 * without specific prior written permission.
GerritPathuis 1:d27a7e06c233 23 *
GerritPathuis 1:d27a7e06c233 24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
GerritPathuis 1:d27a7e06c233 25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
GerritPathuis 1:d27a7e06c233 26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
GerritPathuis 1:d27a7e06c233 27 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
GerritPathuis 1:d27a7e06c233 28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
GerritPathuis 1:d27a7e06c233 29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
GerritPathuis 1:d27a7e06c233 30 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
GerritPathuis 1:d27a7e06c233 31 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
GerritPathuis 1:d27a7e06c233 32 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
GerritPathuis 1:d27a7e06c233 33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
GerritPathuis 1:d27a7e06c233 34 *
GerritPathuis 1:d27a7e06c233 35 ******************************************************************************
GerritPathuis 1:d27a7e06c233 36 */
GerritPathuis 1:d27a7e06c233 37
GerritPathuis 1:d27a7e06c233 38 /* Includes ------------------------------------------------------------------*/
GerritPathuis 1:d27a7e06c233 39 #include "fonts.h"
GerritPathuis 1:d27a7e06c233 40 //#include <avr/pgmspace.h>
GerritPathuis 1:d27a7e06c233 41
GerritPathuis 1:d27a7e06c233 42 //
GerritPathuis 1:d27a7e06c233 43 // Font data for Courier New 12pt
GerritPathuis 1:d27a7e06c233 44 //
GerritPathuis 1:d27a7e06c233 45
GerritPathuis 3:e4399b5ceb4b 46 const uint8_t Font8_Table[]=
GerritPathuis 1:d27a7e06c233 47 {
GerritPathuis 1:d27a7e06c233 48 // @0 ' ' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 49 0x00, //
GerritPathuis 1:d27a7e06c233 50 0x00, //
GerritPathuis 1:d27a7e06c233 51 0x00, //
GerritPathuis 1:d27a7e06c233 52 0x00, //
GerritPathuis 1:d27a7e06c233 53 0x00, //
GerritPathuis 1:d27a7e06c233 54 0x00, //
GerritPathuis 1:d27a7e06c233 55 0x00, //
GerritPathuis 1:d27a7e06c233 56 0x00, //
GerritPathuis 1:d27a7e06c233 57
GerritPathuis 1:d27a7e06c233 58 // @8 '!' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 59 0x20, // #
GerritPathuis 1:d27a7e06c233 60 0x20, // #
GerritPathuis 1:d27a7e06c233 61 0x20, // #
GerritPathuis 1:d27a7e06c233 62 0x20, // #
GerritPathuis 1:d27a7e06c233 63 0x00, //
GerritPathuis 1:d27a7e06c233 64 0x20, // #
GerritPathuis 1:d27a7e06c233 65 0x00, //
GerritPathuis 1:d27a7e06c233 66 0x00, //
GerritPathuis 1:d27a7e06c233 67
GerritPathuis 1:d27a7e06c233 68 // @16 '"' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 69 0x50, // # #
GerritPathuis 1:d27a7e06c233 70 0x50, // # #
GerritPathuis 1:d27a7e06c233 71 0x00, //
GerritPathuis 1:d27a7e06c233 72 0x00, //
GerritPathuis 1:d27a7e06c233 73 0x00, //
GerritPathuis 1:d27a7e06c233 74 0x00, //
GerritPathuis 1:d27a7e06c233 75 0x00, //
GerritPathuis 1:d27a7e06c233 76 0x00, //
GerritPathuis 1:d27a7e06c233 77
GerritPathuis 1:d27a7e06c233 78 // @24 '#' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 79 0x28, // # #
GerritPathuis 1:d27a7e06c233 80 0x50, // # #
GerritPathuis 1:d27a7e06c233 81 0xF8, // #####
GerritPathuis 1:d27a7e06c233 82 0x50, // # #
GerritPathuis 1:d27a7e06c233 83 0xF8, // #####
GerritPathuis 1:d27a7e06c233 84 0x50, // # #
GerritPathuis 1:d27a7e06c233 85 0xA0, // # #
GerritPathuis 1:d27a7e06c233 86 0x00, //
GerritPathuis 1:d27a7e06c233 87
GerritPathuis 1:d27a7e06c233 88 // @32 '$' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 89 0x20, // #
GerritPathuis 1:d27a7e06c233 90 0x30, // ##
GerritPathuis 1:d27a7e06c233 91 0x60, // ##
GerritPathuis 1:d27a7e06c233 92 0x30, // ##
GerritPathuis 1:d27a7e06c233 93 0x10, // #
GerritPathuis 1:d27a7e06c233 94 0x60, // ##
GerritPathuis 1:d27a7e06c233 95 0x20, // #
GerritPathuis 1:d27a7e06c233 96 0x00, //
GerritPathuis 1:d27a7e06c233 97
GerritPathuis 1:d27a7e06c233 98 // @40 '%' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 99 0x20, // #
GerritPathuis 1:d27a7e06c233 100 0x20, // #
GerritPathuis 1:d27a7e06c233 101 0x18, // ##
GerritPathuis 1:d27a7e06c233 102 0x60, // ##
GerritPathuis 1:d27a7e06c233 103 0x10, // #
GerritPathuis 1:d27a7e06c233 104 0x10, // #
GerritPathuis 1:d27a7e06c233 105 0x00, //
GerritPathuis 1:d27a7e06c233 106 0x00, //
GerritPathuis 1:d27a7e06c233 107
GerritPathuis 1:d27a7e06c233 108 // @48 '&' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 109 0x00, //
GerritPathuis 1:d27a7e06c233 110 0x38, // ###
GerritPathuis 1:d27a7e06c233 111 0x20, // #
GerritPathuis 1:d27a7e06c233 112 0x60, // ##
GerritPathuis 1:d27a7e06c233 113 0x50, // # #
GerritPathuis 1:d27a7e06c233 114 0x78, // ####
GerritPathuis 1:d27a7e06c233 115 0x00, //
GerritPathuis 1:d27a7e06c233 116 0x00, //
GerritPathuis 1:d27a7e06c233 117
GerritPathuis 1:d27a7e06c233 118 // @56 ''' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 119 0x20, // #
GerritPathuis 1:d27a7e06c233 120 0x20, // #
GerritPathuis 1:d27a7e06c233 121 0x20, // #
GerritPathuis 1:d27a7e06c233 122 0x00, //
GerritPathuis 1:d27a7e06c233 123 0x00, //
GerritPathuis 1:d27a7e06c233 124 0x00, //
GerritPathuis 1:d27a7e06c233 125 0x00, //
GerritPathuis 1:d27a7e06c233 126 0x00, //
GerritPathuis 1:d27a7e06c233 127
GerritPathuis 1:d27a7e06c233 128 // @64 '(' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 129 0x10, // #
GerritPathuis 1:d27a7e06c233 130 0x20, // #
GerritPathuis 1:d27a7e06c233 131 0x20, // #
GerritPathuis 1:d27a7e06c233 132 0x20, // #
GerritPathuis 1:d27a7e06c233 133 0x20, // #
GerritPathuis 1:d27a7e06c233 134 0x20, // #
GerritPathuis 1:d27a7e06c233 135 0x10, // #
GerritPathuis 1:d27a7e06c233 136 0x00, //
GerritPathuis 1:d27a7e06c233 137
GerritPathuis 1:d27a7e06c233 138 // @72 ')' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 139 0x40, // #
GerritPathuis 1:d27a7e06c233 140 0x20, // #
GerritPathuis 1:d27a7e06c233 141 0x20, // #
GerritPathuis 1:d27a7e06c233 142 0x20, // #
GerritPathuis 1:d27a7e06c233 143 0x20, // #
GerritPathuis 1:d27a7e06c233 144 0x20, // #
GerritPathuis 1:d27a7e06c233 145 0x40, // #
GerritPathuis 1:d27a7e06c233 146 0x00, //
GerritPathuis 1:d27a7e06c233 147
GerritPathuis 1:d27a7e06c233 148 // @80 '*' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 149 0x20, // #
GerritPathuis 1:d27a7e06c233 150 0x70, // ###
GerritPathuis 1:d27a7e06c233 151 0x20, // #
GerritPathuis 1:d27a7e06c233 152 0x50, // # #
GerritPathuis 1:d27a7e06c233 153 0x00, //
GerritPathuis 1:d27a7e06c233 154 0x00, //
GerritPathuis 1:d27a7e06c233 155 0x00, //
GerritPathuis 1:d27a7e06c233 156 0x00, //
GerritPathuis 1:d27a7e06c233 157
GerritPathuis 1:d27a7e06c233 158 // @88 '+' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 159 0x00, //
GerritPathuis 1:d27a7e06c233 160 0x20, // #
GerritPathuis 1:d27a7e06c233 161 0x20, // #
GerritPathuis 1:d27a7e06c233 162 0xF8, // #####
GerritPathuis 1:d27a7e06c233 163 0x20, // #
GerritPathuis 1:d27a7e06c233 164 0x20, // #
GerritPathuis 1:d27a7e06c233 165 0x00, //
GerritPathuis 1:d27a7e06c233 166 0x00, //
GerritPathuis 1:d27a7e06c233 167
GerritPathuis 1:d27a7e06c233 168 // @96 ',' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 169 0x00, //
GerritPathuis 1:d27a7e06c233 170 0x00, //
GerritPathuis 1:d27a7e06c233 171 0x00, //
GerritPathuis 1:d27a7e06c233 172 0x00, //
GerritPathuis 1:d27a7e06c233 173 0x10, // #
GerritPathuis 1:d27a7e06c233 174 0x20, // #
GerritPathuis 1:d27a7e06c233 175 0x20, // #
GerritPathuis 1:d27a7e06c233 176 0x00, //
GerritPathuis 1:d27a7e06c233 177
GerritPathuis 1:d27a7e06c233 178 // @104 '-' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 179 0x00, //
GerritPathuis 1:d27a7e06c233 180 0x00, //
GerritPathuis 1:d27a7e06c233 181 0x00, //
GerritPathuis 1:d27a7e06c233 182 0x70, // ###
GerritPathuis 1:d27a7e06c233 183 0x00, //
GerritPathuis 1:d27a7e06c233 184 0x00, //
GerritPathuis 1:d27a7e06c233 185 0x00, //
GerritPathuis 1:d27a7e06c233 186 0x00, //
GerritPathuis 1:d27a7e06c233 187
GerritPathuis 1:d27a7e06c233 188 // @112 '.' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 189 0x00, //
GerritPathuis 1:d27a7e06c233 190 0x00, //
GerritPathuis 1:d27a7e06c233 191 0x00, //
GerritPathuis 1:d27a7e06c233 192 0x00, //
GerritPathuis 1:d27a7e06c233 193 0x00, //
GerritPathuis 1:d27a7e06c233 194 0x20, // #
GerritPathuis 1:d27a7e06c233 195 0x00, //
GerritPathuis 1:d27a7e06c233 196 0x00, //
GerritPathuis 1:d27a7e06c233 197
GerritPathuis 1:d27a7e06c233 198 // @120 '/' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 199 0x10, // #
GerritPathuis 1:d27a7e06c233 200 0x20, // #
GerritPathuis 1:d27a7e06c233 201 0x20, // #
GerritPathuis 1:d27a7e06c233 202 0x20, // #
GerritPathuis 1:d27a7e06c233 203 0x40, // #
GerritPathuis 1:d27a7e06c233 204 0x40, // #
GerritPathuis 1:d27a7e06c233 205 0x80, // #
GerritPathuis 1:d27a7e06c233 206 0x00, //
GerritPathuis 1:d27a7e06c233 207
GerritPathuis 1:d27a7e06c233 208 // @128 '0' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 209 0x20, // #
GerritPathuis 1:d27a7e06c233 210 0x50, // # #
GerritPathuis 1:d27a7e06c233 211 0x50, // # #
GerritPathuis 1:d27a7e06c233 212 0x50, // # #
GerritPathuis 1:d27a7e06c233 213 0x50, // # #
GerritPathuis 1:d27a7e06c233 214 0x20, // #
GerritPathuis 1:d27a7e06c233 215 0x00, //
GerritPathuis 1:d27a7e06c233 216 0x00, //
GerritPathuis 1:d27a7e06c233 217
GerritPathuis 1:d27a7e06c233 218 // @136 '1' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 219 0x60, // ##
GerritPathuis 1:d27a7e06c233 220 0x20, // #
GerritPathuis 1:d27a7e06c233 221 0x20, // #
GerritPathuis 1:d27a7e06c233 222 0x20, // #
GerritPathuis 1:d27a7e06c233 223 0x20, // #
GerritPathuis 1:d27a7e06c233 224 0xF8, // #####
GerritPathuis 1:d27a7e06c233 225 0x00, //
GerritPathuis 1:d27a7e06c233 226 0x00, //
GerritPathuis 1:d27a7e06c233 227
GerritPathuis 1:d27a7e06c233 228 // @144 '2' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 229 0x20, // #
GerritPathuis 1:d27a7e06c233 230 0x50, // # #
GerritPathuis 1:d27a7e06c233 231 0x20, // #
GerritPathuis 1:d27a7e06c233 232 0x20, // #
GerritPathuis 1:d27a7e06c233 233 0x40, // #
GerritPathuis 1:d27a7e06c233 234 0x70, // ###
GerritPathuis 1:d27a7e06c233 235 0x00, //
GerritPathuis 1:d27a7e06c233 236 0x00, //
GerritPathuis 1:d27a7e06c233 237
GerritPathuis 1:d27a7e06c233 238 // @152 '3' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 239 0x20, // #
GerritPathuis 1:d27a7e06c233 240 0x50, // # #
GerritPathuis 1:d27a7e06c233 241 0x10, // #
GerritPathuis 1:d27a7e06c233 242 0x20, // #
GerritPathuis 1:d27a7e06c233 243 0x10, // #
GerritPathuis 1:d27a7e06c233 244 0x60, // ##
GerritPathuis 1:d27a7e06c233 245 0x00, //
GerritPathuis 1:d27a7e06c233 246 0x00, //
GerritPathuis 1:d27a7e06c233 247
GerritPathuis 1:d27a7e06c233 248 // @160 '4' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 249 0x10, // #
GerritPathuis 1:d27a7e06c233 250 0x30, // ##
GerritPathuis 1:d27a7e06c233 251 0x50, // # #
GerritPathuis 1:d27a7e06c233 252 0x78, // ####
GerritPathuis 1:d27a7e06c233 253 0x10, // #
GerritPathuis 1:d27a7e06c233 254 0x38, // ###
GerritPathuis 1:d27a7e06c233 255 0x00, //
GerritPathuis 1:d27a7e06c233 256 0x00, //
GerritPathuis 1:d27a7e06c233 257
GerritPathuis 1:d27a7e06c233 258 // @168 '5' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 259 0x70, // ###
GerritPathuis 1:d27a7e06c233 260 0x40, // #
GerritPathuis 1:d27a7e06c233 261 0x60, // ##
GerritPathuis 1:d27a7e06c233 262 0x10, // #
GerritPathuis 1:d27a7e06c233 263 0x50, // # #
GerritPathuis 1:d27a7e06c233 264 0x20, // #
GerritPathuis 1:d27a7e06c233 265 0x00, //
GerritPathuis 1:d27a7e06c233 266 0x00, //
GerritPathuis 1:d27a7e06c233 267
GerritPathuis 1:d27a7e06c233 268 // @176 '6' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 269 0x30, // ##
GerritPathuis 1:d27a7e06c233 270 0x40, // #
GerritPathuis 1:d27a7e06c233 271 0x60, // ##
GerritPathuis 1:d27a7e06c233 272 0x50, // # #
GerritPathuis 1:d27a7e06c233 273 0x50, // # #
GerritPathuis 1:d27a7e06c233 274 0x60, // ##
GerritPathuis 1:d27a7e06c233 275 0x00, //
GerritPathuis 1:d27a7e06c233 276 0x00, //
GerritPathuis 1:d27a7e06c233 277
GerritPathuis 1:d27a7e06c233 278 // @184 '7' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 279 0x70, // ###
GerritPathuis 1:d27a7e06c233 280 0x50, // # #
GerritPathuis 1:d27a7e06c233 281 0x10, // #
GerritPathuis 1:d27a7e06c233 282 0x20, // #
GerritPathuis 1:d27a7e06c233 283 0x20, // #
GerritPathuis 1:d27a7e06c233 284 0x20, // #
GerritPathuis 1:d27a7e06c233 285 0x00, //
GerritPathuis 1:d27a7e06c233 286 0x00, //
GerritPathuis 1:d27a7e06c233 287
GerritPathuis 1:d27a7e06c233 288 // @192 '8' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 289 0x20, // #
GerritPathuis 1:d27a7e06c233 290 0x50, // # #
GerritPathuis 1:d27a7e06c233 291 0x20, // #
GerritPathuis 1:d27a7e06c233 292 0x50, // # #
GerritPathuis 1:d27a7e06c233 293 0x50, // # #
GerritPathuis 1:d27a7e06c233 294 0x20, // #
GerritPathuis 1:d27a7e06c233 295 0x00, //
GerritPathuis 1:d27a7e06c233 296 0x00, //
GerritPathuis 1:d27a7e06c233 297
GerritPathuis 1:d27a7e06c233 298 // @200 '9' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 299 0x30, // ##
GerritPathuis 1:d27a7e06c233 300 0x50, // # #
GerritPathuis 1:d27a7e06c233 301 0x50, // # #
GerritPathuis 1:d27a7e06c233 302 0x30, // ##
GerritPathuis 1:d27a7e06c233 303 0x10, // #
GerritPathuis 1:d27a7e06c233 304 0x60, // ##
GerritPathuis 1:d27a7e06c233 305 0x00, //
GerritPathuis 1:d27a7e06c233 306 0x00, //
GerritPathuis 1:d27a7e06c233 307
GerritPathuis 1:d27a7e06c233 308 // @208 ':' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 309 0x00, //
GerritPathuis 1:d27a7e06c233 310 0x00, //
GerritPathuis 1:d27a7e06c233 311 0x20, // #
GerritPathuis 1:d27a7e06c233 312 0x00, //
GerritPathuis 1:d27a7e06c233 313 0x00, //
GerritPathuis 1:d27a7e06c233 314 0x20, // #
GerritPathuis 1:d27a7e06c233 315 0x00, //
GerritPathuis 1:d27a7e06c233 316 0x00, //
GerritPathuis 1:d27a7e06c233 317
GerritPathuis 1:d27a7e06c233 318 // @216 ';' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 319 0x00, //
GerritPathuis 1:d27a7e06c233 320 0x00, //
GerritPathuis 1:d27a7e06c233 321 0x10, // #
GerritPathuis 1:d27a7e06c233 322 0x00, //
GerritPathuis 1:d27a7e06c233 323 0x10, // #
GerritPathuis 1:d27a7e06c233 324 0x20, // #
GerritPathuis 1:d27a7e06c233 325 0x00, //
GerritPathuis 1:d27a7e06c233 326 0x00, //
GerritPathuis 1:d27a7e06c233 327
GerritPathuis 1:d27a7e06c233 328 // @224 '<' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 329 0x00, //
GerritPathuis 1:d27a7e06c233 330 0x10, // #
GerritPathuis 1:d27a7e06c233 331 0x20, // #
GerritPathuis 1:d27a7e06c233 332 0xC0, // ##
GerritPathuis 1:d27a7e06c233 333 0x20, // #
GerritPathuis 1:d27a7e06c233 334 0x10, // #
GerritPathuis 1:d27a7e06c233 335 0x00, //
GerritPathuis 1:d27a7e06c233 336 0x00, //
GerritPathuis 1:d27a7e06c233 337
GerritPathuis 1:d27a7e06c233 338 // @232 '=' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 339 0x00, //
GerritPathuis 1:d27a7e06c233 340 0x70, // ###
GerritPathuis 1:d27a7e06c233 341 0x00, //
GerritPathuis 1:d27a7e06c233 342 0x70, // ###
GerritPathuis 1:d27a7e06c233 343 0x00, //
GerritPathuis 1:d27a7e06c233 344 0x00, //
GerritPathuis 1:d27a7e06c233 345 0x00, //
GerritPathuis 1:d27a7e06c233 346 0x00, //
GerritPathuis 1:d27a7e06c233 347
GerritPathuis 1:d27a7e06c233 348 // @240 '>' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 349 0x00, //
GerritPathuis 1:d27a7e06c233 350 0x40, // #
GerritPathuis 1:d27a7e06c233 351 0x20, // #
GerritPathuis 1:d27a7e06c233 352 0x18, // ##
GerritPathuis 1:d27a7e06c233 353 0x20, // #
GerritPathuis 1:d27a7e06c233 354 0x40, // #
GerritPathuis 1:d27a7e06c233 355 0x00, //
GerritPathuis 1:d27a7e06c233 356 0x00, //
GerritPathuis 1:d27a7e06c233 357
GerritPathuis 1:d27a7e06c233 358 // @248 '?' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 359 0x20, // #
GerritPathuis 1:d27a7e06c233 360 0x50, // # #
GerritPathuis 1:d27a7e06c233 361 0x10, // #
GerritPathuis 1:d27a7e06c233 362 0x20, // #
GerritPathuis 1:d27a7e06c233 363 0x00, //
GerritPathuis 1:d27a7e06c233 364 0x20, // #
GerritPathuis 1:d27a7e06c233 365 0x00, //
GerritPathuis 1:d27a7e06c233 366 0x00, //
GerritPathuis 1:d27a7e06c233 367
GerritPathuis 1:d27a7e06c233 368 // @256 '@' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 369 0x30, // ##
GerritPathuis 1:d27a7e06c233 370 0x48, // # #
GerritPathuis 1:d27a7e06c233 371 0x48, // # #
GerritPathuis 1:d27a7e06c233 372 0x58, // # ##
GerritPathuis 1:d27a7e06c233 373 0x48, // # #
GerritPathuis 1:d27a7e06c233 374 0x40, // #
GerritPathuis 1:d27a7e06c233 375 0x38, // ###
GerritPathuis 1:d27a7e06c233 376 0x00, //
GerritPathuis 1:d27a7e06c233 377
GerritPathuis 1:d27a7e06c233 378 // @264 'A' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 379 0x60, // ##
GerritPathuis 1:d27a7e06c233 380 0x20, // #
GerritPathuis 1:d27a7e06c233 381 0x50, // # #
GerritPathuis 1:d27a7e06c233 382 0x70, // ###
GerritPathuis 1:d27a7e06c233 383 0x88, // # #
GerritPathuis 1:d27a7e06c233 384 0xD8, // ## ##
GerritPathuis 1:d27a7e06c233 385 0x00, //
GerritPathuis 1:d27a7e06c233 386 0x00, //
GerritPathuis 1:d27a7e06c233 387
GerritPathuis 1:d27a7e06c233 388 // @272 'B' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 389 0xF0, // ####
GerritPathuis 1:d27a7e06c233 390 0x48, // # #
GerritPathuis 1:d27a7e06c233 391 0x70, // ###
GerritPathuis 1:d27a7e06c233 392 0x48, // # #
GerritPathuis 1:d27a7e06c233 393 0x48, // # #
GerritPathuis 1:d27a7e06c233 394 0xF0, // ####
GerritPathuis 1:d27a7e06c233 395 0x00, //
GerritPathuis 1:d27a7e06c233 396 0x00, //
GerritPathuis 1:d27a7e06c233 397
GerritPathuis 1:d27a7e06c233 398 // @280 'C' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 399 0x70, // ###
GerritPathuis 1:d27a7e06c233 400 0x50, // # #
GerritPathuis 1:d27a7e06c233 401 0x40, // #
GerritPathuis 1:d27a7e06c233 402 0x40, // #
GerritPathuis 1:d27a7e06c233 403 0x40, // #
GerritPathuis 1:d27a7e06c233 404 0x30, // ##
GerritPathuis 1:d27a7e06c233 405 0x00, //
GerritPathuis 1:d27a7e06c233 406 0x00, //
GerritPathuis 1:d27a7e06c233 407
GerritPathuis 1:d27a7e06c233 408 // @288 'D' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 409 0xF0, // ####
GerritPathuis 1:d27a7e06c233 410 0x48, // # #
GerritPathuis 1:d27a7e06c233 411 0x48, // # #
GerritPathuis 1:d27a7e06c233 412 0x48, // # #
GerritPathuis 1:d27a7e06c233 413 0x48, // # #
GerritPathuis 1:d27a7e06c233 414 0xF0, // ####
GerritPathuis 1:d27a7e06c233 415 0x00, //
GerritPathuis 1:d27a7e06c233 416 0x00, //
GerritPathuis 1:d27a7e06c233 417
GerritPathuis 1:d27a7e06c233 418 // @296 'E' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 419 0xF8, // #####
GerritPathuis 1:d27a7e06c233 420 0x48, // # #
GerritPathuis 1:d27a7e06c233 421 0x60, // ##
GerritPathuis 1:d27a7e06c233 422 0x40, // #
GerritPathuis 1:d27a7e06c233 423 0x48, // # #
GerritPathuis 1:d27a7e06c233 424 0xF8, // #####
GerritPathuis 1:d27a7e06c233 425 0x00, //
GerritPathuis 1:d27a7e06c233 426 0x00, //
GerritPathuis 1:d27a7e06c233 427
GerritPathuis 1:d27a7e06c233 428 // @304 'F' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 429 0xF8, // #####
GerritPathuis 1:d27a7e06c233 430 0x48, // # #
GerritPathuis 1:d27a7e06c233 431 0x60, // ##
GerritPathuis 1:d27a7e06c233 432 0x40, // #
GerritPathuis 1:d27a7e06c233 433 0x40, // #
GerritPathuis 1:d27a7e06c233 434 0xE0, // ###
GerritPathuis 1:d27a7e06c233 435 0x00, //
GerritPathuis 1:d27a7e06c233 436 0x00, //
GerritPathuis 1:d27a7e06c233 437
GerritPathuis 1:d27a7e06c233 438 // @312 'G' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 439 0x70, // ###
GerritPathuis 1:d27a7e06c233 440 0x40, // #
GerritPathuis 1:d27a7e06c233 441 0x40, // #
GerritPathuis 1:d27a7e06c233 442 0x58, // # ##
GerritPathuis 1:d27a7e06c233 443 0x50, // # #
GerritPathuis 1:d27a7e06c233 444 0x30, // ##
GerritPathuis 1:d27a7e06c233 445 0x00, //
GerritPathuis 1:d27a7e06c233 446 0x00, //
GerritPathuis 1:d27a7e06c233 447
GerritPathuis 1:d27a7e06c233 448 // @320 'H' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 449 0xE8, // ### #
GerritPathuis 1:d27a7e06c233 450 0x48, // # #
GerritPathuis 1:d27a7e06c233 451 0x78, // ####
GerritPathuis 1:d27a7e06c233 452 0x48, // # #
GerritPathuis 1:d27a7e06c233 453 0x48, // # #
GerritPathuis 1:d27a7e06c233 454 0xE8, // ### #
GerritPathuis 1:d27a7e06c233 455 0x00, //
GerritPathuis 1:d27a7e06c233 456 0x00, //
GerritPathuis 1:d27a7e06c233 457
GerritPathuis 1:d27a7e06c233 458 // @328 'I' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 459 0x70, // ###
GerritPathuis 1:d27a7e06c233 460 0x20, // #
GerritPathuis 1:d27a7e06c233 461 0x20, // #
GerritPathuis 1:d27a7e06c233 462 0x20, // #
GerritPathuis 1:d27a7e06c233 463 0x20, // #
GerritPathuis 1:d27a7e06c233 464 0x70, // ###
GerritPathuis 1:d27a7e06c233 465 0x00, //
GerritPathuis 1:d27a7e06c233 466 0x00, //
GerritPathuis 1:d27a7e06c233 467
GerritPathuis 1:d27a7e06c233 468 // @336 'J' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 469 0x38, // ###
GerritPathuis 1:d27a7e06c233 470 0x10, // #
GerritPathuis 1:d27a7e06c233 471 0x10, // #
GerritPathuis 1:d27a7e06c233 472 0x50, // # #
GerritPathuis 1:d27a7e06c233 473 0x50, // # #
GerritPathuis 1:d27a7e06c233 474 0x20, // #
GerritPathuis 1:d27a7e06c233 475 0x00, //
GerritPathuis 1:d27a7e06c233 476 0x00, //
GerritPathuis 1:d27a7e06c233 477
GerritPathuis 1:d27a7e06c233 478 // @344 'K' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 479 0xD8, // ## ##
GerritPathuis 1:d27a7e06c233 480 0x50, // # #
GerritPathuis 1:d27a7e06c233 481 0x60, // ##
GerritPathuis 1:d27a7e06c233 482 0x70, // ###
GerritPathuis 1:d27a7e06c233 483 0x50, // # #
GerritPathuis 1:d27a7e06c233 484 0xD8, // ## ##
GerritPathuis 1:d27a7e06c233 485 0x00, //
GerritPathuis 1:d27a7e06c233 486 0x00, //
GerritPathuis 1:d27a7e06c233 487
GerritPathuis 1:d27a7e06c233 488 // @352 'L' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 489 0xE0, // ###
GerritPathuis 1:d27a7e06c233 490 0x40, // #
GerritPathuis 1:d27a7e06c233 491 0x40, // #
GerritPathuis 1:d27a7e06c233 492 0x40, // #
GerritPathuis 1:d27a7e06c233 493 0x48, // # #
GerritPathuis 1:d27a7e06c233 494 0xF8, // #####
GerritPathuis 1:d27a7e06c233 495 0x00, //
GerritPathuis 1:d27a7e06c233 496 0x00, //
GerritPathuis 1:d27a7e06c233 497
GerritPathuis 1:d27a7e06c233 498 // @360 'M' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 499 0xD8, // ## ##
GerritPathuis 1:d27a7e06c233 500 0xD8, // ## ##
GerritPathuis 1:d27a7e06c233 501 0xD8, // ## ##
GerritPathuis 1:d27a7e06c233 502 0xA8, // # # #
GerritPathuis 1:d27a7e06c233 503 0x88, // # #
GerritPathuis 1:d27a7e06c233 504 0xD8, // ## ##
GerritPathuis 1:d27a7e06c233 505 0x00, //
GerritPathuis 1:d27a7e06c233 506 0x00, //
GerritPathuis 1:d27a7e06c233 507
GerritPathuis 1:d27a7e06c233 508 // @368 'N' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 509 0xD8, // ## ##
GerritPathuis 1:d27a7e06c233 510 0x68, // ## #
GerritPathuis 1:d27a7e06c233 511 0x68, // ## #
GerritPathuis 1:d27a7e06c233 512 0x58, // # ##
GerritPathuis 1:d27a7e06c233 513 0x58, // # ##
GerritPathuis 1:d27a7e06c233 514 0xE8, // ### #
GerritPathuis 1:d27a7e06c233 515 0x00, //
GerritPathuis 1:d27a7e06c233 516 0x00, //
GerritPathuis 1:d27a7e06c233 517
GerritPathuis 1:d27a7e06c233 518 // @376 'O' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 519 0x30, // ##
GerritPathuis 1:d27a7e06c233 520 0x48, // # #
GerritPathuis 1:d27a7e06c233 521 0x48, // # #
GerritPathuis 1:d27a7e06c233 522 0x48, // # #
GerritPathuis 1:d27a7e06c233 523 0x48, // # #
GerritPathuis 1:d27a7e06c233 524 0x30, // ##
GerritPathuis 1:d27a7e06c233 525 0x00, //
GerritPathuis 1:d27a7e06c233 526 0x00, //
GerritPathuis 1:d27a7e06c233 527
GerritPathuis 1:d27a7e06c233 528 // @384 'P' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 529 0xF0, // ####
GerritPathuis 1:d27a7e06c233 530 0x48, // # #
GerritPathuis 1:d27a7e06c233 531 0x48, // # #
GerritPathuis 1:d27a7e06c233 532 0x70, // ###
GerritPathuis 1:d27a7e06c233 533 0x40, // #
GerritPathuis 1:d27a7e06c233 534 0xE0, // ###
GerritPathuis 1:d27a7e06c233 535 0x00, //
GerritPathuis 1:d27a7e06c233 536 0x00, //
GerritPathuis 1:d27a7e06c233 537
GerritPathuis 1:d27a7e06c233 538 // @392 'Q' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 539 0x30, // ##
GerritPathuis 1:d27a7e06c233 540 0x48, // # #
GerritPathuis 1:d27a7e06c233 541 0x48, // # #
GerritPathuis 1:d27a7e06c233 542 0x48, // # #
GerritPathuis 1:d27a7e06c233 543 0x48, // # #
GerritPathuis 1:d27a7e06c233 544 0x30, // ##
GerritPathuis 1:d27a7e06c233 545 0x18, // ##
GerritPathuis 1:d27a7e06c233 546 0x00, //
GerritPathuis 1:d27a7e06c233 547
GerritPathuis 1:d27a7e06c233 548 // @400 'R' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 549 0xF0, // ####
GerritPathuis 1:d27a7e06c233 550 0x48, // # #
GerritPathuis 1:d27a7e06c233 551 0x48, // # #
GerritPathuis 1:d27a7e06c233 552 0x70, // ###
GerritPathuis 1:d27a7e06c233 553 0x48, // # #
GerritPathuis 1:d27a7e06c233 554 0xE8, // ### #
GerritPathuis 1:d27a7e06c233 555 0x00, //
GerritPathuis 1:d27a7e06c233 556 0x00, //
GerritPathuis 1:d27a7e06c233 557
GerritPathuis 1:d27a7e06c233 558 // @408 'S' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 559 0x70, // ###
GerritPathuis 1:d27a7e06c233 560 0x50, // # #
GerritPathuis 1:d27a7e06c233 561 0x20, // #
GerritPathuis 1:d27a7e06c233 562 0x10, // #
GerritPathuis 1:d27a7e06c233 563 0x50, // # #
GerritPathuis 1:d27a7e06c233 564 0x70, // ###
GerritPathuis 1:d27a7e06c233 565 0x00, //
GerritPathuis 1:d27a7e06c233 566 0x00, //
GerritPathuis 1:d27a7e06c233 567
GerritPathuis 1:d27a7e06c233 568 // @416 'T' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 569 0xF8, // #####
GerritPathuis 1:d27a7e06c233 570 0xA8, // # # #
GerritPathuis 1:d27a7e06c233 571 0x20, // #
GerritPathuis 1:d27a7e06c233 572 0x20, // #
GerritPathuis 1:d27a7e06c233 573 0x20, // #
GerritPathuis 1:d27a7e06c233 574 0x70, // ###
GerritPathuis 1:d27a7e06c233 575 0x00, //
GerritPathuis 1:d27a7e06c233 576 0x00, //
GerritPathuis 1:d27a7e06c233 577
GerritPathuis 1:d27a7e06c233 578 // @424 'U' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 579 0xD8, // ## ##
GerritPathuis 1:d27a7e06c233 580 0x48, // # #
GerritPathuis 1:d27a7e06c233 581 0x48, // # #
GerritPathuis 1:d27a7e06c233 582 0x48, // # #
GerritPathuis 1:d27a7e06c233 583 0x48, // # #
GerritPathuis 1:d27a7e06c233 584 0x30, // ##
GerritPathuis 1:d27a7e06c233 585 0x00, //
GerritPathuis 1:d27a7e06c233 586 0x00, //
GerritPathuis 1:d27a7e06c233 587
GerritPathuis 1:d27a7e06c233 588 // @432 'V' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 589 0xD8, // ## ##
GerritPathuis 1:d27a7e06c233 590 0x88, // # #
GerritPathuis 1:d27a7e06c233 591 0x48, // # #
GerritPathuis 1:d27a7e06c233 592 0x50, // # #
GerritPathuis 1:d27a7e06c233 593 0x50, // # #
GerritPathuis 1:d27a7e06c233 594 0x30, // ##
GerritPathuis 1:d27a7e06c233 595 0x00, //
GerritPathuis 1:d27a7e06c233 596 0x00, //
GerritPathuis 1:d27a7e06c233 597
GerritPathuis 1:d27a7e06c233 598 // @440 'W' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 599 0xD8, // ## ##
GerritPathuis 1:d27a7e06c233 600 0x88, // # #
GerritPathuis 1:d27a7e06c233 601 0xA8, // # # #
GerritPathuis 1:d27a7e06c233 602 0xA8, // # # #
GerritPathuis 1:d27a7e06c233 603 0xA8, // # # #
GerritPathuis 1:d27a7e06c233 604 0x50, // # #
GerritPathuis 1:d27a7e06c233 605 0x00, //
GerritPathuis 1:d27a7e06c233 606 0x00, //
GerritPathuis 1:d27a7e06c233 607
GerritPathuis 1:d27a7e06c233 608 // @448 'X' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 609 0xD8, // ## ##
GerritPathuis 1:d27a7e06c233 610 0x50, // # #
GerritPathuis 1:d27a7e06c233 611 0x20, // #
GerritPathuis 1:d27a7e06c233 612 0x20, // #
GerritPathuis 1:d27a7e06c233 613 0x50, // # #
GerritPathuis 1:d27a7e06c233 614 0xD8, // ## ##
GerritPathuis 1:d27a7e06c233 615 0x00, //
GerritPathuis 1:d27a7e06c233 616 0x00, //
GerritPathuis 1:d27a7e06c233 617
GerritPathuis 1:d27a7e06c233 618 // @456 'Y' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 619 0xD8, // ## ##
GerritPathuis 1:d27a7e06c233 620 0x88, // # #
GerritPathuis 1:d27a7e06c233 621 0x50, // # #
GerritPathuis 1:d27a7e06c233 622 0x20, // #
GerritPathuis 1:d27a7e06c233 623 0x20, // #
GerritPathuis 1:d27a7e06c233 624 0x70, // ###
GerritPathuis 1:d27a7e06c233 625 0x00, //
GerritPathuis 1:d27a7e06c233 626 0x00, //
GerritPathuis 1:d27a7e06c233 627
GerritPathuis 1:d27a7e06c233 628 // @464 'Z' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 629 0x78, // ####
GerritPathuis 1:d27a7e06c233 630 0x48, // # #
GerritPathuis 1:d27a7e06c233 631 0x10, // #
GerritPathuis 1:d27a7e06c233 632 0x20, // #
GerritPathuis 1:d27a7e06c233 633 0x48, // # #
GerritPathuis 1:d27a7e06c233 634 0x78, // ####
GerritPathuis 1:d27a7e06c233 635 0x00, //
GerritPathuis 1:d27a7e06c233 636 0x00, //
GerritPathuis 1:d27a7e06c233 637
GerritPathuis 1:d27a7e06c233 638 // @472 '[' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 639 0x30, // ##
GerritPathuis 1:d27a7e06c233 640 0x20, // #
GerritPathuis 1:d27a7e06c233 641 0x20, // #
GerritPathuis 1:d27a7e06c233 642 0x20, // #
GerritPathuis 1:d27a7e06c233 643 0x20, // #
GerritPathuis 1:d27a7e06c233 644 0x20, // #
GerritPathuis 1:d27a7e06c233 645 0x30, // ##
GerritPathuis 1:d27a7e06c233 646 0x00, //
GerritPathuis 1:d27a7e06c233 647
GerritPathuis 1:d27a7e06c233 648 // @480 '\' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 649 0x80, // #
GerritPathuis 1:d27a7e06c233 650 0x40, // #
GerritPathuis 1:d27a7e06c233 651 0x40, // #
GerritPathuis 1:d27a7e06c233 652 0x20, // #
GerritPathuis 1:d27a7e06c233 653 0x20, // #
GerritPathuis 1:d27a7e06c233 654 0x20, // #
GerritPathuis 1:d27a7e06c233 655 0x10, // #
GerritPathuis 1:d27a7e06c233 656 0x00, //
GerritPathuis 1:d27a7e06c233 657
GerritPathuis 1:d27a7e06c233 658 // @488 ']' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 659 0x60, // ##
GerritPathuis 1:d27a7e06c233 660 0x20, // #
GerritPathuis 1:d27a7e06c233 661 0x20, // #
GerritPathuis 1:d27a7e06c233 662 0x20, // #
GerritPathuis 1:d27a7e06c233 663 0x20, // #
GerritPathuis 1:d27a7e06c233 664 0x20, // #
GerritPathuis 1:d27a7e06c233 665 0x60, // ##
GerritPathuis 1:d27a7e06c233 666 0x00, //
GerritPathuis 1:d27a7e06c233 667
GerritPathuis 1:d27a7e06c233 668 // @496 '^' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 669 0x20, // #
GerritPathuis 1:d27a7e06c233 670 0x20, // #
GerritPathuis 1:d27a7e06c233 671 0x50, // # #
GerritPathuis 1:d27a7e06c233 672 0x00, //
GerritPathuis 1:d27a7e06c233 673 0x00, //
GerritPathuis 1:d27a7e06c233 674 0x00, //
GerritPathuis 1:d27a7e06c233 675 0x00, //
GerritPathuis 1:d27a7e06c233 676 0x00, //
GerritPathuis 1:d27a7e06c233 677
GerritPathuis 1:d27a7e06c233 678 // @504 '_' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 679 0x00, //
GerritPathuis 1:d27a7e06c233 680 0x00, //
GerritPathuis 1:d27a7e06c233 681 0x00, //
GerritPathuis 1:d27a7e06c233 682 0x00, //
GerritPathuis 1:d27a7e06c233 683 0x00, //
GerritPathuis 1:d27a7e06c233 684 0x00, //
GerritPathuis 1:d27a7e06c233 685 0x00, //
GerritPathuis 1:d27a7e06c233 686 0xF8, // #####
GerritPathuis 1:d27a7e06c233 687
GerritPathuis 1:d27a7e06c233 688 // @512 '`' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 689 0x20, // #
GerritPathuis 1:d27a7e06c233 690 0x10, // #
GerritPathuis 1:d27a7e06c233 691 0x00, //
GerritPathuis 1:d27a7e06c233 692 0x00, //
GerritPathuis 1:d27a7e06c233 693 0x00, //
GerritPathuis 1:d27a7e06c233 694 0x00, //
GerritPathuis 1:d27a7e06c233 695 0x00, //
GerritPathuis 1:d27a7e06c233 696 0x00, //
GerritPathuis 1:d27a7e06c233 697
GerritPathuis 1:d27a7e06c233 698 // @520 'a' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 699 0x00, //
GerritPathuis 1:d27a7e06c233 700 0x00, //
GerritPathuis 1:d27a7e06c233 701 0x30, // ##
GerritPathuis 1:d27a7e06c233 702 0x10, // #
GerritPathuis 1:d27a7e06c233 703 0x70, // ###
GerritPathuis 1:d27a7e06c233 704 0x78, // ####
GerritPathuis 1:d27a7e06c233 705 0x00, //
GerritPathuis 1:d27a7e06c233 706 0x00, //
GerritPathuis 1:d27a7e06c233 707
GerritPathuis 1:d27a7e06c233 708 // @528 'b' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 709 0xC0, // ##
GerritPathuis 1:d27a7e06c233 710 0x40, // #
GerritPathuis 1:d27a7e06c233 711 0x70, // ###
GerritPathuis 1:d27a7e06c233 712 0x48, // # #
GerritPathuis 1:d27a7e06c233 713 0x48, // # #
GerritPathuis 1:d27a7e06c233 714 0xF0, // ####
GerritPathuis 1:d27a7e06c233 715 0x00, //
GerritPathuis 1:d27a7e06c233 716 0x00, //
GerritPathuis 1:d27a7e06c233 717
GerritPathuis 1:d27a7e06c233 718 // @536 'c' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 719 0x00, //
GerritPathuis 1:d27a7e06c233 720 0x00, //
GerritPathuis 1:d27a7e06c233 721 0x70, // ###
GerritPathuis 1:d27a7e06c233 722 0x40, // #
GerritPathuis 1:d27a7e06c233 723 0x40, // #
GerritPathuis 1:d27a7e06c233 724 0x70, // ###
GerritPathuis 1:d27a7e06c233 725 0x00, //
GerritPathuis 1:d27a7e06c233 726 0x00, //
GerritPathuis 1:d27a7e06c233 727
GerritPathuis 1:d27a7e06c233 728 // @544 'd' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 729 0x18, // ##
GerritPathuis 1:d27a7e06c233 730 0x08, // #
GerritPathuis 1:d27a7e06c233 731 0x38, // ###
GerritPathuis 1:d27a7e06c233 732 0x48, // # #
GerritPathuis 1:d27a7e06c233 733 0x48, // # #
GerritPathuis 1:d27a7e06c233 734 0x38, // ###
GerritPathuis 1:d27a7e06c233 735 0x00, //
GerritPathuis 1:d27a7e06c233 736 0x00, //
GerritPathuis 1:d27a7e06c233 737
GerritPathuis 1:d27a7e06c233 738 // @552 'e' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 739 0x00, //
GerritPathuis 1:d27a7e06c233 740 0x00, //
GerritPathuis 1:d27a7e06c233 741 0x70, // ###
GerritPathuis 1:d27a7e06c233 742 0x70, // ###
GerritPathuis 1:d27a7e06c233 743 0x40, // #
GerritPathuis 1:d27a7e06c233 744 0x30, // ##
GerritPathuis 1:d27a7e06c233 745 0x00, //
GerritPathuis 1:d27a7e06c233 746 0x00, //
GerritPathuis 1:d27a7e06c233 747
GerritPathuis 1:d27a7e06c233 748 // @560 'f' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 749 0x10, // #
GerritPathuis 1:d27a7e06c233 750 0x20, // #
GerritPathuis 1:d27a7e06c233 751 0x70, // ###
GerritPathuis 1:d27a7e06c233 752 0x20, // #
GerritPathuis 1:d27a7e06c233 753 0x20, // #
GerritPathuis 1:d27a7e06c233 754 0x70, // ###
GerritPathuis 1:d27a7e06c233 755 0x00, //
GerritPathuis 1:d27a7e06c233 756 0x00, //
GerritPathuis 1:d27a7e06c233 757
GerritPathuis 1:d27a7e06c233 758 // @568 'g' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 759 0x00, //
GerritPathuis 1:d27a7e06c233 760 0x00, //
GerritPathuis 1:d27a7e06c233 761 0x38, // ###
GerritPathuis 1:d27a7e06c233 762 0x48, // # #
GerritPathuis 1:d27a7e06c233 763 0x48, // # #
GerritPathuis 1:d27a7e06c233 764 0x38, // ###
GerritPathuis 1:d27a7e06c233 765 0x08, // #
GerritPathuis 1:d27a7e06c233 766 0x30, // ##
GerritPathuis 1:d27a7e06c233 767
GerritPathuis 1:d27a7e06c233 768 // @576 'h' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 769 0xC0, // ##
GerritPathuis 1:d27a7e06c233 770 0x40, // #
GerritPathuis 1:d27a7e06c233 771 0x70, // ###
GerritPathuis 1:d27a7e06c233 772 0x48, // # #
GerritPathuis 1:d27a7e06c233 773 0x48, // # #
GerritPathuis 1:d27a7e06c233 774 0xE8, // ### #
GerritPathuis 1:d27a7e06c233 775 0x00, //
GerritPathuis 1:d27a7e06c233 776 0x00, //
GerritPathuis 1:d27a7e06c233 777
GerritPathuis 1:d27a7e06c233 778 // @584 'i' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 779 0x20, // #
GerritPathuis 1:d27a7e06c233 780 0x00, //
GerritPathuis 1:d27a7e06c233 781 0x60, // ##
GerritPathuis 1:d27a7e06c233 782 0x20, // #
GerritPathuis 1:d27a7e06c233 783 0x20, // #
GerritPathuis 1:d27a7e06c233 784 0x70, // ###
GerritPathuis 1:d27a7e06c233 785 0x00, //
GerritPathuis 1:d27a7e06c233 786 0x00, //
GerritPathuis 1:d27a7e06c233 787
GerritPathuis 1:d27a7e06c233 788 // @592 'j' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 789 0x20, // #
GerritPathuis 1:d27a7e06c233 790 0x00, //
GerritPathuis 1:d27a7e06c233 791 0x70, // ###
GerritPathuis 1:d27a7e06c233 792 0x10, // #
GerritPathuis 1:d27a7e06c233 793 0x10, // #
GerritPathuis 1:d27a7e06c233 794 0x10, // #
GerritPathuis 1:d27a7e06c233 795 0x10, // #
GerritPathuis 1:d27a7e06c233 796 0x70, // ###
GerritPathuis 1:d27a7e06c233 797
GerritPathuis 1:d27a7e06c233 798 // @600 'k' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 799 0xC0, // ##
GerritPathuis 1:d27a7e06c233 800 0x40, // #
GerritPathuis 1:d27a7e06c233 801 0x58, // # ##
GerritPathuis 1:d27a7e06c233 802 0x70, // ###
GerritPathuis 1:d27a7e06c233 803 0x50, // # #
GerritPathuis 1:d27a7e06c233 804 0xD8, // ## ##
GerritPathuis 1:d27a7e06c233 805 0x00, //
GerritPathuis 1:d27a7e06c233 806 0x00, //
GerritPathuis 1:d27a7e06c233 807
GerritPathuis 1:d27a7e06c233 808 // @608 'l' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 809 0x60, // ##
GerritPathuis 1:d27a7e06c233 810 0x20, // #
GerritPathuis 1:d27a7e06c233 811 0x20, // #
GerritPathuis 1:d27a7e06c233 812 0x20, // #
GerritPathuis 1:d27a7e06c233 813 0x20, // #
GerritPathuis 1:d27a7e06c233 814 0x70, // ###
GerritPathuis 1:d27a7e06c233 815 0x00, //
GerritPathuis 1:d27a7e06c233 816 0x00, //
GerritPathuis 1:d27a7e06c233 817
GerritPathuis 1:d27a7e06c233 818 // @616 'm' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 819 0x00, //
GerritPathuis 1:d27a7e06c233 820 0x00, //
GerritPathuis 1:d27a7e06c233 821 0xD0, // ## #
GerritPathuis 1:d27a7e06c233 822 0xA8, // # # #
GerritPathuis 1:d27a7e06c233 823 0xA8, // # # #
GerritPathuis 1:d27a7e06c233 824 0xA8, // # # #
GerritPathuis 1:d27a7e06c233 825 0x00, //
GerritPathuis 1:d27a7e06c233 826 0x00, //
GerritPathuis 1:d27a7e06c233 827
GerritPathuis 1:d27a7e06c233 828 // @624 'n' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 829 0x00, //
GerritPathuis 1:d27a7e06c233 830 0x00, //
GerritPathuis 1:d27a7e06c233 831 0xF0, // ####
GerritPathuis 1:d27a7e06c233 832 0x48, // # #
GerritPathuis 1:d27a7e06c233 833 0x48, // # #
GerritPathuis 1:d27a7e06c233 834 0xC8, // ## #
GerritPathuis 1:d27a7e06c233 835 0x00, //
GerritPathuis 1:d27a7e06c233 836 0x00, //
GerritPathuis 1:d27a7e06c233 837
GerritPathuis 1:d27a7e06c233 838 // @632 'o' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 839 0x00, //
GerritPathuis 1:d27a7e06c233 840 0x00, //
GerritPathuis 1:d27a7e06c233 841 0x30, // ##
GerritPathuis 1:d27a7e06c233 842 0x48, // # #
GerritPathuis 1:d27a7e06c233 843 0x48, // # #
GerritPathuis 1:d27a7e06c233 844 0x30, // ##
GerritPathuis 1:d27a7e06c233 845 0x00, //
GerritPathuis 1:d27a7e06c233 846 0x00, //
GerritPathuis 1:d27a7e06c233 847
GerritPathuis 1:d27a7e06c233 848 // @640 'p' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 849 0x00, //
GerritPathuis 1:d27a7e06c233 850 0x00, //
GerritPathuis 1:d27a7e06c233 851 0xF0, // ####
GerritPathuis 1:d27a7e06c233 852 0x48, // # #
GerritPathuis 1:d27a7e06c233 853 0x48, // # #
GerritPathuis 1:d27a7e06c233 854 0x70, // ###
GerritPathuis 1:d27a7e06c233 855 0x40, // #
GerritPathuis 1:d27a7e06c233 856 0xE0, // ###
GerritPathuis 1:d27a7e06c233 857
GerritPathuis 1:d27a7e06c233 858 // @648 'q' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 859 0x00, //
GerritPathuis 1:d27a7e06c233 860 0x00, //
GerritPathuis 1:d27a7e06c233 861 0x38, // ###
GerritPathuis 1:d27a7e06c233 862 0x48, // # #
GerritPathuis 1:d27a7e06c233 863 0x48, // # #
GerritPathuis 1:d27a7e06c233 864 0x38, // ###
GerritPathuis 1:d27a7e06c233 865 0x08, // #
GerritPathuis 1:d27a7e06c233 866 0x18, // ##
GerritPathuis 1:d27a7e06c233 867
GerritPathuis 1:d27a7e06c233 868 // @656 'r' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 869 0x00, //
GerritPathuis 1:d27a7e06c233 870 0x00, //
GerritPathuis 1:d27a7e06c233 871 0x78, // ####
GerritPathuis 1:d27a7e06c233 872 0x20, // #
GerritPathuis 1:d27a7e06c233 873 0x20, // #
GerritPathuis 1:d27a7e06c233 874 0x70, // ###
GerritPathuis 1:d27a7e06c233 875 0x00, //
GerritPathuis 1:d27a7e06c233 876 0x00, //
GerritPathuis 1:d27a7e06c233 877
GerritPathuis 1:d27a7e06c233 878 // @664 's' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 879 0x00, //
GerritPathuis 1:d27a7e06c233 880 0x00, //
GerritPathuis 1:d27a7e06c233 881 0x30, // ##
GerritPathuis 1:d27a7e06c233 882 0x20, // #
GerritPathuis 1:d27a7e06c233 883 0x10, // #
GerritPathuis 1:d27a7e06c233 884 0x60, // ##
GerritPathuis 1:d27a7e06c233 885 0x00, //
GerritPathuis 1:d27a7e06c233 886 0x00, //
GerritPathuis 1:d27a7e06c233 887
GerritPathuis 1:d27a7e06c233 888 // @672 't' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 889 0x00, //
GerritPathuis 1:d27a7e06c233 890 0x40, // #
GerritPathuis 1:d27a7e06c233 891 0xF0, // ####
GerritPathuis 1:d27a7e06c233 892 0x40, // #
GerritPathuis 1:d27a7e06c233 893 0x48, // # #
GerritPathuis 1:d27a7e06c233 894 0x30, // ##
GerritPathuis 1:d27a7e06c233 895 0x00, //
GerritPathuis 1:d27a7e06c233 896 0x00, //
GerritPathuis 1:d27a7e06c233 897
GerritPathuis 1:d27a7e06c233 898 // @680 'u' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 899 0x00, //
GerritPathuis 1:d27a7e06c233 900 0x00, //
GerritPathuis 1:d27a7e06c233 901 0xD8, // ## ##
GerritPathuis 1:d27a7e06c233 902 0x48, // # #
GerritPathuis 1:d27a7e06c233 903 0x48, // # #
GerritPathuis 1:d27a7e06c233 904 0x38, // ###
GerritPathuis 1:d27a7e06c233 905 0x00, //
GerritPathuis 1:d27a7e06c233 906 0x00, //
GerritPathuis 1:d27a7e06c233 907
GerritPathuis 1:d27a7e06c233 908 // @688 'v' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 909 0x00, //
GerritPathuis 1:d27a7e06c233 910 0x00, //
GerritPathuis 1:d27a7e06c233 911 0xC8, // ## #
GerritPathuis 1:d27a7e06c233 912 0x48, // # #
GerritPathuis 1:d27a7e06c233 913 0x30, // ##
GerritPathuis 1:d27a7e06c233 914 0x30, // ##
GerritPathuis 1:d27a7e06c233 915 0x00, //
GerritPathuis 1:d27a7e06c233 916 0x00, //
GerritPathuis 1:d27a7e06c233 917
GerritPathuis 1:d27a7e06c233 918 // @696 'w' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 919 0x00, //
GerritPathuis 1:d27a7e06c233 920 0x00, //
GerritPathuis 1:d27a7e06c233 921 0xD8, // ## ##
GerritPathuis 1:d27a7e06c233 922 0xA8, // # # #
GerritPathuis 1:d27a7e06c233 923 0xA8, // # # #
GerritPathuis 1:d27a7e06c233 924 0x50, // # #
GerritPathuis 1:d27a7e06c233 925 0x00, //
GerritPathuis 1:d27a7e06c233 926 0x00, //
GerritPathuis 1:d27a7e06c233 927
GerritPathuis 1:d27a7e06c233 928 // @704 'x' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 929 0x00, //
GerritPathuis 1:d27a7e06c233 930 0x00, //
GerritPathuis 1:d27a7e06c233 931 0x48, // # #
GerritPathuis 1:d27a7e06c233 932 0x30, // ##
GerritPathuis 1:d27a7e06c233 933 0x30, // ##
GerritPathuis 1:d27a7e06c233 934 0x48, // # #
GerritPathuis 1:d27a7e06c233 935 0x00, //
GerritPathuis 1:d27a7e06c233 936 0x00, //
GerritPathuis 1:d27a7e06c233 937
GerritPathuis 1:d27a7e06c233 938 // @712 'y' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 939 0x00, //
GerritPathuis 1:d27a7e06c233 940 0x00, //
GerritPathuis 1:d27a7e06c233 941 0xD8, // ## ##
GerritPathuis 1:d27a7e06c233 942 0x50, // # #
GerritPathuis 1:d27a7e06c233 943 0x50, // # #
GerritPathuis 1:d27a7e06c233 944 0x20, // #
GerritPathuis 1:d27a7e06c233 945 0x20, // #
GerritPathuis 1:d27a7e06c233 946 0x60, // ##
GerritPathuis 1:d27a7e06c233 947
GerritPathuis 1:d27a7e06c233 948 // @720 'z' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 949 0x00, //
GerritPathuis 1:d27a7e06c233 950 0x00, //
GerritPathuis 1:d27a7e06c233 951 0x78, // ####
GerritPathuis 1:d27a7e06c233 952 0x50, // # #
GerritPathuis 1:d27a7e06c233 953 0x28, // # #
GerritPathuis 1:d27a7e06c233 954 0x78, // ####
GerritPathuis 1:d27a7e06c233 955 0x00, //
GerritPathuis 1:d27a7e06c233 956 0x00, //
GerritPathuis 1:d27a7e06c233 957
GerritPathuis 1:d27a7e06c233 958 // @728 '{' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 959 0x10, // #
GerritPathuis 1:d27a7e06c233 960 0x20, // #
GerritPathuis 1:d27a7e06c233 961 0x20, // #
GerritPathuis 1:d27a7e06c233 962 0x60, // ##
GerritPathuis 1:d27a7e06c233 963 0x20, // #
GerritPathuis 1:d27a7e06c233 964 0x20, // #
GerritPathuis 1:d27a7e06c233 965 0x10, // #
GerritPathuis 1:d27a7e06c233 966 0x00, //
GerritPathuis 1:d27a7e06c233 967
GerritPathuis 1:d27a7e06c233 968 // @736 '|' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 969 0x20, // #
GerritPathuis 1:d27a7e06c233 970 0x20, // #
GerritPathuis 1:d27a7e06c233 971 0x20, // #
GerritPathuis 1:d27a7e06c233 972 0x20, // #
GerritPathuis 1:d27a7e06c233 973 0x20, // #
GerritPathuis 1:d27a7e06c233 974 0x20, // #
GerritPathuis 1:d27a7e06c233 975 0x20, // #
GerritPathuis 1:d27a7e06c233 976 0x00, //
GerritPathuis 1:d27a7e06c233 977
GerritPathuis 1:d27a7e06c233 978 // @744 '}' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 979 0x40, // #
GerritPathuis 1:d27a7e06c233 980 0x20, // #
GerritPathuis 1:d27a7e06c233 981 0x20, // #
GerritPathuis 1:d27a7e06c233 982 0x30, // ##
GerritPathuis 1:d27a7e06c233 983 0x20, // #
GerritPathuis 1:d27a7e06c233 984 0x20, // #
GerritPathuis 1:d27a7e06c233 985 0x40, // #
GerritPathuis 1:d27a7e06c233 986 0x00, //
GerritPathuis 1:d27a7e06c233 987
GerritPathuis 1:d27a7e06c233 988 // @752 '~' (5 pixels wide)
GerritPathuis 1:d27a7e06c233 989 0x00, //
GerritPathuis 1:d27a7e06c233 990 0x00, //
GerritPathuis 1:d27a7e06c233 991 0x00, //
GerritPathuis 1:d27a7e06c233 992 0x28, // # #
GerritPathuis 1:d27a7e06c233 993 0x50, // # #
GerritPathuis 1:d27a7e06c233 994 0x00, //
GerritPathuis 1:d27a7e06c233 995 0x00, //
GerritPathuis 1:d27a7e06c233 996 0x00, //
GerritPathuis 1:d27a7e06c233 997 };
GerritPathuis 1:d27a7e06c233 998
GerritPathuis 1:d27a7e06c233 999 sFONT Font8 = {
GerritPathuis 1:d27a7e06c233 1000 Font8_Table,
GerritPathuis 1:d27a7e06c233 1001 5, /* Width */
GerritPathuis 1:d27a7e06c233 1002 8, /* Height */
GerritPathuis 1:d27a7e06c233 1003 };
GerritPathuis 1:d27a7e06c233 1004
GerritPathuis 1:d27a7e06c233 1005 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
GerritPathuis 1:d27a7e06c233 1006