Commit ea3fc467 by ishikawatatsuki

adding lab_7

parent 87451071
.DS_Store
build
.vscode
__pycache__
\ No newline at end of file
__pycache__
venv
NN.*
\ No newline at end of file
cmake_minimum_required(VERSION 3.12)
set(CMAKE_C_STANDARD 11)
set(CMAKE_CXX_STANDARD 17)
include(pico_sdk_import.cmake)
# project(pico-tflite-inference-test)
project(pico_tflite_inference_test C CXX ASM)
# initialize the Pico SDK
pico_sdk_init()
add_executable(main main.cpp) # main function to run.
add_executable(main_arena_size_test arena_size_test.cpp) # to check arena size for a given model.
add_executable(main_inference_test inference_test.cpp) # to test hand written digit recognition with static test data.
target_include_directories(main
PRIVATE
${CMAKE_CURRENT_LIST_DIR}/.
)
target_include_directories(main_arena_size_test
PRIVATE
${CMAKE_CURRENT_LIST_DIR}/.
)
target_include_directories(main_inference_test
PRIVATE
${CMAKE_CURRENT_LIST_DIR}/.
)
set_target_properties(
main
PROPERTIES
COMPILE_FLAGS -fno-rtti
COMPILE_FLAGS -fno-exceptions
COMPILE_FLAGS -fno-threadsafe-statics
COMPILE_FLAGS -nostdlib
)
set_target_properties(
main_arena_size_test
PROPERTIES
COMPILE_FLAGS -fno-rtti
COMPILE_FLAGS -fno-exceptions
COMPILE_FLAGS -fno-threadsafe-statics
COMPILE_FLAGS -nostdlib
)
set_target_properties(
main_inference_test
PROPERTIES
COMPILE_FLAGS -fno-rtti
COMPILE_FLAGS -fno-exceptions
COMPILE_FLAGS -fno-threadsafe-statics
COMPILE_FLAGS -nostdlib
)
add_subdirectory(src)
add_subdirectory(models)
add_subdirectory(lib/pico-tflmicro)
add_subdirectory(lib/config)
add_subdirectory(lib/lcd)
add_subdirectory(lib/font)
include_directories(./src)
include_directories(./models)
include_directories(./lib/pico-tflmicro)
include_directories(./lib/config)
include_directories(./lib/lcd)
include_directories(./lib/font)
target_link_libraries(
main
src
lcd
font
config
models
pico_stdlib
hardware_spi
hardware_pwm
pico_multicore
hardware_adc
pico-tflmicro
)
target_link_libraries(
main_arena_size_test
src
config
models
pico_stdlib
hardware_spi
hardware_pwm
pico_multicore
hardware_adc
pico-tflmicro
)
target_link_libraries(
main_inference_test
src
config
models
pico_stdlib
hardware_spi
hardware_pwm
pico_multicore
hardware_adc
pico-tflmicro
)
# enable usb and uart output
pico_enable_stdio_usb(main 1)
pico_enable_stdio_uart(main 1)
pico_enable_stdio_usb(main_arena_size_test 1)
pico_enable_stdio_uart(main_arena_size_test 1)
pico_enable_stdio_usb(main_inference_test 1)
pico_enable_stdio_uart(main_inference_test 1)
# create map/bin/hex/uf2 file etc.
pico_add_extra_outputs(main)
pico_add_extra_outputs(main_arena_size_test)
pico_add_extra_outputs(main_inference_test)
#include <cmath>
#include<iostream>
#include <cstdlib>
#include <iostream>
#include <stdio.h>
#include "pico/stdlib.h"
#include "pico/multicore.h"
#include "pico/sync.h"
#include "hardware/watchdog.h"
#include "hardware/sync.h"
#include "DEV_Config.h"
#include "model.h"
#include "model_settings.h"
#include "mnist_model_data.h"
using namespace std;
Model ml_model;
int main() {
System_Init();
sleep_ms(1000);
// initialize ML model
if (!ml_model.setup()) {
printf("Failed to initialize ML model!\n");
return -1;
}
printf("Model initialized\n");
uint8_t* test_image_input = ml_model.input_data();
if (test_image_input == nullptr) {
printf("Cannot set input\n");
return -1;
}
int byte_size = ml_model.byte_size();
if (!byte_size) {
printf("Byte size not found\n");
return -1;
}
while(1) {
printf("The tensor arena size: %d\n", ml_model.interpreter->arena_used_bytes());
sleep_ms(1000);
}
return 0;
}
\ No newline at end of file
#include <cmath>
#include<iostream>
#include <cstdlib>
#include <iostream>
#include <stdio.h>
#include "pico/stdlib.h"
#include "pico/multicore.h"
#include "pico/sync.h"
#include "hardware/watchdog.h"
#include "hardware/sync.h"
#include "DEV_Config.h"
#include "inference.h"
using namespace std;
int main(void) {
System_Init();
sleep_ms(5000);
inference_test();
return 0;
}
\ No newline at end of file
# 查找当前目录下的所有源文件
# 并将名称保存到 DIR_Config_SRCS 变量
aux_source_directory(. DIR_CONFIG_SRCS)
# 生成链接库
add_library(config ${DIR_CONFIG_SRCS})
target_link_libraries(config PUBLIC pico_stdlib hardware_spi hardware_pwm)
/*****************************************************************************
* | File : DEV_Config.c
* | Author : Waveshare team
* | Function : Show SDcard BMP picto LCD
* | Info :
* Provide the hardware underlying interface
*----------------
* | This version: V1.0
* | Date : 2018-01-11
* | Info : Basic version
*
******************************************************************************/
#include "DEV_Config.h"
#include "pico/stdlib.h"
void DEV_Digital_Write(UWORD Pin, UBYTE Value)
{
gpio_put(Pin, Value);
}
UBYTE DEV_Digital_Read(UWORD Pin)
{
return gpio_get(Pin);
}
/**
* GPIO Mode
**/
void DEV_GPIO_Mode(UWORD Pin, UWORD Mode)
{
gpio_init(Pin);
if(Mode == 0 || Mode == GPIO_IN) {
gpio_set_dir(Pin, GPIO_IN);
} else {
gpio_set_dir(Pin, GPIO_OUT);
}
}
void DEV_GPIO_Init(void)
{
DEV_GPIO_Mode(LCD_RST_PIN,GPIO_OUT);
DEV_GPIO_Mode(LCD_DC_PIN, GPIO_OUT);
//DEV_GPIO_Mode(LCD_BKL_PIN, GPIO_OUT);
DEV_GPIO_Mode(LCD_CS_PIN, GPIO_OUT);
DEV_GPIO_Mode(TP_CS_PIN,GPIO_OUT);
DEV_GPIO_Mode(TP_IRQ_PIN,GPIO_IN);
DEV_GPIO_Mode(SD_CS_PIN,GPIO_OUT);
//gpio_set_pulls(TP_IRQ_PIN,true,false);
DEV_Digital_Write(TP_CS_PIN, 1);
DEV_Digital_Write(LCD_CS_PIN, 1);
//DEV_Digital_Write(LCD_BKL_PIN, 0);
DEV_Digital_Write(SD_CS_PIN, 1);
gpio_set_function(LCD_BKL_PIN, GPIO_FUNC_PWM);
}
/********************************************************************************
function: System Init
note:
Initialize the communication method
********************************************************************************/
uint8_t System_Init(void)
{
stdio_init_all();
DEV_GPIO_Init();
spi_init(SPI_PORT,5000000);
gpio_set_function(LCD_CLK_PIN,GPIO_FUNC_SPI);
gpio_set_function(LCD_MOSI_PIN,GPIO_FUNC_SPI);
gpio_set_function(LCD_MISO_PIN,GPIO_FUNC_SPI);
return 0;
}
void System_Exit(void)
{
}
/*********************************************
function: Hardware interface
note:
SPI4W_Write_Byte(value) :
Register hardware SPI
*********************************************/
uint8_t SPI4W_Write_Byte(uint8_t value)
{
uint8_t rxDat;
spi_write_read_blocking(spi1,&value,&rxDat,1);
return rxDat;
}
uint8_t SPI4W_Read_Byte(uint8_t value)
{
return SPI4W_Write_Byte(value);
}
/********************************************************************************
function: Delay function
note:
Driver_Delay_ms(xms) : Delay x ms
Driver_Delay_us(xus) : Delay x us
********************************************************************************/
void Driver_Delay_ms(uint32_t xms)
{
sleep_ms(xms);
}
void Driver_Delay_us(uint32_t xus)
{
int j;
for(j=xus; j > 0; j--);
}
/*****************************************************************************
* | File : DEV_Config.c
* | Author : Waveshare team
* | Function : GPIO Function
* | Info :
* Provide the hardware underlying interface
*----------------
* | This version: V1.0
* | Date : 2018-01-11
* | Info : Basic version
*
******************************************************************************/
#ifndef TFLITE_INFERENCE_TEST_DEV_CONFIG_H_
#define TFLITE_INFERENCE_TEST_DEV_CONFIG_H_
#ifdef __cplusplus
extern "C" {
#endif
#include "pico/stdlib.h"
#include "hardware/spi.h"
#include "hardware/pwm.h"
#include "stdio.h"
#define UBYTE uint8_t
#define UWORD uint16_t
#define UDOUBLE uint32_t
#define LCD_RST_PIN 15
#define LCD_DC_PIN 8
#define LCD_CS_PIN 9
#define LCD_CLK_PIN 10
#define LCD_BKL_PIN 13
#define LCD_MOSI_PIN 11
#define LCD_MISO_PIN 12
#define TP_CS_PIN 16
#define TP_IRQ_PIN 17
#define SD_CS_PIN 22
#define INPUT_IMAGE_SIZE 28
#define MULTICORE_RUN_INFERENCE_FLAG 123
#define UNKNOWN_PREDICTION 100
#define SPI_PORT spi1
#define MAX_BMP_FILES 25
/*------------------------------------------------------------------------------------------------------*/
void DEV_Digital_Write(UWORD Pin, UBYTE Value);
UBYTE DEV_Digital_Read(UWORD Pin);
void DEV_GPIO_Mode(UWORD Pin, UWORD Mode);
void DEV_GPIO_Init(void);
uint8_t System_Init(void);
void System_Exit(void);
uint8_t SPI4W_Write_Byte(uint8_t value);
uint8_t SPI4W_Read_Byte(uint8_t value);
void Driver_Delay_ms(uint32_t xms);
void Driver_Delay_us(uint32_t xus);
#ifdef __cplusplus
}
#endif
#endif // TFLITE_INFERENCE_TEST_DEV_CONFIG_H_
\ No newline at end of file
aux_source_directory(. DIR_font_SRCS)
add_library(font ${DIR_font_SRCS})
target_link_libraries(font PUBLIC)
/**
******************************************************************************
* @file Font12.c
* @author MCD Application Team
* @version V1.0.0
* @date 18-February-2014
* @brief This file provides text Font12 for STM32xx-EVAL's LCD driver.
******************************************************************************
* @attention
*
* <h2><center>&copy; COPYRIGHT(c) 2014 STMicroelectronics</center></h2>
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* 3. Neither the name of STMicroelectronics nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
******************************************************************************
*/
/* Includes ------------------------------------------------------------------*/
#include "fonts.h"
//
// Font data for Courier New 12pt
//
const uint8_t Font12_Table[] =
{
// @0 ' ' (7 pixels wide)
0x00, //
0x00, //
0x00, //
0x00, //
0x00, //
0x00, //
0x00, //
0x00, //
0x00, //
0x00, //
0x00, //
0x00, //
// @12 '!' (7 pixels wide)
0x00, //
0x10, // #
0x10, // #
0x10, // #
0x10, // #
0x10, // #
0x00, //
0x00, //
0x10, // #
0x00, //
0x00, //
0x00, //
// @24 '"' (7 pixels wide)
0x00, //
0x6C, // ## ##
0x48, // # #
0x48, // # #
0x00, //
0x00, //
0x00, //
0x00, //
0x00, //
0x00, //
0x00, //
0x00, //
// @36 '#' (7 pixels wide)
0x00, //
0x14, // # #
0x14, // # #
0x28, // # #
0x7C, // #####
0x28, // # #
0x7C, // #####
0x28, // # #
0x50, // # #
0x50, // # #
0x00, //
0x00, //
// @48 '$' (7 pixels wide)
0x00, //
0x10, // #
0x38, // ###
0x40, // #
0x40, // #
0x38, // ###
0x48, // # #
0x70, // ###
0x10, // #
0x10, // #
0x00, //
0x00, //
// @60 '%' (7 pixels wide)
0x00, //
0x20, // #
0x50, // # #
0x20, // #
0x0C, // ##
0x70, // ###
0x08, // #
0x14, // # #
0x08, // #
0x00, //
0x00, //
0x00, //
// @72 '&' (7 pixels wide)
0x00, //
0x00, //
0x00, //
0x18, // ##
0x20, // #
0x20, // #
0x54, // # # #
0x48, // # #
0x34, // ## #
0x00, //
0x00, //
0x00, //
// @84 ''' (7 pixels wide)
0x00, //
0x10, // #
0x10, // #
0x10, // #
0x10, // #
0x00, //
0x00, //
0x00, //
0x00, //
0x00, //
0x00, //
0x00, //
// @96 '(' (7 pixels wide)
0x00, //
0x08, // #
0x08, // #
0x10, // #
0x10, // #
0x10, // #
0x10, // #
0x10, // #
0x10, // #
0x08, // #
0x08, // #
0x00, //
// @108 ')' (7 pixels wide)
0x00, //
0x20, // #
0x20, // #
0x10, // #
0x10, // #
0x10, // #
0x10, // #
0x10, // #
0x10, // #
0x20, // #
0x20, // #
0x00, //
// @120 '*' (7 pixels wide)
0x00, //
0x10, // #
0x7C, // #####
0x10, // #
0x28, // # #
0x28, // # #
0x00, //
0x00, //
0x00, //
0x00, //
0x00, //
0x00, //
// @132 '+' (7 pixels wide)
0x00, //
0x00, //
0x10, // #
0x10, // #
0x10, // #
0xFE, // #######
0x10, // #
0x10, // #
0x10, // #
0x00, //
0x00, //
0x00, //
// @144 ',' (7 pixels wide)
0x00, //
0x00, //
0x00, //
0x00, //
0x00, //
0x00, //
0x00, //
0x18, // ##
0x10, // #
0x30, // ##
0x20, // #
0x00, //
// @156 '-' (7 pixels wide)
0x00, //
0x00, //
0x00, //
0x00, //
0x00, //
0x7C, // #####
0x00, //
0x00, //
0x00, //
0x00, //
0x00, //
0x00, //
// @168 '.' (7 pixels wide)
0x00, //
0x00, //
0x00, //
0x00, //
0x00, //
0x00, //
0x00, //
0x30, // ##
0x30, // ##
0x00, //
0x00, //
0x00, //
// @180 '/' (7 pixels wide)
0x00, //
0x04, // #
0x04, // #
0x08, // #
0x08, // #
0x10, // #
0x10, // #
0x20, // #
0x20, // #
0x40, // #
0x00, //
0x00, //
// @192 '0' (7 pixels wide)
0x00, //
0x38, // ###
0x44, // # #
0x44, // # #
0x44, // # #
0x44, // # #
0x44, // # #
0x44, // # #
0x38, // ###
0x00, //
0x00, //
0x00, //
// @204 '1' (7 pixels wide)
0x00, //
0x30, // ##
0x10, // #
0x10, // #
0x10, // #
0x10, // #
0x10, // #
0x10, // #
0x7C, // #####
0x00, //
0x00, //
0x00, //
// @216 '2' (7 pixels wide)
0x00, //
0x38, // ###
0x44, // # #
0x04, // #
0x08, // #
0x10, // #
0x20, // #
0x44, // # #
0x7C, // #####
0x00, //
0x00, //
0x00, //
// @228 '3' (7 pixels wide)
0x00, //
0x38, // ###
0x44, // # #
0x04, // #
0x18, // ##
0x04, // #
0x04, // #
0x44, // # #
0x38, // ###
0x00, //
0x00, //
0x00, //
// @240 '4' (7 pixels wide)
0x00, //
0x0C, // ##
0x14, // # #
0x14, // # #
0x24, // # #
0x44, // # #
0x7E, // ######
0x04, // #
0x0E, // ###
0x00, //
0x00, //
0x00, //
// @252 '5' (7 pixels wide)
0x00, //
0x3C, // ####
0x20, // #
0x20, // #
0x38, // ###
0x04, // #
0x04, // #
0x44, // # #
0x38, // ###
0x00, //
0x00, //
0x00, //
// @264 '6' (7 pixels wide)
0x00, //
0x1C, // ###
0x20, // #
0x40, // #
0x78, // ####
0x44, // # #
0x44, // # #
0x44, // # #
0x38, // ###
0x00, //
0x00, //
0x00, //
// @276 '7' (7 pixels wide)
0x00, //
0x7C, // #####
0x44, // # #
0x04, // #
0x08, // #
0x08, // #
0x08, // #
0x10, // #
0x10, // #
0x00, //
0x00, //
0x00, //
// @288 '8' (7 pixels wide)
0x00, //
0x38, // ###
0x44, // # #
0x44, // # #
0x38, // ###
0x44, // # #
0x44, // # #
0x44, // # #
0x38, // ###
0x00, //
0x00, //
0x00, //
// @300 '9' (7 pixels wide)
0x00, //
0x38, // ###
0x44, // # #
0x44, // # #
0x44, // # #
0x3C, // ####
0x04, // #
0x08, // #
0x70, // ###
0x00, //
0x00, //
0x00, //
// @312 ':' (7 pixels wide)
0x00, //
0x00, //
0x00, //
0x30, // ##
0x30, // ##
0x00, //
0x00, //
0x30, // ##
0x30, // ##
0x00, //
0x00, //
0x00, //
// @324 ';' (7 pixels wide)
0x00, //
0x00, //
0x00, //
0x18, // ##
0x18, // ##
0x00, //
0x00, //
0x18, // ##
0x30, // ##
0x20, // #
0x00, //
0x00, //
// @336 '<' (7 pixels wide)
0x00, //
0x00, //
0x0C, // ##
0x10, // #
0x60, // ##
0x80, // #
0x60, // ##
0x10, // #
0x0C, // ##
0x00, //
0x00, //
0x00, //
// @348 '=' (7 pixels wide)
0x00, //
0x00, //
0x00, //
0x00, //
0x7C, // #####
0x00, //
0x7C, // #####
0x00, //
0x00, //
0x00, //
0x00, //
0x00, //
// @360 '>' (7 pixels wide)
0x00, //
0x00, //
0xC0, // ##
0x20, // #
0x18, // ##
0x04, // #
0x18, // ##
0x20, // #
0xC0, // ##
0x00, //
0x00, //
0x00, //
// @372 '?' (7 pixels wide)
0x00, //
0x00, //
0x18, // ##
0x24, // # #
0x04, // #
0x08, // #
0x10, // #
0x00, //
0x30, // ##
0x00, //
0x00, //
0x00, //
// @384 '@' (7 pixels wide)
0x38, // ###
0x44, // # #
0x44, // # #
0x4C, // # ##
0x54, // # # #
0x54, // # # #
0x4C, // # ##
0x40, // #
0x44, // # #
0x38, // ###
0x00, //
0x00, //
// @396 'A' (7 pixels wide)
0x00, //
0x30, // ##
0x10, // #
0x28, // # #
0x28, // # #
0x28, // # #
0x7C, // #####
0x44, // # #
0xEE, // ### ###
0x00, //
0x00, //
0x00, //
// @408 'B' (7 pixels wide)
0x00, //
0xF8, // #####
0x44, // # #
0x44, // # #
0x78, // ####
0x44, // # #
0x44, // # #
0x44, // # #
0xF8, // #####
0x00, //
0x00, //
0x00, //
// @420 'C' (7 pixels wide)
0x00, //
0x3C, // ####
0x44, // # #
0x40, // #
0x40, // #
0x40, // #
0x40, // #
0x44, // # #
0x38, // ###
0x00, //
0x00, //
0x00, //
// @432 'D' (7 pixels wide)
0x00, //
0xF0, // ####
0x48, // # #
0x44, // # #
0x44, // # #
0x44, // # #
0x44, // # #
0x48, // # #
0xF0, // ####
0x00, //
0x00, //
0x00, //
// @444 'E' (7 pixels wide)
0x00, //
0xFC, // ######
0x44, // # #
0x50, // # #
0x70, // ###
0x50, // # #
0x40, // #
0x44, // # #
0xFC, // ######
0x00, //
0x00, //
0x00, //
// @456 'F' (7 pixels wide)
0x00, //
0x7E, // ######
0x22, // # #
0x28, // # #
0x38, // ###
0x28, // # #
0x20, // #
0x20, // #
0x70, // ###
0x00, //
0x00, //
0x00, //
// @468 'G' (7 pixels wide)
0x00, //
0x3C, // ####
0x44, // # #
0x40, // #
0x40, // #
0x4E, // # ###
0x44, // # #
0x44, // # #
0x38, // ###
0x00, //
0x00, //
0x00, //
// @480 'H' (7 pixels wide)
0x00, //
0xEE, // ### ###
0x44, // # #
0x44, // # #
0x7C, // #####
0x44, // # #
0x44, // # #
0x44, // # #
0xEE, // ### ###
0x00, //
0x00, //
0x00, //
// @492 'I' (7 pixels wide)
0x00, //
0x7C, // #####
0x10, // #
0x10, // #
0x10, // #
0x10, // #
0x10, // #
0x10, // #
0x7C, // #####
0x00, //
0x00, //
0x00, //
// @504 'J' (7 pixels wide)
0x00, //
0x3C, // ####
0x08, // #
0x08, // #
0x08, // #
0x48, // # #
0x48, // # #
0x48, // # #
0x30, // ##
0x00, //
0x00, //
0x00, //
// @516 'K' (7 pixels wide)
0x00, //
0xEE, // ### ###
0x44, // # #
0x48, // # #
0x50, // # #
0x70, // ###
0x48, // # #
0x44, // # #
0xE6, // ### ##
0x00, //
0x00, //
0x00, //
// @528 'L' (7 pixels wide)
0x00, //
0x70, // ###
0x20, // #
0x20, // #
0x20, // #
0x20, // #
0x24, // # #
0x24, // # #
0x7C, // #####
0x00, //
0x00, //
0x00, //
// @540 'M' (7 pixels wide)
0x00, //
0xEE, // ### ###
0x6C, // ## ##
0x6C, // ## ##
0x54, // # # #
0x54, // # # #
0x44, // # #
0x44, // # #
0xEE, // ### ###
0x00, //
0x00, //
0x00, //
// @552 'N' (7 pixels wide)
0x00, //
0xEE, // ### ###
0x64, // ## #
0x64, // ## #
0x54, // # # #
0x54, // # # #
0x54, // # # #
0x4C, // # ##
0xEC, // ### ##
0x00, //
0x00, //
0x00, //
// @564 'O' (7 pixels wide)
0x00, //
0x38, // ###
0x44, // # #
0x44, // # #
0x44, // # #
0x44, // # #
0x44, // # #
0x44, // # #
0x38, // ###
0x00, //
0x00, //
0x00, //
// @576 'P' (7 pixels wide)
0x00, //
0x78, // ####
0x24, // # #
0x24, // # #
0x24, // # #
0x38, // ###
0x20, // #
0x20, // #
0x70, // ###
0x00, //
0x00, //
0x00, //
// @588 'Q' (7 pixels wide)
0x00, //
0x38, // ###
0x44, // # #
0x44, // # #
0x44, // # #
0x44, // # #
0x44, // # #
0x44, // # #
0x38, // ###
0x1C, // ###
0x00, //
0x00, //
// @600 'R' (7 pixels wide)
0x00, //
0xF8, // #####
0x44, // # #
0x44, // # #
0x44, // # #
0x78, // ####
0x48, // # #
0x44, // # #
0xE2, // ### #
0x00, //
0x00, //
0x00, //
// @612 'S' (7 pixels wide)
0x00, //
0x34, // ## #
0x4C, // # ##
0x40, // #
0x38, // ###
0x04, // #
0x04, // #
0x64, // ## #
0x58, // # ##
0x00, //
0x00, //
0x00, //
// @624 'T' (7 pixels wide)
0x00, //
0xFE, // #######
0x92, // # # #
0x10, // #
0x10, // #
0x10, // #
0x10, // #
0x10, // #
0x38, // ###
0x00, //
0x00, //
0x00, //
// @636 'U' (7 pixels wide)
0x00, //
0xEE, // ### ###
0x44, // # #
0x44, // # #
0x44, // # #
0x44, // # #
0x44, // # #
0x44, // # #
0x38, // ###
0x00, //
0x00, //
0x00, //
// @648 'V' (7 pixels wide)
0x00, //
0xEE, // ### ###
0x44, // # #
0x44, // # #
0x28, // # #
0x28, // # #
0x28, // # #
0x10, // #
0x10, // #
0x00, //
0x00, //
0x00, //
// @660 'W' (7 pixels wide)
0x00, //
0xEE, // ### ###
0x44, // # #
0x44, // # #
0x54, // # # #
0x54, // # # #
0x54, // # # #
0x54, // # # #
0x28, // # #
0x00, //
0x00, //
0x00, //
// @672 'X' (7 pixels wide)
0x00, //
0xC6, // ## ##
0x44, // # #
0x28, // # #
0x10, // #
0x10, // #
0x28, // # #
0x44, // # #
0xC6, // ## ##
0x00, //
0x00, //
0x00, //
// @684 'Y' (7 pixels wide)
0x00, //
0xEE, // ### ###
0x44, // # #
0x28, // # #
0x28, // # #
0x10, // #
0x10, // #
0x10, // #
0x38, // ###
0x00, //
0x00, //
0x00, //
// @696 'Z' (7 pixels wide)
0x00, //
0x7C, // #####
0x44, // # #
0x08, // #
0x10, // #
0x10, // #
0x20, // #
0x44, // # #
0x7C, // #####
0x00, //
0x00, //
0x00, //
// @708 '[' (7 pixels wide)
0x00, //
0x38, // ###
0x20, // #
0x20, // #
0x20, // #
0x20, // #
0x20, // #
0x20, // #
0x20, // #
0x20, // #
0x38, // ###
0x00, //
// @720 '\' (7 pixels wide)
0x00, //
0x40, // #
0x20, // #
0x20, // #
0x20, // #
0x10, // #
0x10, // #
0x08, // #
0x08, // #
0x08, // #
0x00, //
0x00, //
// @732 ']' (7 pixels wide)
0x00, //
0x38, // ###
0x08, // #
0x08, // #
0x08, // #
0x08, // #
0x08, // #
0x08, // #
0x08, // #
0x08, // #
0x38, // ###
0x00, //
// @744 '^' (7 pixels wide)
0x00, //
0x10, // #
0x10, // #
0x28, // # #
0x44, // # #
0x00, //
0x00, //
0x00, //
0x00, //
0x00, //
0x00, //
0x00, //
// @756 '_' (7 pixels wide)
0x00, //
0x00, //
0x00, //
0x00, //
0x00, //
0x00, //
0x00, //
0x00, //
0x00, //
0x00, //
0x00, //
0xFE, // #######
// @768 '`' (7 pixels wide)
0x00, //
0x10, // #
0x08, // #
0x00, //
0x00, //
0x00, //
0x00, //
0x00, //
0x00, //
0x00, //
0x00, //
0x00, //
// @780 'a' (7 pixels wide)
0x00, //
0x00, //
0x00, //
0x38, // ###
0x44, // # #
0x3C, // ####
0x44, // # #
0x44, // # #
0x3E, // #####
0x00, //
0x00, //
0x00, //
// @792 'b' (7 pixels wide)
0x00, //
0xC0, // ##
0x40, // #
0x58, // # ##
0x64, // ## #
0x44, // # #
0x44, // # #
0x44, // # #
0xF8, // #####
0x00, //
0x00, //
0x00, //
// @804 'c' (7 pixels wide)
0x00, //
0x00, //
0x00, //
0x3C, // ####
0x44, // # #
0x40, // #
0x40, // #
0x44, // # #
0x38, // ###
0x00, //
0x00, //
0x00, //
// @816 'd' (7 pixels wide)
0x00, //
0x0C, // ##
0x04, // #
0x34, // ## #
0x4C, // # ##
0x44, // # #
0x44, // # #
0x44, // # #
0x3E, // #####
0x00, //
0x00, //
0x00, //
// @828 'e' (7 pixels wide)
0x00, //
0x00, //
0x00, //
0x38, // ###
0x44, // # #
0x7C, // #####
0x40, // #
0x40, // #
0x3C, // ####
0x00, //
0x00, //
0x00, //
// @840 'f' (7 pixels wide)
0x00, //
0x1C, // ###
0x20, // #
0x7C, // #####
0x20, // #
0x20, // #
0x20, // #
0x20, // #
0x7C, // #####
0x00, //
0x00, //
0x00, //
// @852 'g' (7 pixels wide)
0x00, //
0x00, //
0x00, //
0x36, // ## ##
0x4C, // # ##
0x44, // # #
0x44, // # #
0x44, // # #
0x3C, // ####
0x04, // #
0x38, // ###
0x00, //
// @864 'h' (7 pixels wide)
0x00, //
0xC0, // ##
0x40, // #
0x58, // # ##
0x64, // ## #
0x44, // # #
0x44, // # #
0x44, // # #
0xEE, // ### ###
0x00, //
0x00, //
0x00, //
// @876 'i' (7 pixels wide)
0x00, //
0x10, // #
0x00, //
0x70, // ###
0x10, // #
0x10, // #
0x10, // #
0x10, // #
0x7C, // #####
0x00, //
0x00, //
0x00, //
// @888 'j' (7 pixels wide)
0x00, //
0x10, // #
0x00, //
0x78, // ####
0x08, // #
0x08, // #
0x08, // #
0x08, // #
0x08, // #
0x08, // #
0x70, // ###
0x00, //
// @900 'k' (7 pixels wide)
0x00, //
0xC0, // ##
0x40, // #
0x5C, // # ###
0x48, // # #
0x70, // ###
0x50, // # #
0x48, // # #
0xDC, // ## ###
0x00, //
0x00, //
0x00, //
// @912 'l' (7 pixels wide)
0x00, //
0x30, // ##
0x10, // #
0x10, // #
0x10, // #
0x10, // #
0x10, // #
0x10, // #
0x7C, // #####
0x00, //
0x00, //
0x00, //
// @924 'm' (7 pixels wide)
0x00, //
0x00, //
0x00, //
0xE8, // ### #
0x54, // # # #
0x54, // # # #
0x54, // # # #
0x54, // # # #
0xFE, // #######
0x00, //
0x00, //
0x00, //
// @936 'n' (7 pixels wide)
0x00, //
0x00, //
0x00, //
0xD8, // ## ##
0x64, // ## #
0x44, // # #
0x44, // # #
0x44, // # #
0xEE, // ### ###
0x00, //
0x00, //
0x00, //
// @948 'o' (7 pixels wide)
0x00, //
0x00, //
0x00, //
0x38, // ###
0x44, // # #
0x44, // # #
0x44, // # #
0x44, // # #
0x38, // ###
0x00, //
0x00, //
0x00, //
// @960 'p' (7 pixels wide)
0x00, //
0x00, //
0x00, //
0xD8, // ## ##
0x64, // ## #
0x44, // # #
0x44, // # #
0x44, // # #
0x78, // ####
0x40, // #
0xE0, // ###
0x00, //
// @972 'q' (7 pixels wide)
0x00, //
0x00, //
0x00, //
0x36, // ## ##
0x4C, // # ##
0x44, // # #
0x44, // # #
0x44, // # #
0x3C, // ####
0x04, // #
0x0E, // ###
0x00, //
// @984 'r' (7 pixels wide)
0x00, //
0x00, //
0x00, //
0x6C, // ## ##
0x30, // ##
0x20, // #
0x20, // #
0x20, // #
0x7C, // #####
0x00, //
0x00, //
0x00, //
// @996 's' (7 pixels wide)
0x00, //
0x00, //
0x00, //
0x3C, // ####
0x44, // # #
0x38, // ###
0x04, // #
0x44, // # #
0x78, // ####
0x00, //
0x00, //
0x00, //
// @1008 't' (7 pixels wide)
0x00, //
0x00, //
0x20, // #
0x7C, // #####
0x20, // #
0x20, // #
0x20, // #
0x22, // # #
0x1C, // ###
0x00, //
0x00, //
0x00, //
// @1020 'u' (7 pixels wide)
0x00, //
0x00, //
0x00, //
0xCC, // ## ##
0x44, // # #
0x44, // # #
0x44, // # #
0x4C, // # ##
0x36, // ## ##
0x00, //
0x00, //
0x00, //
// @1032 'v' (7 pixels wide)
0x00, //
0x00, //
0x00, //
0xEE, // ### ###
0x44, // # #
0x44, // # #
0x28, // # #
0x28, // # #
0x10, // #
0x00, //
0x00, //
0x00, //
// @1044 'w' (7 pixels wide)
0x00, //
0x00, //
0x00, //
0xEE, // ### ###
0x44, // # #
0x54, // # # #
0x54, // # # #
0x54, // # # #
0x28, // # #
0x00, //
0x00, //
0x00, //
// @1056 'x' (7 pixels wide)
0x00, //
0x00, //
0x00, //
0xCC, // ## ##
0x48, // # #
0x30, // ##
0x30, // ##
0x48, // # #
0xCC, // ## ##
0x00, //
0x00, //
0x00, //
// @1068 'y' (7 pixels wide)
0x00, //
0x00, //
0x00, //
0xEE, // ### ###
0x44, // # #
0x24, // # #
0x28, // # #
0x18, // ##
0x10, // #
0x10, // #
0x78, // ####
0x00, //
// @1080 'z' (7 pixels wide)
0x00, //
0x00, //
0x00, //
0x7C, // #####
0x48, // # #
0x10, // #
0x20, // #
0x44, // # #
0x7C, // #####
0x00, //
0x00, //
0x00, //
// @1092 '{' (7 pixels wide)
0x00, //
0x08, // #
0x10, // #
0x10, // #
0x10, // #
0x10, // #
0x20, // #
0x10, // #
0x10, // #
0x10, // #
0x08, // #
0x00, //
// @1104 '|' (7 pixels wide)
0x00, //
0x10, // #
0x10, // #
0x10, // #
0x10, // #
0x10, // #
0x10, // #
0x10, // #
0x10, // #
0x10, // #
0x00, //
0x00, //
// @1116 '}' (7 pixels wide)
0x00, //
0x20, // #
0x10, // #
0x10, // #
0x10, // #
0x10, // #
0x08, // #
0x10, // #
0x10, // #
0x10, // #
0x20, // #
0x00, //
// @1128 '~' (7 pixels wide)
0x00, //
0x00, //
0x00, //
0x00, //
0x00, //
0x24, // # #
0x58, // # ##
0x00, //
0x00, //
0x00, //
0x00, //
0x00, //
};
sFONT Font12 = {
Font12_Table,
7, /* Width */
12, /* Height */
};
/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
/**
******************************************************************************
* @file font16.c
* @author MCD Application Team
* @version V1.0.0
* @date 18-February-2014
* @brief This file provides text font16 for STM32xx-EVAL's LCD driver.
******************************************************************************
* @attention
*
* <h2><center>&copy; COPYRIGHT(c) 2014 STMicroelectronics</center></h2>
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* 3. Neither the name of STMicroelectronics nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
******************************************************************************
*/
/* Includes ------------------------------------------------------------------*/
#include "fonts.h"
//
// Font data for Courier New 12pt
//
const uint8_t Font16_Table[] =
{
// @0 ' ' (11 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @32 '!' (11 pixels wide)
0x00, 0x00, //
0x0C, 0x00, // ##
0x0C, 0x00, // ##
0x0C, 0x00, // ##
0x0C, 0x00, // ##
0x0C, 0x00, // ##
0x0C, 0x00, // ##
0x0C, 0x00, // ##
0x0C, 0x00, // ##
0x00, 0x00, //
0x0C, 0x00, // ##
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @64 '"' (11 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x1D, 0xC0, // ### ###
0x1D, 0xC0, // ### ###
0x08, 0x80, // # #
0x08, 0x80, // # #
0x08, 0x80, // # #
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @96 '#' (11 pixels wide)
0x00, 0x00, //
0x0D, 0x80, // ## ##
0x0D, 0x80, // ## ##
0x0D, 0x80, // ## ##
0x0D, 0x80, // ## ##
0x3F, 0xC0, // ########
0x1B, 0x00, // ## ##
0x3F, 0xC0, // ########
0x1B, 0x00, // ## ##
0x1B, 0x00, // ## ##
0x1B, 0x00, // ## ##
0x1B, 0x00, // ## ##
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @128 '$' (11 pixels wide)
0x04, 0x00, // #
0x1F, 0x80, // ######
0x31, 0x80, // ## ##
0x31, 0x80, // ## ##
0x38, 0x00, // ###
0x1E, 0x00, // ####
0x0F, 0x00, // ####
0x03, 0x80, // ###
0x31, 0x80, // ## ##
0x31, 0x80, // ## ##
0x3F, 0x00, // ######
0x04, 0x00, // #
0x04, 0x00, // #
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @160 '%' (11 pixels wide)
0x00, 0x00, //
0x18, 0x00, // ##
0x24, 0x00, // # #
0x24, 0x00, // # #
0x18, 0xC0, // ## ##
0x07, 0x80, // ####
0x1E, 0x00, // ####
0x31, 0x80, // ## ##
0x02, 0x40, // # #
0x02, 0x40, // # #
0x01, 0x80, // ##
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @192 '&' (11 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x0F, 0x00, // ####
0x18, 0x00, // ##
0x18, 0x00, // ##
0x18, 0x00, // ##
0x0C, 0x00, // ##
0x1D, 0x80, // ### ##
0x37, 0x00, // ## ###
0x33, 0x00, // ## ##
0x1D, 0x80, // ### ##
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @224 ''' (11 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x07, 0x00, // ###
0x07, 0x00, // ###
0x02, 0x00, // #
0x02, 0x00, // #
0x02, 0x00, // #
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @256 '(' (11 pixels wide)
0x00, 0x00, //
0x03, 0x00, // ##
0x03, 0x00, // ##
0x06, 0x00, // ##
0x0E, 0x00, // ###
0x0C, 0x00, // ##
0x0C, 0x00, // ##
0x0C, 0x00, // ##
0x0C, 0x00, // ##
0x0E, 0x00, // ###
0x06, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @288 ')' (11 pixels wide)
0x00, 0x00, //
0x18, 0x00, // ##
0x18, 0x00, // ##
0x0C, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x0C, 0x00, // ##
0x1C, 0x00, // ###
0x18, 0x00, // ##
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @320 '*' (11 pixels wide)
0x00, 0x00, //
0x06, 0x00, // ##
0x06, 0x00, // ##
0x3F, 0xC0, // ########
0x3F, 0xC0, // ########
0x0F, 0x00, // ####
0x1F, 0x80, // ######
0x19, 0x80, // ## ##
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @352 '+' (11 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x04, 0x00, // #
0x04, 0x00, // #
0x04, 0x00, // #
0x3F, 0x80, // #######
0x04, 0x00, // #
0x04, 0x00, // #
0x04, 0x00, // #
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @384 ',' (11 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x06, 0x00, // ##
0x04, 0x00, // #
0x0C, 0x00, // ##
0x08, 0x00, // #
0x08, 0x00, // #
0x00, 0x00, //
0x00, 0x00, //
// @416 '-' (11 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x3F, 0x80, // #######
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @448 '.' (11 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x0C, 0x00, // ##
0x0C, 0x00, // ##
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @480 '/' (11 pixels wide)
0x00, 0xC0, // ##
0x00, 0xC0, // ##
0x01, 0x80, // ##
0x01, 0x80, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x06, 0x00, // ##
0x0C, 0x00, // ##
0x0C, 0x00, // ##
0x18, 0x00, // ##
0x18, 0x00, // ##
0x30, 0x00, // ##
0x30, 0x00, // ##
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @512 '0' (11 pixels wide)
0x00, 0x00, //
0x0E, 0x00, // ###
0x1B, 0x00, // ## ##
0x31, 0x80, // ## ##
0x31, 0x80, // ## ##
0x31, 0x80, // ## ##
0x31, 0x80, // ## ##
0x31, 0x80, // ## ##
0x31, 0x80, // ## ##
0x1B, 0x00, // ## ##
0x0E, 0x00, // ###
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @544 '1' (11 pixels wide)
0x00, 0x00, //
0x06, 0x00, // ##
0x3E, 0x00, // #####
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x3F, 0xC0, // ########
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @576 '2' (11 pixels wide)
0x00, 0x00, //
0x0F, 0x00, // ####
0x19, 0x80, // ## ##
0x31, 0x80, // ## ##
0x31, 0x80, // ## ##
0x03, 0x00, // ##
0x06, 0x00, // ##
0x0C, 0x00, // ##
0x18, 0x00, // ##
0x30, 0x00, // ##
0x3F, 0x80, // #######
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @608 '3' (11 pixels wide)
0x00, 0x00, //
0x3F, 0x00, // ######
0x61, 0x80, // ## ##
0x01, 0x80, // ##
0x03, 0x00, // ##
0x1F, 0x00, // #####
0x03, 0x80, // ###
0x01, 0x80, // ##
0x01, 0x80, // ##
0x61, 0x80, // ## ##
0x3F, 0x00, // ######
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @640 '4' (11 pixels wide)
0x00, 0x00, //
0x07, 0x00, // ###
0x07, 0x00, // ###
0x0F, 0x00, // ####
0x0B, 0x00, // # ##
0x1B, 0x00, // ## ##
0x13, 0x00, // # ##
0x33, 0x00, // ## ##
0x3F, 0x80, // #######
0x03, 0x00, // ##
0x0F, 0x80, // #####
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @672 '5' (11 pixels wide)
0x00, 0x00, //
0x1F, 0x80, // ######
0x18, 0x00, // ##
0x18, 0x00, // ##
0x18, 0x00, // ##
0x1F, 0x00, // #####
0x11, 0x80, // # ##
0x01, 0x80, // ##
0x01, 0x80, // ##
0x21, 0x80, // # ##
0x1F, 0x00, // #####
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @704 '6' (11 pixels wide)
0x00, 0x00, //
0x07, 0x80, // ####
0x1C, 0x00, // ###
0x18, 0x00, // ##
0x30, 0x00, // ##
0x37, 0x00, // ## ###
0x39, 0x80, // ### ##
0x31, 0x80, // ## ##
0x31, 0x80, // ## ##
0x19, 0x80, // ## ##
0x0F, 0x00, // ####
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @736 '7' (11 pixels wide)
0x00, 0x00, //
0x7F, 0x00, // #######
0x43, 0x00, // # ##
0x03, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x0C, 0x00, // ##
0x0C, 0x00, // ##
0x0C, 0x00, // ##
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @768 '8' (11 pixels wide)
0x00, 0x00, //
0x1F, 0x00, // #####
0x31, 0x80, // ## ##
0x31, 0x80, // ## ##
0x31, 0x80, // ## ##
0x1F, 0x00, // #####
0x31, 0x80, // ## ##
0x31, 0x80, // ## ##
0x31, 0x80, // ## ##
0x31, 0x80, // ## ##
0x1F, 0x00, // #####
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @800 '9' (11 pixels wide)
0x00, 0x00, //
0x1E, 0x00, // ####
0x33, 0x00, // ## ##
0x31, 0x80, // ## ##
0x31, 0x80, // ## ##
0x33, 0x80, // ## ###
0x1D, 0x80, // ### ##
0x01, 0x80, // ##
0x03, 0x00, // ##
0x07, 0x00, // ###
0x3C, 0x00, // ####
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @832 ':' (11 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x0C, 0x00, // ##
0x0C, 0x00, // ##
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x0C, 0x00, // ##
0x0C, 0x00, // ##
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @864 ';' (11 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x03, 0x00, // ##
0x03, 0x00, // ##
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x06, 0x00, // ##
0x04, 0x00, // #
0x08, 0x00, // #
0x08, 0x00, // #
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @896 '<' (11 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x00, 0xC0, // ##
0x03, 0x00, // ##
0x04, 0x00, // #
0x18, 0x00, // ##
0x60, 0x00, // ##
0x18, 0x00, // ##
0x04, 0x00, // #
0x03, 0x00, // ##
0x00, 0xC0, // ##
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @928 '=' (11 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x7F, 0xC0, // #########
0x00, 0x00, //
0x7F, 0xC0, // #########
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @960 '>' (11 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x60, 0x00, // ##
0x18, 0x00, // ##
0x04, 0x00, // #
0x03, 0x00, // ##
0x00, 0xC0, // ##
0x03, 0x00, // ##
0x04, 0x00, // #
0x18, 0x00, // ##
0x60, 0x00, // ##
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @992 '?' (11 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x1F, 0x00, // #####
0x31, 0x80, // ## ##
0x31, 0x80, // ## ##
0x01, 0x80, // ##
0x07, 0x00, // ###
0x0C, 0x00, // ##
0x0C, 0x00, // ##
0x00, 0x00, //
0x0C, 0x00, // ##
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @1024 '@' (11 pixels wide)
0x00, 0x00, //
0x0E, 0x00, // ###
0x11, 0x00, // # #
0x21, 0x00, // # #
0x21, 0x00, // # #
0x27, 0x00, // # ###
0x29, 0x00, // # # #
0x29, 0x00, // # # #
0x27, 0x00, // # ###
0x20, 0x00, // #
0x11, 0x00, // # #
0x0E, 0x00, // ###
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @1056 'A' (11 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x3F, 0x00, // ######
0x0F, 0x00, // ####
0x09, 0x00, // # #
0x19, 0x80, // ## ##
0x19, 0x80, // ## ##
0x1F, 0x80, // ######
0x30, 0xC0, // ## ##
0x30, 0xC0, // ## ##
0x79, 0xE0, // #### ####
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @1088 'B' (11 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x7F, 0x00, // #######
0x31, 0x80, // ## ##
0x31, 0x80, // ## ##
0x31, 0x80, // ## ##
0x3F, 0x00, // ######
0x31, 0x80, // ## ##
0x31, 0x80, // ## ##
0x31, 0x80, // ## ##
0x7F, 0x00, // #######
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @1120 'C' (11 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x1F, 0x40, // ##### #
0x30, 0xC0, // ## ##
0x60, 0x40, // ## #
0x60, 0x00, // ##
0x60, 0x00, // ##
0x60, 0x00, // ##
0x60, 0x40, // ## #
0x30, 0x80, // ## #
0x1F, 0x00, // #####
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @1152 'D' (11 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x7F, 0x00, // #######
0x31, 0x80, // ## ##
0x30, 0xC0, // ## ##
0x30, 0xC0, // ## ##
0x30, 0xC0, // ## ##
0x30, 0xC0, // ## ##
0x30, 0xC0, // ## ##
0x31, 0x80, // ## ##
0x7F, 0x00, // #######
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @1184 'E' (11 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x7F, 0x80, // ########
0x30, 0x80, // ## #
0x30, 0x80, // ## #
0x32, 0x00, // ## #
0x3E, 0x00, // #####
0x32, 0x00, // ## #
0x30, 0x80, // ## #
0x30, 0x80, // ## #
0x7F, 0x80, // ########
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @1216 'F' (11 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x7F, 0xC0, // #########
0x30, 0x40, // ## #
0x30, 0x40, // ## #
0x32, 0x00, // ## #
0x3E, 0x00, // #####
0x32, 0x00, // ## #
0x30, 0x00, // ##
0x30, 0x00, // ##
0x7C, 0x00, // #####
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @1248 'G' (11 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x1E, 0x80, // #### #
0x31, 0x80, // ## ##
0x60, 0x80, // ## #
0x60, 0x00, // ##
0x60, 0x00, // ##
0x67, 0xC0, // ## #####
0x61, 0x80, // ## ##
0x31, 0x80, // ## ##
0x1F, 0x00, // #####
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @1280 'H' (11 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x7B, 0xC0, // #### ####
0x31, 0x80, // ## ##
0x31, 0x80, // ## ##
0x31, 0x80, // ## ##
0x3F, 0x80, // #######
0x31, 0x80, // ## ##
0x31, 0x80, // ## ##
0x31, 0x80, // ## ##
0x7B, 0xC0, // #### ####
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @1312 'I' (11 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x3F, 0xC0, // ########
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x3F, 0xC0, // ########
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @1344 'J' (11 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x1F, 0xC0, // #######
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x63, 0x00, // ## ##
0x63, 0x00, // ## ##
0x63, 0x00, // ## ##
0x3E, 0x00, // #####
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @1376 'K' (11 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x7B, 0xC0, // #### ####
0x31, 0x80, // ## ##
0x33, 0x00, // ## ##
0x36, 0x00, // ## ##
0x3C, 0x00, // ####
0x3E, 0x00, // #####
0x33, 0x00, // ## ##
0x31, 0x80, // ## ##
0x79, 0xC0, // #### ###
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @1408 'L' (11 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x7E, 0x00, // ######
0x18, 0x00, // ##
0x18, 0x00, // ##
0x18, 0x00, // ##
0x18, 0x00, // ##
0x18, 0x40, // ## #
0x18, 0x40, // ## #
0x18, 0x40, // ## #
0x7F, 0xC0, // #########
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @1440 'M' (11 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0xE0, 0xE0, // ### ###
0x60, 0xC0, // ## ##
0x71, 0xC0, // ### ###
0x7B, 0xC0, // #### ####
0x6A, 0xC0, // ## # # ##
0x6E, 0xC0, // ## ### ##
0x64, 0xC0, // ## # ##
0x60, 0xC0, // ## ##
0xFB, 0xE0, // ##### #####
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @1472 'N' (11 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x73, 0xC0, // ### ####
0x31, 0x80, // ## ##
0x39, 0x80, // ### ##
0x3D, 0x80, // #### ##
0x35, 0x80, // ## # ##
0x37, 0x80, // ## ####
0x33, 0x80, // ## ###
0x31, 0x80, // ## ##
0x79, 0x80, // #### ##
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @1504 'O' (11 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x1F, 0x00, // #####
0x31, 0x80, // ## ##
0x60, 0xC0, // ## ##
0x60, 0xC0, // ## ##
0x60, 0xC0, // ## ##
0x60, 0xC0, // ## ##
0x60, 0xC0, // ## ##
0x31, 0x80, // ## ##
0x1F, 0x00, // #####
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @1536 'P' (11 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x7F, 0x00, // #######
0x31, 0x80, // ## ##
0x31, 0x80, // ## ##
0x31, 0x80, // ## ##
0x31, 0x80, // ## ##
0x3F, 0x00, // ######
0x30, 0x00, // ##
0x30, 0x00, // ##
0x7E, 0x00, // ######
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @1568 'Q' (11 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x1F, 0x00, // #####
0x31, 0x80, // ## ##
0x60, 0xC0, // ## ##
0x60, 0xC0, // ## ##
0x60, 0xC0, // ## ##
0x60, 0xC0, // ## ##
0x60, 0xC0, // ## ##
0x31, 0x80, // ## ##
0x1F, 0x00, // #####
0x0C, 0xC0, // ## ##
0x1F, 0x80, // ######
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @1600 'R' (11 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x7F, 0x00, // #######
0x31, 0x80, // ## ##
0x31, 0x80, // ## ##
0x31, 0x80, // ## ##
0x3E, 0x00, // #####
0x33, 0x00, // ## ##
0x31, 0x80, // ## ##
0x31, 0x80, // ## ##
0x7C, 0xE0, // ##### ###
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @1632 'S' (11 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x1F, 0x80, // ######
0x31, 0x80, // ## ##
0x31, 0x80, // ## ##
0x38, 0x00, // ###
0x1F, 0x00, // #####
0x03, 0x80, // ###
0x31, 0x80, // ## ##
0x31, 0x80, // ## ##
0x3F, 0x00, // ######
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @1664 'T' (11 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x7F, 0x80, // ########
0x4C, 0x80, // # ## #
0x4C, 0x80, // # ## #
0x4C, 0x80, // # ## #
0x0C, 0x00, // ##
0x0C, 0x00, // ##
0x0C, 0x00, // ##
0x0C, 0x00, // ##
0x3F, 0x00, // ######
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @1696 'U' (11 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x7B, 0xC0, // #### ####
0x31, 0x80, // ## ##
0x31, 0x80, // ## ##
0x31, 0x80, // ## ##
0x31, 0x80, // ## ##
0x31, 0x80, // ## ##
0x31, 0x80, // ## ##
0x31, 0x80, // ## ##
0x1F, 0x00, // #####
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @1728 'V' (11 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x7B, 0xC0, // #### ####
0x31, 0x80, // ## ##
0x31, 0x80, // ## ##
0x1B, 0x00, // ## ##
0x1B, 0x00, // ## ##
0x1B, 0x00, // ## ##
0x0A, 0x00, // # #
0x0E, 0x00, // ###
0x0E, 0x00, // ###
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @1760 'W' (11 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0xFB, 0xE0, // ##### #####
0x60, 0xC0, // ## ##
0x64, 0xC0, // ## # ##
0x6E, 0xC0, // ## ### ##
0x6E, 0xC0, // ## ### ##
0x2A, 0x80, // # # # #
0x3B, 0x80, // ### ###
0x3B, 0x80, // ### ###
0x31, 0x80, // ## ##
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @1792 'X' (11 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x7B, 0xC0, // #### ####
0x31, 0x80, // ## ##
0x1B, 0x00, // ## ##
0x0E, 0x00, // ###
0x0E, 0x00, // ###
0x0E, 0x00, // ###
0x1B, 0x00, // ## ##
0x31, 0x80, // ## ##
0x7B, 0xC0, // #### ####
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @1824 'Y' (11 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x79, 0xE0, // #### ####
0x30, 0xC0, // ## ##
0x19, 0x80, // ## ##
0x0F, 0x00, // ####
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x1F, 0x80, // ######
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @1856 'Z' (11 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x3F, 0x80, // #######
0x21, 0x80, // # ##
0x23, 0x00, // # ##
0x06, 0x00, // ##
0x04, 0x00, // #
0x0C, 0x00, // ##
0x18, 0x80, // ## #
0x30, 0x80, // ## #
0x3F, 0x80, // #######
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @1888 '[' (11 pixels wide)
0x00, 0x00, //
0x07, 0x80, // ####
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x07, 0x80, // ####
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @1920 '\' (11 pixels wide)
0x30, 0x00, // ##
0x30, 0x00, // ##
0x18, 0x00, // ##
0x18, 0x00, // ##
0x0C, 0x00, // ##
0x0C, 0x00, // ##
0x06, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x01, 0x80, // ##
0x01, 0x80, // ##
0x00, 0xC0, // ##
0x00, 0xC0, // ##
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @1952 ']' (11 pixels wide)
0x00, 0x00, //
0x1E, 0x00, // ####
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x1E, 0x00, // ####
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @1984 '^' (11 pixels wide)
0x04, 0x00, // #
0x0A, 0x00, // # #
0x0A, 0x00, // # #
0x11, 0x00, // # #
0x20, 0x80, // # #
0x20, 0x80, // # #
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @2016 '_' (11 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0xFF, 0xE0, // ###########
// @2048 '`' (11 pixels wide)
0x08, 0x00, // #
0x04, 0x00, // #
0x02, 0x00, // #
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @2080 'a' (11 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x1F, 0x00, // #####
0x01, 0x80, // ##
0x01, 0x80, // ##
0x1F, 0x80, // ######
0x31, 0x80, // ## ##
0x33, 0x80, // ## ###
0x1D, 0xC0, // ### ###
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @2112 'b' (11 pixels wide)
0x00, 0x00, //
0x70, 0x00, // ###
0x30, 0x00, // ##
0x30, 0x00, // ##
0x37, 0x00, // ## ###
0x39, 0x80, // ### ##
0x30, 0xC0, // ## ##
0x30, 0xC0, // ## ##
0x30, 0xC0, // ## ##
0x39, 0x80, // ### ##
0x77, 0x00, // ### ###
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @2144 'c' (11 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x1E, 0x80, // #### #
0x31, 0x80, // ## ##
0x60, 0x80, // ## #
0x60, 0x00, // ##
0x60, 0x80, // ## #
0x31, 0x80, // ## ##
0x1F, 0x00, // #####
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @2176 'd' (11 pixels wide)
0x00, 0x00, //
0x03, 0x80, // ###
0x01, 0x80, // ##
0x01, 0x80, // ##
0x1D, 0x80, // ### ##
0x33, 0x80, // ## ###
0x61, 0x80, // ## ##
0x61, 0x80, // ## ##
0x61, 0x80, // ## ##
0x33, 0x80, // ## ###
0x1D, 0xC0, // ### ###
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @2208 'e' (11 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x1F, 0x00, // #####
0x31, 0x80, // ## ##
0x60, 0xC0, // ## ##
0x7F, 0xC0, // #########
0x60, 0x00, // ##
0x30, 0xC0, // ## ##
0x1F, 0x80, // ######
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @2240 'f' (11 pixels wide)
0x00, 0x00, //
0x07, 0xE0, // ######
0x0C, 0x00, // ##
0x0C, 0x00, // ##
0x3F, 0x80, // #######
0x0C, 0x00, // ##
0x0C, 0x00, // ##
0x0C, 0x00, // ##
0x0C, 0x00, // ##
0x0C, 0x00, // ##
0x3F, 0x80, // #######
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @2272 'g' (11 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x1D, 0xC0, // ### ###
0x33, 0x80, // ## ###
0x61, 0x80, // ## ##
0x61, 0x80, // ## ##
0x61, 0x80, // ## ##
0x33, 0x80, // ## ###
0x1D, 0x80, // ### ##
0x01, 0x80, // ##
0x01, 0x80, // ##
0x1F, 0x00, // #####
0x00, 0x00, //
0x00, 0x00, //
// @2304 'h' (11 pixels wide)
0x00, 0x00, //
0x70, 0x00, // ###
0x30, 0x00, // ##
0x30, 0x00, // ##
0x37, 0x00, // ## ###
0x39, 0x80, // ### ##
0x31, 0x80, // ## ##
0x31, 0x80, // ## ##
0x31, 0x80, // ## ##
0x31, 0x80, // ## ##
0x7B, 0xC0, // #### ####
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @2336 'i' (11 pixels wide)
0x00, 0x00, //
0x06, 0x00, // ##
0x06, 0x00, // ##
0x00, 0x00, //
0x1E, 0x00, // ####
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x3F, 0xC0, // ########
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @2368 'j' (11 pixels wide)
0x00, 0x00, //
0x06, 0x00, // ##
0x06, 0x00, // ##
0x00, 0x00, //
0x3F, 0x00, // ######
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x3E, 0x00, // #####
0x00, 0x00, //
0x00, 0x00, //
// @2400 'k' (11 pixels wide)
0x00, 0x00, //
0x70, 0x00, // ###
0x30, 0x00, // ##
0x30, 0x00, // ##
0x37, 0x80, // ## ####
0x36, 0x00, // ## ##
0x3C, 0x00, // ####
0x3C, 0x00, // ####
0x36, 0x00, // ## ##
0x33, 0x00, // ## ##
0x77, 0xC0, // ### #####
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @2432 'l' (11 pixels wide)
0x00, 0x00, //
0x1E, 0x00, // ####
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x3F, 0xC0, // ########
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @2464 'm' (11 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x7F, 0x80, // ########
0x36, 0xC0, // ## ## ##
0x36, 0xC0, // ## ## ##
0x36, 0xC0, // ## ## ##
0x36, 0xC0, // ## ## ##
0x36, 0xC0, // ## ## ##
0x76, 0xE0, // ### ## ###
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @2496 'n' (11 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x77, 0x00, // ### ###
0x39, 0x80, // ### ##
0x31, 0x80, // ## ##
0x31, 0x80, // ## ##
0x31, 0x80, // ## ##
0x31, 0x80, // ## ##
0x7B, 0xC0, // #### ####
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @2528 'o' (11 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x1F, 0x00, // #####
0x31, 0x80, // ## ##
0x60, 0xC0, // ## ##
0x60, 0xC0, // ## ##
0x60, 0xC0, // ## ##
0x31, 0x80, // ## ##
0x1F, 0x00, // #####
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @2560 'p' (11 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x77, 0x00, // ### ###
0x39, 0x80, // ### ##
0x30, 0xC0, // ## ##
0x30, 0xC0, // ## ##
0x30, 0xC0, // ## ##
0x39, 0x80, // ### ##
0x37, 0x00, // ## ###
0x30, 0x00, // ##
0x30, 0x00, // ##
0x7C, 0x00, // #####
0x00, 0x00, //
0x00, 0x00, //
// @2592 'q' (11 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x1D, 0xC0, // ### ###
0x33, 0x80, // ## ###
0x61, 0x80, // ## ##
0x61, 0x80, // ## ##
0x61, 0x80, // ## ##
0x33, 0x80, // ## ###
0x1D, 0x80, // ### ##
0x01, 0x80, // ##
0x01, 0x80, // ##
0x07, 0xC0, // #####
0x00, 0x00, //
0x00, 0x00, //
// @2624 'r' (11 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x7B, 0x80, // #### ###
0x1C, 0xC0, // ### ##
0x18, 0x00, // ##
0x18, 0x00, // ##
0x18, 0x00, // ##
0x18, 0x00, // ##
0x7F, 0x00, // #######
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @2656 's' (11 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x1F, 0x80, // ######
0x31, 0x80, // ## ##
0x3C, 0x00, // ####
0x1F, 0x00, // #####
0x03, 0x80, // ###
0x31, 0x80, // ## ##
0x3F, 0x00, // ######
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @2688 't' (11 pixels wide)
0x00, 0x00, //
0x18, 0x00, // ##
0x18, 0x00, // ##
0x18, 0x00, // ##
0x7F, 0x00, // #######
0x18, 0x00, // ##
0x18, 0x00, // ##
0x18, 0x00, // ##
0x18, 0x00, // ##
0x18, 0x80, // ## #
0x0F, 0x00, // ####
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @2720 'u' (11 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x73, 0x80, // ### ###
0x31, 0x80, // ## ##
0x31, 0x80, // ## ##
0x31, 0x80, // ## ##
0x31, 0x80, // ## ##
0x33, 0x80, // ## ###
0x1D, 0xC0, // ### ###
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @2752 'v' (11 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x7B, 0xC0, // #### ####
0x31, 0x80, // ## ##
0x31, 0x80, // ## ##
0x1B, 0x00, // ## ##
0x1B, 0x00, // ## ##
0x0E, 0x00, // ###
0x0E, 0x00, // ###
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @2784 'w' (11 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0xF1, 0xE0, // #### ####
0x60, 0xC0, // ## ##
0x64, 0xC0, // ## # ##
0x6E, 0xC0, // ## ### ##
0x3B, 0x80, // ### ###
0x3B, 0x80, // ### ###
0x31, 0x80, // ## ##
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @2816 'x' (11 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x7B, 0xC0, // #### ####
0x1B, 0x00, // ## ##
0x0E, 0x00, // ###
0x0E, 0x00, // ###
0x0E, 0x00, // ###
0x1B, 0x00, // ## ##
0x7B, 0xC0, // #### ####
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @2848 'y' (11 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x79, 0xE0, // #### ####
0x30, 0xC0, // ## ##
0x19, 0x80, // ## ##
0x19, 0x80, // ## ##
0x0B, 0x00, // # ##
0x0F, 0x00, // ####
0x06, 0x00, // ##
0x06, 0x00, // ##
0x0C, 0x00, // ##
0x3E, 0x00, // #####
0x00, 0x00, //
0x00, 0x00, //
// @2880 'z' (11 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x3F, 0x80, // #######
0x21, 0x80, // # ##
0x03, 0x00, // ##
0x0E, 0x00, // ###
0x18, 0x00, // ##
0x30, 0x80, // ## #
0x3F, 0x80, // #######
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @2912 '{' (11 pixels wide)
0x00, 0x00, //
0x06, 0x00, // ##
0x0C, 0x00, // ##
0x0C, 0x00, // ##
0x0C, 0x00, // ##
0x0C, 0x00, // ##
0x0C, 0x00, // ##
0x18, 0x00, // ##
0x0C, 0x00, // ##
0x0C, 0x00, // ##
0x0C, 0x00, // ##
0x0C, 0x00, // ##
0x06, 0x00, // ##
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @2944 '|' (11 pixels wide)
0x00, 0x00, //
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @2976 '}' (11 pixels wide)
0x00, 0x00, //
0x0C, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x03, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x0C, 0x00, // ##
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @3008 '~' (11 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x18, 0x00, // ##
0x24, 0x80, // # # #
0x03, 0x00, // ##
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
};
sFONT Font16 = {
Font16_Table,
11, /* Width */
16, /* Height */
};
/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
/**
******************************************************************************
* @file font20.c
* @author MCD Application Team
* @version V1.0.0
* @date 18-February-2014
* @brief This file provides text font20 for STM32xx-EVAL's LCD driver.
******************************************************************************
* @attention
*
* <h2><center>&copy; COPYRIGHT(c) 2014 STMicroelectronics</center></h2>
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* 3. Neither the name of STMicroelectronics nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
******************************************************************************
*/
/* Includes ------------------------------------------------------------------*/
#include "fonts.h"
// Character bitmaps for Courier New 15pt
const uint8_t Font20_Table[] =
{
// @0 ' ' (14 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @40 '!' (14 pixels wide)
0x00, 0x00, //
0x07, 0x00, // ###
0x07, 0x00, // ###
0x07, 0x00, // ###
0x07, 0x00, // ###
0x07, 0x00, // ###
0x07, 0x00, // ###
0x07, 0x00, // ###
0x02, 0x00, // #
0x02, 0x00, // #
0x00, 0x00, //
0x00, 0x00, //
0x07, 0x00, // ###
0x07, 0x00, // ###
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @80 '"' (14 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x1C, 0xE0, // ### ###
0x1C, 0xE0, // ### ###
0x1C, 0xE0, // ### ###
0x08, 0x40, // # #
0x08, 0x40, // # #
0x08, 0x40, // # #
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @120 '#' (14 pixels wide)
0x0C, 0xC0, // ## ##
0x0C, 0xC0, // ## ##
0x0C, 0xC0, // ## ##
0x0C, 0xC0, // ## ##
0x0C, 0xC0, // ## ##
0x3F, 0xF0, // ##########
0x3F, 0xF0, // ##########
0x0C, 0xC0, // ## ##
0x0C, 0xC0, // ## ##
0x3F, 0xF0, // ##########
0x3F, 0xF0, // ##########
0x0C, 0xC0, // ## ##
0x0C, 0xC0, // ## ##
0x0C, 0xC0, // ## ##
0x0C, 0xC0, // ## ##
0x0C, 0xC0, // ## ##
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @160 '$' (14 pixels wide)
0x03, 0x00, // ##
0x03, 0x00, // ##
0x07, 0xE0, // ######
0x0F, 0xE0, // #######
0x18, 0x60, // ## ##
0x18, 0x00, // ##
0x1F, 0x00, // #####
0x0F, 0xC0, // ######
0x00, 0xE0, // ###
0x18, 0x60, // ## ##
0x18, 0x60, // ## ##
0x1F, 0xC0, // #######
0x1F, 0x80, // ######
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @200 '%' (14 pixels wide)
0x00, 0x00, //
0x1C, 0x00, // ###
0x22, 0x00, // # #
0x22, 0x00, // # #
0x22, 0x00, // # #
0x1C, 0x60, // ### ##
0x01, 0xE0, // ####
0x0F, 0x80, // #####
0x3C, 0x00, // ####
0x31, 0xC0, // ## ###
0x02, 0x20, // # #
0x02, 0x20, // # #
0x02, 0x20, // # #
0x01, 0xC0, // ###
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @240 '&' (14 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x03, 0xE0, // #####
0x0F, 0xE0, // #######
0x0C, 0x00, // ##
0x0C, 0x00, // ##
0x06, 0x00, // ##
0x0F, 0x30, // #### ##
0x1F, 0xF0, // #########
0x19, 0xE0, // ## ####
0x18, 0xC0, // ## ##
0x1F, 0xF0, // #########
0x07, 0xB0, // #### ##
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @280 ''' (14 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x03, 0x80, // ###
0x03, 0x80, // ###
0x03, 0x80, // ###
0x01, 0x00, // #
0x01, 0x00, // #
0x01, 0x00, // #
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @320 '(' (14 pixels wide)
0x00, 0x00, //
0x00, 0xC0, // ##
0x00, 0xC0, // ##
0x01, 0x80, // ##
0x01, 0x80, // ##
0x01, 0x80, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x01, 0x80, // ##
0x01, 0x80, // ##
0x01, 0x80, // ##
0x00, 0xC0, // ##
0x00, 0xC0, // ##
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @360 ')' (14 pixels wide)
0x00, 0x00, //
0x0C, 0x00, // ##
0x0C, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x0C, 0x00, // ##
0x0C, 0x00, // ##
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @400 '*' (14 pixels wide)
0x00, 0x00, //
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x1B, 0x60, // ## ## ##
0x1F, 0xE0, // ########
0x07, 0x80, // ####
0x07, 0x80, // ####
0x0F, 0xC0, // ######
0x0C, 0xC0, // ## ##
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @440 '+' (14 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x3F, 0xF0, // ##########
0x3F, 0xF0, // ##########
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @480 ',' (14 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x03, 0x80, // ###
0x03, 0x00, // ##
0x03, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x04, 0x00, // #
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @520 '-' (14 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x3F, 0xE0, // #########
0x3F, 0xE0, // #########
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @560 '.' (14 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x03, 0x80, // ###
0x03, 0x80, // ###
0x03, 0x80, // ###
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @600 '/' (14 pixels wide)
0x00, 0x60, // ##
0x00, 0x60, // ##
0x00, 0xC0, // ##
0x00, 0xC0, // ##
0x00, 0xC0, // ##
0x01, 0x80, // ##
0x01, 0x80, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x0C, 0x00, // ##
0x0C, 0x00, // ##
0x0C, 0x00, // ##
0x18, 0x00, // ##
0x18, 0x00, // ##
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @640 '0' (14 pixels wide)
0x00, 0x00, //
0x0F, 0x80, // #####
0x1F, 0xC0, // #######
0x18, 0xC0, // ## ##
0x30, 0x60, // ## ##
0x30, 0x60, // ## ##
0x30, 0x60, // ## ##
0x30, 0x60, // ## ##
0x30, 0x60, // ## ##
0x30, 0x60, // ## ##
0x30, 0x60, // ## ##
0x18, 0xC0, // ## ##
0x1F, 0xC0, // #######
0x0F, 0x80, // #####
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @680 '1' (14 pixels wide)
0x00, 0x00, //
0x03, 0x00, // ##
0x1F, 0x00, // #####
0x1F, 0x00, // #####
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x1F, 0xE0, // ########
0x1F, 0xE0, // ########
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @720 '2' (14 pixels wide)
0x00, 0x00, //
0x0F, 0x80, // #####
0x1F, 0xC0, // #######
0x38, 0xE0, // ### ###
0x30, 0x60, // ## ##
0x00, 0x60, // ##
0x00, 0xC0, // ##
0x01, 0x80, // ##
0x03, 0x00, // ##
0x06, 0x00, // ##
0x0C, 0x00, // ##
0x18, 0x00, // ##
0x3F, 0xE0, // #########
0x3F, 0xE0, // #########
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @760 '3' (14 pixels wide)
0x00, 0x00, //
0x0F, 0x80, // #####
0x3F, 0xC0, // ########
0x30, 0xE0, // ## ###
0x00, 0x60, // ##
0x00, 0xE0, // ###
0x07, 0xC0, // #####
0x07, 0xC0, // #####
0x00, 0xE0, // ###
0x00, 0x60, // ##
0x00, 0x60, // ##
0x60, 0xE0, // ## ###
0x7F, 0xC0, // #########
0x3F, 0x80, // #######
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @800 '4' (14 pixels wide)
0x00, 0x00, //
0x01, 0xC0, // ###
0x03, 0xC0, // ####
0x03, 0xC0, // ####
0x06, 0xC0, // ## ##
0x0C, 0xC0, // ## ##
0x0C, 0xC0, // ## ##
0x18, 0xC0, // ## ##
0x30, 0xC0, // ## ##
0x3F, 0xE0, // #########
0x3F, 0xE0, // #########
0x00, 0xC0, // ##
0x03, 0xE0, // #####
0x03, 0xE0, // #####
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @840 '5' (14 pixels wide)
0x00, 0x00, //
0x1F, 0xC0, // #######
0x1F, 0xC0, // #######
0x18, 0x00, // ##
0x18, 0x00, // ##
0x1F, 0x80, // ######
0x1F, 0xC0, // #######
0x18, 0xE0, // ## ###
0x00, 0x60, // ##
0x00, 0x60, // ##
0x00, 0x60, // ##
0x30, 0xE0, // ## ###
0x3F, 0xC0, // ########
0x1F, 0x80, // ######
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @880 '6' (14 pixels wide)
0x00, 0x00, //
0x03, 0xE0, // #####
0x0F, 0xE0, // #######
0x1E, 0x00, // ####
0x18, 0x00, // ##
0x38, 0x00, // ###
0x37, 0x80, // ## ####
0x3F, 0xC0, // ########
0x38, 0xE0, // ### ###
0x30, 0x60, // ## ##
0x30, 0x60, // ## ##
0x18, 0xE0, // ## ###
0x1F, 0xC0, // #######
0x07, 0x80, // ####
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @920 '7' (14 pixels wide)
0x00, 0x00, //
0x3F, 0xE0, // #########
0x3F, 0xE0, // #########
0x30, 0x60, // ## ##
0x00, 0x60, // ##
0x00, 0xC0, // ##
0x00, 0xC0, // ##
0x00, 0xC0, // ##
0x01, 0x80, // ##
0x01, 0x80, // ##
0x01, 0x80, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @960 '8' (14 pixels wide)
0x00, 0x00, //
0x0F, 0x80, // #####
0x1F, 0xC0, // #######
0x38, 0xE0, // ### ###
0x30, 0x60, // ## ##
0x38, 0xE0, // ### ###
0x1F, 0xC0, // #######
0x1F, 0xC0, // #######
0x38, 0xE0, // ### ###
0x30, 0x60, // ## ##
0x30, 0x60, // ## ##
0x38, 0xE0, // ### ###
0x1F, 0xC0, // #######
0x0F, 0x80, // #####
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @1000 '9' (14 pixels wide)
0x00, 0x00, //
0x0F, 0x00, // ####
0x1F, 0xC0, // #######
0x38, 0xC0, // ### ##
0x30, 0x60, // ## ##
0x30, 0x60, // ## ##
0x38, 0xE0, // ### ###
0x1F, 0xE0, // ########
0x0F, 0x60, // #### ##
0x00, 0xE0, // ###
0x00, 0xC0, // ##
0x03, 0xC0, // ####
0x3F, 0x80, // #######
0x3E, 0x00, // #####
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @1040 ':' (14 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x03, 0x80, // ###
0x03, 0x80, // ###
0x03, 0x80, // ###
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x03, 0x80, // ###
0x03, 0x80, // ###
0x03, 0x80, // ###
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @1080 ';' (14 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x01, 0xC0, // ###
0x01, 0xC0, // ###
0x01, 0xC0, // ###
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x03, 0x80, // ###
0x03, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x04, 0x00, // #
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @1120 '<' (14 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x30, // ##
0x00, 0xF0, // ####
0x03, 0xC0, // ####
0x07, 0x00, // ###
0x1C, 0x00, // ###
0x78, 0x00, // ####
0x1C, 0x00, // ###
0x07, 0x00, // ###
0x03, 0xC0, // ####
0x00, 0xF0, // ####
0x00, 0x30, // ##
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @1160 '=' (14 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x7F, 0xF0, // ###########
0x7F, 0xF0, // ###########
0x00, 0x00, //
0x00, 0x00, //
0x7F, 0xF0, // ###########
0x7F, 0xF0, // ###########
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @1200 '>' (14 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x30, 0x00, // ##
0x3C, 0x00, // ####
0x0F, 0x00, // ####
0x03, 0x80, // ###
0x00, 0xE0, // ###
0x00, 0x78, // ####
0x00, 0xE0, // ###
0x03, 0x80, // ###
0x0F, 0x00, // ####
0x3C, 0x00, // ####
0x30, 0x00, // ##
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @1240 '?' (14 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x0F, 0x80, // #####
0x1F, 0xC0, // #######
0x18, 0x60, // ## ##
0x18, 0x60, // ## ##
0x00, 0x60, // ##
0x01, 0xC0, // ###
0x03, 0x80, // ###
0x03, 0x00, // ##
0x00, 0x00, //
0x00, 0x00, //
0x07, 0x00, // ###
0x07, 0x00, // ###
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @1280 '@' (14 pixels wide)
0x00, 0x00, //
0x03, 0x80, // ###
0x0C, 0x80, // ## #
0x08, 0x40, // # #
0x10, 0x40, // # #
0x10, 0x40, // # #
0x11, 0xC0, // # ###
0x12, 0x40, // # # #
0x12, 0x40, // # # #
0x12, 0x40, // # # #
0x11, 0xC0, // # ###
0x10, 0x00, // #
0x08, 0x00, // #
0x08, 0x40, // # #
0x07, 0x80, // ####
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @1320 'A' (14 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x1F, 0x80, // ######
0x1F, 0x80, // ######
0x03, 0x80, // ###
0x06, 0xC0, // ## ##
0x06, 0xC0, // ## ##
0x0C, 0xC0, // ## ##
0x0C, 0x60, // ## ##
0x1F, 0xE0, // ########
0x1F, 0xE0, // ########
0x30, 0x30, // ## ##
0x78, 0x78, // #### ####
0x78, 0x78, // #### ####
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @1360 'B' (14 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x3F, 0x80, // #######
0x3F, 0xC0, // ########
0x18, 0x60, // ## ##
0x18, 0x60, // ## ##
0x18, 0xE0, // ## ###
0x1F, 0xC0, // #######
0x1F, 0xE0, // ########
0x18, 0x70, // ## ###
0x18, 0x30, // ## ##
0x18, 0x30, // ## ##
0x3F, 0xF0, // ##########
0x3F, 0xE0, // #########
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @1400 'C' (14 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x07, 0xB0, // #### ##
0x0F, 0xF0, // ########
0x1C, 0x70, // ### ###
0x38, 0x30, // ### ##
0x30, 0x00, // ##
0x30, 0x00, // ##
0x30, 0x00, // ##
0x30, 0x00, // ##
0x38, 0x30, // ### ##
0x1C, 0x70, // ### ###
0x0F, 0xE0, // #######
0x07, 0xC0, // #####
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @1440 'D' (14 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x7F, 0x80, // ########
0x7F, 0xC0, // #########
0x30, 0xE0, // ## ###
0x30, 0x70, // ## ###
0x30, 0x30, // ## ##
0x30, 0x30, // ## ##
0x30, 0x30, // ## ##
0x30, 0x30, // ## ##
0x30, 0x70, // ## ###
0x30, 0xE0, // ## ###
0x7F, 0xC0, // #########
0x7F, 0x80, // ########
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @1480 'E' (14 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x3F, 0xF0, // ##########
0x3F, 0xF0, // ##########
0x18, 0x30, // ## ##
0x18, 0x30, // ## ##
0x19, 0x80, // ## ##
0x1F, 0x80, // ######
0x1F, 0x80, // ######
0x19, 0x80, // ## ##
0x18, 0x30, // ## ##
0x18, 0x30, // ## ##
0x3F, 0xF0, // ##########
0x3F, 0xF0, // ##########
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @1520 'F' (14 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x3F, 0xF0, // ##########
0x3F, 0xF0, // ##########
0x18, 0x30, // ## ##
0x18, 0x30, // ## ##
0x19, 0x80, // ## ##
0x1F, 0x80, // ######
0x1F, 0x80, // ######
0x19, 0x80, // ## ##
0x18, 0x00, // ##
0x18, 0x00, // ##
0x3F, 0x00, // ######
0x3F, 0x00, // ######
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @1560 'G' (14 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x07, 0xB0, // #### ##
0x1F, 0xF0, // #########
0x18, 0x70, // ## ###
0x30, 0x30, // ## ##
0x30, 0x00, // ##
0x30, 0x00, // ##
0x31, 0xF8, // ## ######
0x31, 0xF8, // ## ######
0x30, 0x30, // ## ##
0x18, 0x30, // ## ##
0x1F, 0xF0, // #########
0x07, 0xC0, // #####
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @1600 'H' (14 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x3C, 0xF0, // #### ####
0x3C, 0xF0, // #### ####
0x18, 0x60, // ## ##
0x18, 0x60, // ## ##
0x18, 0x60, // ## ##
0x1F, 0xE0, // ########
0x1F, 0xE0, // ########
0x18, 0x60, // ## ##
0x18, 0x60, // ## ##
0x18, 0x60, // ## ##
0x3C, 0xF0, // #### ####
0x3C, 0xF0, // #### ####
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @1640 'I' (14 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x1F, 0xE0, // ########
0x1F, 0xE0, // ########
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x1F, 0xE0, // ########
0x1F, 0xE0, // ########
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @1680 'J' (14 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x03, 0xF8, // #######
0x03, 0xF8, // #######
0x00, 0x60, // ##
0x00, 0x60, // ##
0x00, 0x60, // ##
0x00, 0x60, // ##
0x30, 0x60, // ## ##
0x30, 0x60, // ## ##
0x30, 0x60, // ## ##
0x30, 0xE0, // ## ###
0x3F, 0xC0, // ########
0x0F, 0x80, // #####
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @1720 'K' (14 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x3E, 0xF8, // ##### #####
0x3E, 0xF8, // ##### #####
0x18, 0xE0, // ## ###
0x19, 0x80, // ## ##
0x1B, 0x00, // ## ##
0x1F, 0x00, // #####
0x1D, 0x80, // ### ##
0x18, 0xC0, // ## ##
0x18, 0xC0, // ## ##
0x18, 0x60, // ## ##
0x3E, 0x78, // ##### ####
0x3E, 0x38, // ##### ###
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @1760 'L' (14 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x3F, 0x00, // ######
0x3F, 0x00, // ######
0x0C, 0x00, // ##
0x0C, 0x00, // ##
0x0C, 0x00, // ##
0x0C, 0x00, // ##
0x0C, 0x00, // ##
0x0C, 0x30, // ## ##
0x0C, 0x30, // ## ##
0x0C, 0x30, // ## ##
0x3F, 0xF0, // ##########
0x3F, 0xF0, // ##########
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @1800 'M' (14 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x78, 0x78, // #### ####
0x78, 0x78, // #### ####
0x38, 0x70, // ### ###
0x3C, 0xF0, // #### ####
0x34, 0xB0, // ## # # ##
0x37, 0xB0, // ## #### ##
0x37, 0xB0, // ## #### ##
0x33, 0x30, // ## ## ##
0x33, 0x30, // ## ## ##
0x30, 0x30, // ## ##
0x7C, 0xF8, // ##### #####
0x7C, 0xF8, // ##### #####
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @1840 'N' (14 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x39, 0xF0, // ### #####
0x3D, 0xF0, // #### #####
0x1C, 0x60, // ### ##
0x1E, 0x60, // #### ##
0x1E, 0x60, // #### ##
0x1B, 0x60, // ## ## ##
0x1B, 0x60, // ## ## ##
0x19, 0xE0, // ## ####
0x19, 0xE0, // ## ####
0x18, 0xE0, // ## ###
0x3E, 0xE0, // ##### ###
0x3E, 0x60, // ##### ##
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @1880 'O' (14 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x07, 0x80, // ####
0x0F, 0xC0, // ######
0x1C, 0xE0, // ### ###
0x38, 0x70, // ### ###
0x30, 0x30, // ## ##
0x30, 0x30, // ## ##
0x30, 0x30, // ## ##
0x30, 0x30, // ## ##
0x38, 0x70, // ### ###
0x1C, 0xE0, // ### ###
0x0F, 0xC0, // ######
0x07, 0x80, // ####
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @1920 'P' (14 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x3F, 0xC0, // ########
0x3F, 0xE0, // #########
0x18, 0x70, // ## ###
0x18, 0x30, // ## ##
0x18, 0x30, // ## ##
0x18, 0x70, // ## ###
0x1F, 0xE0, // ########
0x1F, 0xC0, // #######
0x18, 0x00, // ##
0x18, 0x00, // ##
0x3F, 0x00, // ######
0x3F, 0x00, // ######
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @1960 'Q' (14 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x07, 0x80, // ####
0x0F, 0xC0, // ######
0x1C, 0xE0, // ### ###
0x38, 0x70, // ### ###
0x30, 0x30, // ## ##
0x30, 0x30, // ## ##
0x30, 0x30, // ## ##
0x30, 0x30, // ## ##
0x38, 0x70, // ### ###
0x1C, 0xE0, // ### ###
0x0F, 0xC0, // ######
0x07, 0x80, // ####
0x07, 0xB0, // #### ##
0x0F, 0xF0, // ########
0x0C, 0xE0, // ## ###
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @2000 'R' (14 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x3F, 0xC0, // ########
0x3F, 0xE0, // #########
0x18, 0x70, // ## ###
0x18, 0x30, // ## ##
0x18, 0x70, // ## ###
0x1F, 0xE0, // ########
0x1F, 0xC0, // #######
0x18, 0xE0, // ## ###
0x18, 0x60, // ## ##
0x18, 0x70, // ## ###
0x3E, 0x38, // ##### ###
0x3E, 0x18, // ##### ##
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @2040 'S' (14 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x0F, 0xB0, // ##### ##
0x1F, 0xF0, // #########
0x38, 0x70, // ### ###
0x30, 0x30, // ## ##
0x38, 0x00, // ###
0x1F, 0x80, // ######
0x07, 0xE0, // ######
0x00, 0x70, // ###
0x30, 0x30, // ## ##
0x38, 0x70, // ### ###
0x3F, 0xE0, // #########
0x37, 0xC0, // ## #####
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @2080 'T' (14 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x3F, 0xF0, // ##########
0x3F, 0xF0, // ##########
0x33, 0x30, // ## ## ##
0x33, 0x30, // ## ## ##
0x33, 0x30, // ## ## ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x0F, 0xC0, // ######
0x0F, 0xC0, // ######
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @2120 'U' (14 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x3C, 0xF0, // #### ####
0x3C, 0xF0, // #### ####
0x18, 0x60, // ## ##
0x18, 0x60, // ## ##
0x18, 0x60, // ## ##
0x18, 0x60, // ## ##
0x18, 0x60, // ## ##
0x18, 0x60, // ## ##
0x18, 0x60, // ## ##
0x1C, 0xE0, // ### ###
0x0F, 0xC0, // ######
0x07, 0x80, // ####
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @2160 'V' (14 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x78, 0xF0, // #### ####
0x78, 0xF0, // #### ####
0x30, 0x60, // ## ##
0x30, 0x60, // ## ##
0x18, 0xC0, // ## ##
0x18, 0xC0, // ## ##
0x0D, 0x80, // ## ##
0x0D, 0x80, // ## ##
0x0D, 0x80, // ## ##
0x07, 0x00, // ###
0x07, 0x00, // ###
0x07, 0x00, // ###
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @2200 'W' (14 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x7C, 0x7C, // ##### #####
0x7C, 0x7C, // ##### #####
0x30, 0x18, // ## ##
0x33, 0x98, // ## ### ##
0x33, 0x98, // ## ### ##
0x33, 0x98, // ## ### ##
0x36, 0xD8, // ## ## ## ##
0x16, 0xD0, // # ## ## #
0x1C, 0x70, // ### ###
0x1C, 0x70, // ### ###
0x1C, 0x70, // ### ###
0x18, 0x30, // ## ##
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @2240 'X' (14 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x78, 0xF0, // #### ####
0x78, 0xF0, // #### ####
0x30, 0x60, // ## ##
0x18, 0xC0, // ## ##
0x0D, 0x80, // ## ##
0x07, 0x00, // ###
0x07, 0x00, // ###
0x0D, 0x80, // ## ##
0x18, 0xC0, // ## ##
0x30, 0x60, // ## ##
0x78, 0xF0, // #### ####
0x78, 0xF0, // #### ####
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @2280 'Y' (14 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x3C, 0xF0, // #### ####
0x3C, 0xF0, // #### ####
0x18, 0x60, // ## ##
0x0C, 0xC0, // ## ##
0x07, 0x80, // ####
0x07, 0x80, // ####
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x0F, 0xC0, // ######
0x0F, 0xC0, // ######
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @2320 'Z' (14 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x1F, 0xE0, // ########
0x1F, 0xE0, // ########
0x18, 0x60, // ## ##
0x18, 0xC0, // ## ##
0x01, 0x80, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x06, 0x00, // ##
0x0C, 0x60, // ## ##
0x18, 0x60, // ## ##
0x1F, 0xE0, // ########
0x1F, 0xE0, // ########
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @2360 '[' (14 pixels wide)
0x00, 0x00, //
0x03, 0xC0, // ####
0x03, 0xC0, // ####
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0xC0, // ####
0x03, 0xC0, // ####
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @2400 '\' (14 pixels wide)
0x18, 0x00, // ##
0x18, 0x00, // ##
0x0C, 0x00, // ##
0x0C, 0x00, // ##
0x0C, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x01, 0x80, // ##
0x01, 0x80, // ##
0x00, 0xC0, // ##
0x00, 0xC0, // ##
0x00, 0xC0, // ##
0x00, 0x60, // ##
0x00, 0x60, // ##
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @2440 ']' (14 pixels wide)
0x00, 0x00, //
0x0F, 0x00, // ####
0x0F, 0x00, // ####
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x0F, 0x00, // ####
0x0F, 0x00, // ####
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @2480 '^' (14 pixels wide)
0x00, 0x00, //
0x02, 0x00, // #
0x07, 0x00, // ###
0x0D, 0x80, // ## ##
0x18, 0xC0, // ## ##
0x30, 0x60, // ## ##
0x20, 0x20, // # #
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @2520 '_' (14 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0xFF, 0xFC, // ##############
0xFF, 0xFC, // ##############
// @2560 '`' (14 pixels wide)
0x00, 0x00, //
0x04, 0x00, // #
0x03, 0x00, // ##
0x00, 0x80, // #
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @2600 'a' (14 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x0F, 0xC0, // ######
0x1F, 0xE0, // ########
0x00, 0x60, // ##
0x0F, 0xE0, // #######
0x1F, 0xE0, // ########
0x38, 0x60, // ### ##
0x30, 0xE0, // ## ###
0x3F, 0xF0, // ##########
0x1F, 0x70, // ##### ###
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @2640 'b' (14 pixels wide)
0x00, 0x00, //
0x70, 0x00, // ###
0x70, 0x00, // ###
0x30, 0x00, // ##
0x30, 0x00, // ##
0x37, 0x80, // ## ####
0x3F, 0xE0, // #########
0x38, 0x60, // ### ##
0x30, 0x30, // ## ##
0x30, 0x30, // ## ##
0x30, 0x30, // ## ##
0x38, 0x60, // ### ##
0x7F, 0xE0, // ##########
0x77, 0x80, // ### ####
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @2680 'c' (14 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x07, 0xB0, // #### ##
0x1F, 0xF0, // #########
0x18, 0x30, // ## ##
0x30, 0x30, // ## ##
0x30, 0x00, // ##
0x30, 0x00, // ##
0x38, 0x30, // ### ##
0x1F, 0xF0, // #########
0x0F, 0xC0, // ######
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @2720 'd' (14 pixels wide)
0x00, 0x00, //
0x00, 0x70, // ###
0x00, 0x70, // ###
0x00, 0x30, // ##
0x00, 0x30, // ##
0x07, 0xB0, // #### ##
0x1F, 0xF0, // #########
0x18, 0x70, // ## ###
0x30, 0x30, // ## ##
0x30, 0x30, // ## ##
0x30, 0x30, // ## ##
0x38, 0x70, // ### ###
0x1F, 0xF8, // ##########
0x07, 0xB8, // #### ###
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @2760 'e' (14 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x07, 0x80, // ####
0x1F, 0xE0, // ########
0x18, 0x60, // ## ##
0x3F, 0xF0, // ##########
0x3F, 0xF0, // ##########
0x30, 0x00, // ##
0x18, 0x30, // ## ##
0x1F, 0xF0, // #########
0x07, 0xC0, // #####
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @2800 'f' (14 pixels wide)
0x00, 0x00, //
0x03, 0xF0, // ######
0x07, 0xF0, // #######
0x06, 0x00, // ##
0x06, 0x00, // ##
0x1F, 0xE0, // ########
0x1F, 0xE0, // ########
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x1F, 0xE0, // ########
0x1F, 0xE0, // ########
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @2840 'g' (14 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x07, 0xB8, // #### ###
0x1F, 0xF8, // ##########
0x18, 0x70, // ## ###
0x30, 0x30, // ## ##
0x30, 0x30, // ## ##
0x30, 0x30, // ## ##
0x18, 0x70, // ## ###
0x1F, 0xF0, // #########
0x07, 0xB0, // #### ##
0x00, 0x30, // ##
0x00, 0x70, // ###
0x0F, 0xE0, // #######
0x0F, 0xC0, // ######
0x00, 0x00, //
0x00, 0x00, //
// @2880 'h' (14 pixels wide)
0x00, 0x00, //
0x38, 0x00, // ###
0x38, 0x00, // ###
0x18, 0x00, // ##
0x18, 0x00, // ##
0x1B, 0xC0, // ## ####
0x1F, 0xE0, // ########
0x1C, 0x60, // ### ##
0x18, 0x60, // ## ##
0x18, 0x60, // ## ##
0x18, 0x60, // ## ##
0x18, 0x60, // ## ##
0x3C, 0xF0, // #### ####
0x3C, 0xF0, // #### ####
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @2920 'i' (14 pixels wide)
0x00, 0x00, //
0x03, 0x00, // ##
0x03, 0x00, // ##
0x00, 0x00, //
0x00, 0x00, //
0x1F, 0x00, // #####
0x1F, 0x00, // #####
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x1F, 0xE0, // ########
0x1F, 0xE0, // ########
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @2960 'j' (14 pixels wide)
0x00, 0x00, //
0x03, 0x00, // ##
0x03, 0x00, // ##
0x00, 0x00, //
0x00, 0x00, //
0x1F, 0xC0, // #######
0x1F, 0xC0, // #######
0x00, 0xC0, // ##
0x00, 0xC0, // ##
0x00, 0xC0, // ##
0x00, 0xC0, // ##
0x00, 0xC0, // ##
0x00, 0xC0, // ##
0x00, 0xC0, // ##
0x00, 0xC0, // ##
0x01, 0xC0, // ###
0x3F, 0x80, // #######
0x3F, 0x00, // ######
0x00, 0x00, //
0x00, 0x00, //
// @3000 'k' (14 pixels wide)
0x00, 0x00, //
0x38, 0x00, // ###
0x38, 0x00, // ###
0x18, 0x00, // ##
0x18, 0x00, // ##
0x1B, 0xE0, // ## #####
0x1B, 0xE0, // ## #####
0x1B, 0x00, // ## ##
0x1E, 0x00, // ####
0x1E, 0x00, // ####
0x1B, 0x00, // ## ##
0x19, 0x80, // ## ##
0x39, 0xF0, // ### #####
0x39, 0xF0, // ### #####
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @3040 'l' (14 pixels wide)
0x00, 0x00, //
0x1F, 0x00, // #####
0x1F, 0x00, // #####
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x1F, 0xE0, // ########
0x1F, 0xE0, // ########
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @3080 'm' (14 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x7E, 0xE0, // ###### ###
0x7F, 0xF0, // ###########
0x33, 0x30, // ## ## ##
0x33, 0x30, // ## ## ##
0x33, 0x30, // ## ## ##
0x33, 0x30, // ## ## ##
0x33, 0x30, // ## ## ##
0x7B, 0xB8, // #### ### ###
0x7B, 0xB8, // #### ### ###
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @3120 'n' (14 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x3B, 0xC0, // ### ####
0x3F, 0xE0, // #########
0x1C, 0x60, // ### ##
0x18, 0x60, // ## ##
0x18, 0x60, // ## ##
0x18, 0x60, // ## ##
0x18, 0x60, // ## ##
0x3C, 0xF0, // #### ####
0x3C, 0xF0, // #### ####
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @3160 'o' (14 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x07, 0x80, // ####
0x1F, 0xE0, // ########
0x18, 0x60, // ## ##
0x30, 0x30, // ## ##
0x30, 0x30, // ## ##
0x30, 0x30, // ## ##
0x18, 0x60, // ## ##
0x1F, 0xE0, // ########
0x07, 0x80, // ####
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @3200 'p' (14 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x77, 0x80, // ### ####
0x7F, 0xE0, // ##########
0x38, 0x60, // ### ##
0x30, 0x30, // ## ##
0x30, 0x30, // ## ##
0x30, 0x30, // ## ##
0x38, 0x60, // ### ##
0x3F, 0xE0, // #########
0x37, 0x80, // ## ####
0x30, 0x00, // ##
0x30, 0x00, // ##
0x7C, 0x00, // #####
0x7C, 0x00, // #####
0x00, 0x00, //
0x00, 0x00, //
// @3240 'q' (14 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x07, 0xB8, // #### ###
0x1F, 0xF8, // ##########
0x18, 0x70, // ## ###
0x30, 0x30, // ## ##
0x30, 0x30, // ## ##
0x30, 0x30, // ## ##
0x18, 0x70, // ## ###
0x1F, 0xF0, // #########
0x07, 0xB0, // #### ##
0x00, 0x30, // ##
0x00, 0x30, // ##
0x00, 0xF8, // #####
0x00, 0xF8, // #####
0x00, 0x00, //
0x00, 0x00, //
// @3280 'r' (14 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x3C, 0xE0, // #### ###
0x3D, 0xF0, // #### #####
0x0F, 0x30, // #### ##
0x0E, 0x00, // ###
0x0C, 0x00, // ##
0x0C, 0x00, // ##
0x0C, 0x00, // ##
0x3F, 0xC0, // ########
0x3F, 0xC0, // ########
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @3320 's' (14 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x07, 0xE0, // ######
0x1F, 0xE0, // ########
0x18, 0x60, // ## ##
0x1E, 0x00, // ####
0x0F, 0xC0, // ######
0x01, 0xE0, // ####
0x18, 0x60, // ## ##
0x1F, 0xE0, // ########
0x1F, 0x80, // ######
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @3360 't' (14 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x0C, 0x00, // ##
0x0C, 0x00, // ##
0x0C, 0x00, // ##
0x3F, 0xE0, // #########
0x3F, 0xE0, // #########
0x0C, 0x00, // ##
0x0C, 0x00, // ##
0x0C, 0x00, // ##
0x0C, 0x00, // ##
0x0C, 0x30, // ## ##
0x0F, 0xF0, // ########
0x07, 0xC0, // #####
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @3400 'u' (14 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x38, 0xE0, // ### ###
0x38, 0xE0, // ### ###
0x18, 0x60, // ## ##
0x18, 0x60, // ## ##
0x18, 0x60, // ## ##
0x18, 0x60, // ## ##
0x18, 0xE0, // ## ###
0x1F, 0xF0, // #########
0x0F, 0x70, // #### ###
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @3440 'v' (14 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x78, 0xF0, // #### ####
0x78, 0xF0, // #### ####
0x30, 0x60, // ## ##
0x18, 0xC0, // ## ##
0x18, 0xC0, // ## ##
0x0D, 0x80, // ## ##
0x0D, 0x80, // ## ##
0x07, 0x00, // ###
0x07, 0x00, // ###
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @3480 'w' (14 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x78, 0xF0, // #### ####
0x78, 0xF0, // #### ####
0x32, 0x60, // ## # ##
0x32, 0x60, // ## # ##
0x37, 0xE0, // ## ######
0x1D, 0xC0, // ### ###
0x1D, 0xC0, // ### ###
0x18, 0xC0, // ## ##
0x18, 0xC0, // ## ##
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @3520 'x' (14 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x3C, 0xF0, // #### ####
0x3C, 0xF0, // #### ####
0x0C, 0xC0, // ## ##
0x07, 0x80, // ####
0x03, 0x00, // ##
0x07, 0x80, // ####
0x0C, 0xC0, // ## ##
0x3C, 0xF0, // #### ####
0x3C, 0xF0, // #### ####
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @3560 'y' (14 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x78, 0xF0, // #### ####
0x78, 0xF0, // #### ####
0x30, 0x60, // ## ##
0x18, 0xC0, // ## ##
0x18, 0xC0, // ## ##
0x0D, 0x80, // ## ##
0x0F, 0x80, // #####
0x07, 0x00, // ###
0x06, 0x00, // ##
0x06, 0x00, // ##
0x0C, 0x00, // ##
0x7F, 0x00, // #######
0x7F, 0x00, // #######
0x00, 0x00, //
0x00, 0x00, //
// @3600 'z' (14 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x1F, 0xE0, // ########
0x1F, 0xE0, // ########
0x18, 0xC0, // ## ##
0x01, 0x80, // ##
0x03, 0x00, // ##
0x06, 0x00, // ##
0x0C, 0x60, // ## ##
0x1F, 0xE0, // ########
0x1F, 0xE0, // ########
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @3640 '{' (14 pixels wide)
0x00, 0x00, //
0x01, 0xC0, // ###
0x03, 0xC0, // ####
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x07, 0x00, // ###
0x0E, 0x00, // ###
0x07, 0x00, // ###
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0xC0, // ####
0x01, 0xC0, // ###
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @3680 '|' (14 pixels wide)
0x00, 0x00, //
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x03, 0x00, // ##
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @3720 '}' (14 pixels wide)
0x00, 0x00, //
0x1C, 0x00, // ###
0x1E, 0x00, // ####
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x07, 0x00, // ###
0x03, 0x80, // ###
0x07, 0x00, // ###
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x06, 0x00, // ##
0x1E, 0x00, // ####
0x1C, 0x00, // ###
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
// @3760 '~' (14 pixels wide)
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x0E, 0x00, // ###
0x3F, 0x30, // ###### ##
0x33, 0xF0, // ## ######
0x01, 0xE0, // ####
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
0x00, 0x00, //
};
sFONT Font20 = {
Font20_Table,
14, /* Width */
20, /* Height */
};
/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
/**
******************************************************************************
* @file font24.c
* @author MCD Application Team
* @version V1.0.0
* @date 18-February-2014
* @brief This file provides text font24 for STM32xx-EVAL's LCD driver.
******************************************************************************
* @attention
*
* <h2><center>&copy; COPYRIGHT(c) 2014 STMicroelectronics</center></h2>
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* 3. Neither the name of STMicroelectronics nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
******************************************************************************
*/
/* Includes ------------------------------------------------------------------*/
#include "fonts.h"
const uint8_t Font24_Table [] =
{
// @0 ' ' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @72 '!' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x03, 0x80, 0x00, // ###
0x03, 0x80, 0x00, // ###
0x03, 0x80, 0x00, // ###
0x03, 0x80, 0x00, // ###
0x03, 0x80, 0x00, // ###
0x03, 0x80, 0x00, // ###
0x03, 0x80, 0x00, // ###
0x03, 0x80, 0x00, // ###
0x03, 0x80, 0x00, // ###
0x01, 0x00, 0x00, // #
0x01, 0x00, 0x00, // #
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x03, 0x80, 0x00, // ###
0x03, 0x80, 0x00, // ###
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @144 '"' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x0E, 0x70, 0x00, // ### ###
0x0E, 0x70, 0x00, // ### ###
0x0E, 0x70, 0x00, // ### ###
0x04, 0x20, 0x00, // # #
0x04, 0x20, 0x00, // # #
0x04, 0x20, 0x00, // # #
0x04, 0x20, 0x00, // # #
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @216 '#' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x06, 0x60, 0x00, // ## ##
0x06, 0x60, 0x00, // ## ##
0x06, 0x60, 0x00, // ## ##
0x06, 0x60, 0x00, // ## ##
0x06, 0x60, 0x00, // ## ##
0x3F, 0xF8, 0x00, // ###########
0x3F, 0xF8, 0x00, // ###########
0x06, 0x60, 0x00, // ## ##
0x0C, 0xC0, 0x00, // ## ##
0x3F, 0xF8, 0x00, // ###########
0x3F, 0xF8, 0x00, // ###########
0x0C, 0xC0, 0x00, // ## ##
0x0C, 0xC0, 0x00, // ## ##
0x0C, 0xC0, 0x00, // ## ##
0x0C, 0xC0, 0x00, // ## ##
0x0C, 0xC0, 0x00, // ## ##
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @288 '$' (17 pixels wide)
0x00, 0x00, 0x00, //
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x07, 0xB0, 0x00, // #### ##
0x0F, 0xF0, 0x00, // ########
0x18, 0x70, 0x00, // ## ###
0x18, 0x70, 0x00, // ## ###
0x1C, 0x00, 0x00, // ###
0x0F, 0x80, 0x00, // #####
0x07, 0xE0, 0x00, // ######
0x00, 0xF0, 0x00, // ####
0x18, 0x30, 0x00, // ## ##
0x1C, 0x30, 0x00, // ### ##
0x1C, 0x70, 0x00, // ### ###
0x1F, 0xE0, 0x00, // ########
0x1B, 0xC0, 0x00, // ## ####
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @360 '%' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x07, 0x80, 0x00, // ####
0x0F, 0xC0, 0x00, // ######
0x1C, 0xE0, 0x00, // ### ###
0x18, 0x60, 0x00, // ## ##
0x18, 0x60, 0x00, // ## ##
0x1C, 0xE0, 0x00, // ### ###
0x0F, 0xF8, 0x00, // #########
0x07, 0xE0, 0x00, // ######
0x1F, 0xF0, 0x00, // #########
0x07, 0x38, 0x00, // ### ###
0x06, 0x18, 0x00, // ## ##
0x06, 0x18, 0x00, // ## ##
0x07, 0x38, 0x00, // ### ###
0x03, 0xF0, 0x00, // ######
0x01, 0xE0, 0x00, // ####
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @432 '&' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x03, 0xF0, 0x00, // ######
0x07, 0xF0, 0x00, // #######
0x0C, 0x60, 0x00, // ## ##
0x0C, 0x00, 0x00, // ##
0x0C, 0x00, 0x00, // ##
0x06, 0x00, 0x00, // ##
0x07, 0x00, 0x00, // ###
0x0F, 0x9C, 0x00, // ##### ###
0x1D, 0xFC, 0x00, // ### #######
0x18, 0xF0, 0x00, // ## ####
0x18, 0x70, 0x00, // ## ###
0x0F, 0xFC, 0x00, // ##########
0x07, 0xDC, 0x00, // ##### ###
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @504 ''' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x03, 0x80, 0x00, // ###
0x03, 0x80, 0x00, // ###
0x03, 0x80, 0x00, // ###
0x01, 0x00, 0x00, // #
0x01, 0x00, 0x00, // #
0x01, 0x00, 0x00, // #
0x01, 0x00, 0x00, // #
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @576 '(' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x18, 0x00, // ##
0x00, 0x38, 0x00, // ###
0x00, 0x70, 0x00, // ###
0x00, 0xF0, 0x00, // ####
0x00, 0xE0, 0x00, // ###
0x00, 0xE0, 0x00, // ###
0x01, 0xC0, 0x00, // ###
0x01, 0xC0, 0x00, // ###
0x01, 0xC0, 0x00, // ###
0x01, 0xC0, 0x00, // ###
0x01, 0xC0, 0x00, // ###
0x01, 0xC0, 0x00, // ###
0x00, 0xE0, 0x00, // ###
0x00, 0xE0, 0x00, // ###
0x00, 0x70, 0x00, // ###
0x00, 0x70, 0x00, // ###
0x00, 0x38, 0x00, // ###
0x00, 0x18, 0x00, // ##
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @648 ')' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x18, 0x00, 0x00, // ##
0x1C, 0x00, 0x00, // ###
0x0E, 0x00, 0x00, // ###
0x0E, 0x00, 0x00, // ###
0x07, 0x00, 0x00, // ###
0x07, 0x00, 0x00, // ###
0x03, 0x80, 0x00, // ###
0x03, 0x80, 0x00, // ###
0x03, 0x80, 0x00, // ###
0x03, 0x80, 0x00, // ###
0x03, 0x80, 0x00, // ###
0x03, 0x80, 0x00, // ###
0x07, 0x00, 0x00, // ###
0x07, 0x00, 0x00, // ###
0x0F, 0x00, 0x00, // ####
0x0E, 0x00, 0x00, // ###
0x1C, 0x00, 0x00, // ###
0x18, 0x00, 0x00, // ##
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @720 '*' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x1D, 0xB8, 0x00, // ### ## ###
0x1F, 0xF8, 0x00, // ##########
0x07, 0xE0, 0x00, // ######
0x03, 0xC0, 0x00, // ####
0x03, 0xC0, 0x00, // ####
0x06, 0x60, 0x00, // ## ##
0x06, 0x60, 0x00, // ## ##
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @792 '+' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x3F, 0xFC, 0x00, // ############
0x3F, 0xFC, 0x00, // ############
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @864 ',' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0xE0, 0x00, // ###
0x00, 0xC0, 0x00, // ##
0x01, 0xC0, 0x00, // ###
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x03, 0x00, 0x00, // ##
0x03, 0x00, 0x00, // ##
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @936 '-' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x1F, 0xF8, 0x00, // ##########
0x1F, 0xF8, 0x00, // ##########
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @1008 '.' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x03, 0xC0, 0x00, // ####
0x03, 0xC0, 0x00, // ####
0x03, 0xC0, 0x00, // ####
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @1080 '/' (17 pixels wide)
0x00, 0x18, 0x00, // ##
0x00, 0x18, 0x00, // ##
0x00, 0x38, 0x00, // ###
0x00, 0x30, 0x00, // ##
0x00, 0x70, 0x00, // ###
0x00, 0x60, 0x00, // ##
0x00, 0x60, 0x00, // ##
0x00, 0xC0, 0x00, // ##
0x00, 0xC0, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x03, 0x00, 0x00, // ##
0x03, 0x00, 0x00, // ##
0x06, 0x00, 0x00, // ##
0x06, 0x00, 0x00, // ##
0x0E, 0x00, 0x00, // ###
0x0C, 0x00, 0x00, // ##
0x1C, 0x00, 0x00, // ###
0x18, 0x00, 0x00, // ##
0x18, 0x00, 0x00, // ##
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @1152 '0' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x03, 0xC0, 0x00, // ####
0x07, 0xE0, 0x00, // ######
0x0C, 0x30, 0x00, // ## ##
0x0C, 0x30, 0x00, // ## ##
0x18, 0x18, 0x00, // ## ##
0x18, 0x18, 0x00, // ## ##
0x18, 0x18, 0x00, // ## ##
0x18, 0x18, 0x00, // ## ##
0x18, 0x18, 0x00, // ## ##
0x18, 0x18, 0x00, // ## ##
0x18, 0x18, 0x00, // ## ##
0x0C, 0x30, 0x00, // ## ##
0x0C, 0x30, 0x00, // ## ##
0x07, 0xE0, 0x00, // ######
0x03, 0xC0, 0x00, // ####
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @1224 '1' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x80, 0x00, // #
0x07, 0x80, 0x00, // ####
0x1F, 0x80, 0x00, // ######
0x1D, 0x80, 0x00, // ### ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x1F, 0xF8, 0x00, // ##########
0x1F, 0xF8, 0x00, // ##########
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @1296 '2' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x07, 0xC0, 0x00, // #####
0x1F, 0xF0, 0x00, // #########
0x38, 0x30, 0x00, // ### ##
0x30, 0x18, 0x00, // ## ##
0x30, 0x18, 0x00, // ## ##
0x00, 0x18, 0x00, // ##
0x00, 0x30, 0x00, // ##
0x00, 0x60, 0x00, // ##
0x01, 0xC0, 0x00, // ###
0x03, 0x80, 0x00, // ###
0x06, 0x00, 0x00, // ##
0x0C, 0x00, 0x00, // ##
0x18, 0x00, 0x00, // ##
0x3F, 0xF8, 0x00, // ###########
0x3F, 0xF8, 0x00, // ###########
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @1368 '3' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x03, 0xC0, 0x00, // ####
0x0F, 0xE0, 0x00, // #######
0x0C, 0x70, 0x00, // ## ###
0x00, 0x30, 0x00, // ##
0x00, 0x30, 0x00, // ##
0x00, 0x60, 0x00, // ##
0x03, 0xC0, 0x00, // ####
0x03, 0xE0, 0x00, // #####
0x00, 0x70, 0x00, // ###
0x00, 0x18, 0x00, // ##
0x00, 0x18, 0x00, // ##
0x00, 0x18, 0x00, // ##
0x18, 0x38, 0x00, // ## ###
0x1F, 0xF0, 0x00, // #########
0x0F, 0xC0, 0x00, // ######
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @1440 '4' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0xE0, 0x00, // ###
0x01, 0xE0, 0x00, // ####
0x01, 0xE0, 0x00, // ####
0x03, 0x60, 0x00, // ## ##
0x06, 0x60, 0x00, // ## ##
0x06, 0x60, 0x00, // ## ##
0x0C, 0x60, 0x00, // ## ##
0x0C, 0x60, 0x00, // ## ##
0x18, 0x60, 0x00, // ## ##
0x30, 0x60, 0x00, // ## ##
0x3F, 0xF8, 0x00, // ###########
0x3F, 0xF8, 0x00, // ###########
0x00, 0x60, 0x00, // ##
0x03, 0xF8, 0x00, // #######
0x03, 0xF8, 0x00, // #######
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @1512 '5' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x1F, 0xF0, 0x00, // #########
0x1F, 0xF0, 0x00, // #########
0x18, 0x00, 0x00, // ##
0x18, 0x00, 0x00, // ##
0x18, 0x00, 0x00, // ##
0x1B, 0xC0, 0x00, // ## ####
0x1F, 0xF0, 0x00, // #########
0x1C, 0x30, 0x00, // ### ##
0x00, 0x18, 0x00, // ##
0x00, 0x18, 0x00, // ##
0x00, 0x18, 0x00, // ##
0x00, 0x18, 0x00, // ##
0x30, 0x30, 0x00, // ## ##
0x3F, 0xF0, 0x00, // ##########
0x0F, 0xC0, 0x00, // ######
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @1584 '6' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0xF8, 0x00, // #####
0x03, 0xF8, 0x00, // #######
0x07, 0x00, 0x00, // ###
0x0E, 0x00, 0x00, // ###
0x0C, 0x00, 0x00, // ##
0x18, 0x00, 0x00, // ##
0x1B, 0xC0, 0x00, // ## ####
0x1F, 0xF0, 0x00, // #########
0x1C, 0x30, 0x00, // ### ##
0x18, 0x18, 0x00, // ## ##
0x18, 0x18, 0x00, // ## ##
0x18, 0x18, 0x00, // ## ##
0x0C, 0x38, 0x00, // ## ###
0x0F, 0xF0, 0x00, // ########
0x03, 0xE0, 0x00, // #####
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @1656 '7' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x1F, 0xF8, 0x00, // ##########
0x1F, 0xF8, 0x00, // ##########
0x18, 0x18, 0x00, // ## ##
0x18, 0x38, 0x00, // ## ###
0x00, 0x30, 0x00, // ##
0x00, 0x30, 0x00, // ##
0x00, 0x70, 0x00, // ###
0x00, 0x60, 0x00, // ##
0x00, 0x60, 0x00, // ##
0x00, 0xE0, 0x00, // ###
0x00, 0xC0, 0x00, // ##
0x00, 0xC0, 0x00, // ##
0x01, 0xC0, 0x00, // ###
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @1728 '8' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x07, 0xE0, 0x00, // ######
0x0F, 0xF0, 0x00, // ########
0x1C, 0x38, 0x00, // ### ###
0x18, 0x18, 0x00, // ## ##
0x18, 0x18, 0x00, // ## ##
0x0C, 0x30, 0x00, // ## ##
0x07, 0xE0, 0x00, // ######
0x07, 0xE0, 0x00, // ######
0x0C, 0x30, 0x00, // ## ##
0x18, 0x18, 0x00, // ## ##
0x18, 0x18, 0x00, // ## ##
0x18, 0x18, 0x00, // ## ##
0x1C, 0x38, 0x00, // ### ###
0x0F, 0xF0, 0x00, // ########
0x07, 0xE0, 0x00, // ######
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @1800 '9' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x07, 0xC0, 0x00, // #####
0x0F, 0xF0, 0x00, // ########
0x1C, 0x30, 0x00, // ### ##
0x18, 0x18, 0x00, // ## ##
0x18, 0x18, 0x00, // ## ##
0x18, 0x18, 0x00, // ## ##
0x0C, 0x38, 0x00, // ## ###
0x0F, 0xF8, 0x00, // #########
0x03, 0xD8, 0x00, // #### ##
0x00, 0x18, 0x00, // ##
0x00, 0x30, 0x00, // ##
0x00, 0x70, 0x00, // ###
0x00, 0xE0, 0x00, // ###
0x1F, 0xC0, 0x00, // #######
0x1F, 0x00, 0x00, // #####
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @1872 ':' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x03, 0xC0, 0x00, // ####
0x03, 0xC0, 0x00, // ####
0x03, 0xC0, 0x00, // ####
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x03, 0xC0, 0x00, // ####
0x03, 0xC0, 0x00, // ####
0x03, 0xC0, 0x00, // ####
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @1944 ';' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0xF0, 0x00, // ####
0x00, 0xF0, 0x00, // ####
0x00, 0xF0, 0x00, // ####
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0xE0, 0x00, // ###
0x01, 0xC0, 0x00, // ###
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x03, 0x00, 0x00, // ##
0x02, 0x00, 0x00, // #
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @2016 '<' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x1C, 0x00, // ###
0x00, 0x3C, 0x00, // ####
0x00, 0xF0, 0x00, // ####
0x03, 0xC0, 0x00, // ####
0x0F, 0x00, 0x00, // ####
0x3C, 0x00, 0x00, // ####
0xF0, 0x00, 0x00, // ####
0x3C, 0x00, 0x00, // ####
0x0F, 0x00, 0x00, // ####
0x03, 0xC0, 0x00, // ####
0x00, 0xF0, 0x00, // ####
0x00, 0x3C, 0x00, // ####
0x00, 0x1C, 0x00, // ###
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @2088 '=' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x7F, 0xFC, 0x00, // #############
0x7F, 0xFC, 0x00, // #############
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x7F, 0xFC, 0x00, // #############
0x7F, 0xFC, 0x00, // #############
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @2160 '>' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x70, 0x00, 0x00, // ###
0x78, 0x00, 0x00, // ####
0x1E, 0x00, 0x00, // ####
0x07, 0x80, 0x00, // ####
0x01, 0xE0, 0x00, // ####
0x00, 0x78, 0x00, // ####
0x00, 0x1E, 0x00, // ####
0x00, 0x78, 0x00, // ####
0x01, 0xE0, 0x00, // ####
0x07, 0x80, 0x00, // ####
0x1E, 0x00, 0x00, // ####
0x78, 0x00, 0x00, // ####
0x70, 0x00, 0x00, // ###
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @2232 '?' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x07, 0xC0, 0x00, // #####
0x0F, 0xE0, 0x00, // #######
0x18, 0x70, 0x00, // ## ###
0x18, 0x30, 0x00, // ## ##
0x18, 0x30, 0x00, // ## ##
0x00, 0x70, 0x00, // ###
0x00, 0xE0, 0x00, // ###
0x03, 0xC0, 0x00, // ####
0x03, 0x80, 0x00, // ###
0x03, 0x00, 0x00, // ##
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x07, 0x00, 0x00, // ###
0x07, 0x00, 0x00, // ###
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @2304 '@' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x03, 0xE0, 0x00, // #####
0x07, 0xF0, 0x00, // #######
0x0E, 0x38, 0x00, // ### ###
0x0C, 0x18, 0x00, // ## ##
0x18, 0x78, 0x00, // ## ####
0x18, 0xF8, 0x00, // ## #####
0x19, 0xD8, 0x00, // ## ### ##
0x19, 0x98, 0x00, // ## ## ##
0x19, 0x98, 0x00, // ## ## ##
0x19, 0x98, 0x00, // ## ## ##
0x18, 0xF8, 0x00, // ## #####
0x18, 0x78, 0x00, // ## ####
0x18, 0x00, 0x00, // ##
0x0C, 0x00, 0x00, // ##
0x0E, 0x18, 0x00, // ### ##
0x07, 0xF8, 0x00, // ########
0x03, 0xE0, 0x00, // #####
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @2376 'A' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x1F, 0x80, 0x00, // ######
0x1F, 0xC0, 0x00, // #######
0x01, 0xC0, 0x00, // ###
0x03, 0x60, 0x00, // ## ##
0x03, 0x60, 0x00, // ## ##
0x06, 0x30, 0x00, // ## ##
0x06, 0x30, 0x00, // ## ##
0x0C, 0x30, 0x00, // ## ##
0x0F, 0xF8, 0x00, // #########
0x1F, 0xF8, 0x00, // ##########
0x18, 0x0C, 0x00, // ## ##
0x30, 0x0C, 0x00, // ## ##
0xFC, 0x7F, 0x00, // ###### #######
0xFC, 0x7F, 0x00, // ###### #######
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @2448 'B' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x7F, 0xE0, 0x00, // ##########
0x7F, 0xF0, 0x00, // ###########
0x18, 0x38, 0x00, // ## ###
0x18, 0x18, 0x00, // ## ##
0x18, 0x18, 0x00, // ## ##
0x18, 0x38, 0x00, // ## ###
0x1F, 0xF0, 0x00, // #########
0x1F, 0xF8, 0x00, // ##########
0x18, 0x1C, 0x00, // ## ###
0x18, 0x0C, 0x00, // ## ##
0x18, 0x0C, 0x00, // ## ##
0x18, 0x0C, 0x00, // ## ##
0x7F, 0xF8, 0x00, // ############
0x7F, 0xF0, 0x00, // ###########
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @2520 'C' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x03, 0xEC, 0x00, // ##### ##
0x0F, 0xFC, 0x00, // ##########
0x1C, 0x1C, 0x00, // ### ###
0x18, 0x0C, 0x00, // ## ##
0x30, 0x0C, 0x00, // ## ##
0x30, 0x00, 0x00, // ##
0x30, 0x00, 0x00, // ##
0x30, 0x00, 0x00, // ##
0x30, 0x00, 0x00, // ##
0x30, 0x00, 0x00, // ##
0x18, 0x0C, 0x00, // ## ##
0x1C, 0x1C, 0x00, // ### ###
0x0F, 0xF8, 0x00, // #########
0x03, 0xF0, 0x00, // ######
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @2592 'D' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x7F, 0xC0, 0x00, // #########
0x7F, 0xF0, 0x00, // ###########
0x18, 0x38, 0x00, // ## ###
0x18, 0x18, 0x00, // ## ##
0x18, 0x0C, 0x00, // ## ##
0x18, 0x0C, 0x00, // ## ##
0x18, 0x0C, 0x00, // ## ##
0x18, 0x0C, 0x00, // ## ##
0x18, 0x0C, 0x00, // ## ##
0x18, 0x0C, 0x00, // ## ##
0x18, 0x18, 0x00, // ## ##
0x18, 0x38, 0x00, // ## ###
0x7F, 0xF0, 0x00, // ###########
0x7F, 0xE0, 0x00, // ##########
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @2664 'E' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x7F, 0xF8, 0x00, // ############
0x7F, 0xF8, 0x00, // ############
0x18, 0x18, 0x00, // ## ##
0x18, 0x18, 0x00, // ## ##
0x19, 0x98, 0x00, // ## ## ##
0x19, 0x80, 0x00, // ## ##
0x1F, 0x80, 0x00, // ######
0x1F, 0x80, 0x00, // ######
0x19, 0x80, 0x00, // ## ##
0x19, 0x98, 0x00, // ## ## ##
0x18, 0x18, 0x00, // ## ##
0x18, 0x18, 0x00, // ## ##
0x7F, 0xF8, 0x00, // ############
0x7F, 0xF8, 0x00, // ############
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @2736 'F' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x3F, 0xFC, 0x00, // ############
0x3F, 0xFC, 0x00, // ############
0x0C, 0x0C, 0x00, // ## ##
0x0C, 0x0C, 0x00, // ## ##
0x0C, 0xCC, 0x00, // ## ## ##
0x0C, 0xC0, 0x00, // ## ##
0x0F, 0xC0, 0x00, // ######
0x0F, 0xC0, 0x00, // ######
0x0C, 0xC0, 0x00, // ## ##
0x0C, 0xC0, 0x00, // ## ##
0x0C, 0x00, 0x00, // ##
0x0C, 0x00, 0x00, // ##
0x3F, 0xC0, 0x00, // ########
0x3F, 0xC0, 0x00, // ########
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @2808 'G' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x03, 0xEC, 0x00, // ##### ##
0x0F, 0xFC, 0x00, // ##########
0x1C, 0x1C, 0x00, // ### ###
0x18, 0x0C, 0x00, // ## ##
0x30, 0x0C, 0x00, // ## ##
0x30, 0x00, 0x00, // ##
0x30, 0x00, 0x00, // ##
0x30, 0xFE, 0x00, // ## #######
0x30, 0xFE, 0x00, // ## #######
0x30, 0x0C, 0x00, // ## ##
0x38, 0x0C, 0x00, // ### ##
0x1C, 0x1C, 0x00, // ### ###
0x0F, 0xFC, 0x00, // ##########
0x03, 0xF0, 0x00, // ######
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @2880 'H' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x7E, 0x7E, 0x00, // ###### ######
0x7E, 0x7E, 0x00, // ###### ######
0x18, 0x18, 0x00, // ## ##
0x18, 0x18, 0x00, // ## ##
0x18, 0x18, 0x00, // ## ##
0x18, 0x18, 0x00, // ## ##
0x1F, 0xF8, 0x00, // ##########
0x1F, 0xF8, 0x00, // ##########
0x18, 0x18, 0x00, // ## ##
0x18, 0x18, 0x00, // ## ##
0x18, 0x18, 0x00, // ## ##
0x18, 0x18, 0x00, // ## ##
0x7E, 0x7E, 0x00, // ###### ######
0x7E, 0x7E, 0x00, // ###### ######
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @2952 'I' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x1F, 0xF8, 0x00, // ##########
0x1F, 0xF8, 0x00, // ##########
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x1F, 0xF8, 0x00, // ##########
0x1F, 0xF8, 0x00, // ##########
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @3024 'J' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x07, 0xFE, 0x00, // ##########
0x07, 0xFE, 0x00, // ##########
0x00, 0x30, 0x00, // ##
0x00, 0x30, 0x00, // ##
0x00, 0x30, 0x00, // ##
0x00, 0x30, 0x00, // ##
0x00, 0x30, 0x00, // ##
0x30, 0x30, 0x00, // ## ##
0x30, 0x30, 0x00, // ## ##
0x30, 0x30, 0x00, // ## ##
0x30, 0x30, 0x00, // ## ##
0x30, 0x60, 0x00, // ## ##
0x3F, 0xE0, 0x00, // #########
0x0F, 0x80, 0x00, // #####
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @3096 'K' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x7F, 0x3E, 0x00, // ####### #####
0x7F, 0x3E, 0x00, // ####### #####
0x18, 0x30, 0x00, // ## ##
0x18, 0x60, 0x00, // ## ##
0x18, 0xC0, 0x00, // ## ##
0x19, 0x80, 0x00, // ## ##
0x1B, 0x80, 0x00, // ## ###
0x1F, 0xC0, 0x00, // #######
0x1C, 0xE0, 0x00, // ### ###
0x18, 0x70, 0x00, // ## ###
0x18, 0x30, 0x00, // ## ##
0x18, 0x38, 0x00, // ## ###
0x7F, 0x1F, 0x00, // ####### #####
0x7F, 0x1F, 0x00, // ####### #####
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @3168 'L' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x7F, 0x80, 0x00, // ########
0x7F, 0x80, 0x00, // ########
0x0C, 0x00, 0x00, // ##
0x0C, 0x00, 0x00, // ##
0x0C, 0x00, 0x00, // ##
0x0C, 0x00, 0x00, // ##
0x0C, 0x00, 0x00, // ##
0x0C, 0x00, 0x00, // ##
0x0C, 0x0C, 0x00, // ## ##
0x0C, 0x0C, 0x00, // ## ##
0x0C, 0x0C, 0x00, // ## ##
0x0C, 0x0C, 0x00, // ## ##
0x7F, 0xFC, 0x00, // #############
0x7F, 0xFC, 0x00, // #############
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @3240 'M' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0xF0, 0x0F, 0x00, // #### ####
0xF8, 0x1F, 0x00, // ##### #####
0x38, 0x1C, 0x00, // ### ###
0x3C, 0x3C, 0x00, // #### ####
0x3C, 0x3C, 0x00, // #### ####
0x36, 0x6C, 0x00, // ## ## ## ##
0x36, 0x6C, 0x00, // ## ## ## ##
0x33, 0xCC, 0x00, // ## #### ##
0x33, 0xCC, 0x00, // ## #### ##
0x31, 0x8C, 0x00, // ## ## ##
0x30, 0x0C, 0x00, // ## ##
0x30, 0x0C, 0x00, // ## ##
0xFE, 0x7F, 0x00, // ####### #######
0xFE, 0x7F, 0x00, // ####### #######
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @3312 'N' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x78, 0xFE, 0x00, // #### #######
0x78, 0xFE, 0x00, // #### #######
0x1C, 0x18, 0x00, // ### ##
0x1E, 0x18, 0x00, // #### ##
0x1F, 0x18, 0x00, // ##### ##
0x1B, 0x18, 0x00, // ## ## ##
0x1B, 0x98, 0x00, // ## ### ##
0x19, 0xD8, 0x00, // ## ### ##
0x18, 0xD8, 0x00, // ## ## ##
0x18, 0xF8, 0x00, // ## #####
0x18, 0x78, 0x00, // ## ####
0x18, 0x38, 0x00, // ## ###
0x7F, 0x18, 0x00, // ####### ##
0x7F, 0x18, 0x00, // ####### ##
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @3384 'O' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x03, 0xC0, 0x00, // ####
0x0F, 0xF0, 0x00, // ########
0x1C, 0x38, 0x00, // ### ###
0x18, 0x18, 0x00, // ## ##
0x38, 0x1C, 0x00, // ### ###
0x30, 0x0C, 0x00, // ## ##
0x30, 0x0C, 0x00, // ## ##
0x30, 0x0C, 0x00, // ## ##
0x30, 0x0C, 0x00, // ## ##
0x38, 0x1C, 0x00, // ### ###
0x18, 0x18, 0x00, // ## ##
0x1C, 0x38, 0x00, // ### ###
0x0F, 0xF0, 0x00, // ########
0x03, 0xC0, 0x00, // ####
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @3456 'P' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x3F, 0xF0, 0x00, // ##########
0x3F, 0xF8, 0x00, // ###########
0x0C, 0x1C, 0x00, // ## ###
0x0C, 0x0C, 0x00, // ## ##
0x0C, 0x0C, 0x00, // ## ##
0x0C, 0x0C, 0x00, // ## ##
0x0C, 0x18, 0x00, // ## ##
0x0F, 0xF8, 0x00, // #########
0x0F, 0xE0, 0x00, // #######
0x0C, 0x00, 0x00, // ##
0x0C, 0x00, 0x00, // ##
0x0C, 0x00, 0x00, // ##
0x3F, 0xC0, 0x00, // ########
0x3F, 0xC0, 0x00, // ########
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @3528 'Q' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x03, 0xC0, 0x00, // ####
0x0F, 0xF0, 0x00, // ########
0x1C, 0x38, 0x00, // ### ###
0x18, 0x18, 0x00, // ## ##
0x38, 0x1C, 0x00, // ### ###
0x30, 0x0C, 0x00, // ## ##
0x30, 0x0C, 0x00, // ## ##
0x30, 0x0C, 0x00, // ## ##
0x30, 0x0C, 0x00, // ## ##
0x38, 0x1C, 0x00, // ### ###
0x18, 0x18, 0x00, // ## ##
0x1C, 0x38, 0x00, // ### ###
0x0F, 0xF0, 0x00, // ########
0x07, 0xC0, 0x00, // #####
0x07, 0xCC, 0x00, // ##### ##
0x0F, 0xFC, 0x00, // ##########
0x0C, 0x38, 0x00, // ## ###
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @3600 'R' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x7F, 0xE0, 0x00, // ##########
0x7F, 0xF0, 0x00, // ###########
0x18, 0x38, 0x00, // ## ###
0x18, 0x18, 0x00, // ## ##
0x18, 0x18, 0x00, // ## ##
0x18, 0x38, 0x00, // ## ###
0x1F, 0xF0, 0x00, // #########
0x1F, 0xC0, 0x00, // #######
0x18, 0xE0, 0x00, // ## ###
0x18, 0x70, 0x00, // ## ###
0x18, 0x30, 0x00, // ## ##
0x18, 0x38, 0x00, // ## ###
0x7F, 0x1E, 0x00, // ####### ####
0x7F, 0x0E, 0x00, // ####### ###
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @3672 'S' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x07, 0xD8, 0x00, // ##### ##
0x0F, 0xF8, 0x00, // #########
0x1C, 0x38, 0x00, // ### ###
0x18, 0x18, 0x00, // ## ##
0x18, 0x18, 0x00, // ## ##
0x1E, 0x00, 0x00, // ####
0x0F, 0xC0, 0x00, // ######
0x03, 0xF0, 0x00, // ######
0x00, 0x78, 0x00, // ####
0x18, 0x18, 0x00, // ## ##
0x18, 0x18, 0x00, // ## ##
0x1C, 0x38, 0x00, // ### ###
0x1F, 0xF0, 0x00, // #########
0x1B, 0xE0, 0x00, // ## #####
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @3744 'T' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x3F, 0xFC, 0x00, // ############
0x3F, 0xFC, 0x00, // ############
0x31, 0x8C, 0x00, // ## ## ##
0x31, 0x8C, 0x00, // ## ## ##
0x31, 0x8C, 0x00, // ## ## ##
0x31, 0x8C, 0x00, // ## ## ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x0F, 0xF0, 0x00, // ########
0x0F, 0xF0, 0x00, // ########
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @3816 'U' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x7E, 0x7E, 0x00, // ###### ######
0x7E, 0x7E, 0x00, // ###### ######
0x18, 0x18, 0x00, // ## ##
0x18, 0x18, 0x00, // ## ##
0x18, 0x18, 0x00, // ## ##
0x18, 0x18, 0x00, // ## ##
0x18, 0x18, 0x00, // ## ##
0x18, 0x18, 0x00, // ## ##
0x18, 0x18, 0x00, // ## ##
0x18, 0x18, 0x00, // ## ##
0x18, 0x18, 0x00, // ## ##
0x0C, 0x30, 0x00, // ## ##
0x0F, 0xF0, 0x00, // ########
0x03, 0xC0, 0x00, // ####
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @3888 'V' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x7F, 0x7F, 0x00, // ####### #######
0x7F, 0x7F, 0x00, // ####### #######
0x18, 0x0C, 0x00, // ## ##
0x0C, 0x18, 0x00, // ## ##
0x0C, 0x18, 0x00, // ## ##
0x0C, 0x18, 0x00, // ## ##
0x06, 0x30, 0x00, // ## ##
0x06, 0x30, 0x00, // ## ##
0x03, 0x60, 0x00, // ## ##
0x03, 0x60, 0x00, // ## ##
0x03, 0x60, 0x00, // ## ##
0x01, 0xC0, 0x00, // ###
0x01, 0xC0, 0x00, // ###
0x00, 0x80, 0x00, // #
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @3960 'W' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0xFE, 0x3F, 0x80, // ####### #######
0xFE, 0x3F, 0x80, // ####### #######
0x30, 0x06, 0x00, // ## ##
0x30, 0x06, 0x00, // ## ##
0x30, 0x86, 0x00, // ## # ##
0x19, 0xCC, 0x00, // ## ### ##
0x19, 0xCC, 0x00, // ## ### ##
0x1B, 0x6C, 0x00, // ## ## ## ##
0x1B, 0x6C, 0x00, // ## ## ## ##
0x1E, 0x7C, 0x00, // #### #####
0x0E, 0x38, 0x00, // ### ###
0x0E, 0x38, 0x00, // ### ###
0x0C, 0x18, 0x00, // ## ##
0x0C, 0x18, 0x00, // ## ##
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @4032 'X' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x7E, 0x7E, 0x00, // ###### ######
0x7E, 0x7E, 0x00, // ###### ######
0x18, 0x18, 0x00, // ## ##
0x0C, 0x30, 0x00, // ## ##
0x06, 0x60, 0x00, // ## ##
0x03, 0xC0, 0x00, // ####
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x03, 0xC0, 0x00, // ####
0x06, 0x60, 0x00, // ## ##
0x0C, 0x30, 0x00, // ## ##
0x18, 0x18, 0x00, // ## ##
0x7E, 0x7E, 0x00, // ###### ######
0x7E, 0x7E, 0x00, // ###### ######
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @4104 'Y' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x7C, 0x7E, 0x00, // ##### ######
0x7C, 0x7E, 0x00, // ##### ######
0x18, 0x18, 0x00, // ## ##
0x0C, 0x30, 0x00, // ## ##
0x06, 0x60, 0x00, // ## ##
0x06, 0x60, 0x00, // ## ##
0x03, 0xC0, 0x00, // ####
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x0F, 0xF0, 0x00, // ########
0x0F, 0xF0, 0x00, // ########
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @4176 'Z' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x1F, 0xF8, 0x00, // ##########
0x1F, 0xF8, 0x00, // ##########
0x18, 0x18, 0x00, // ## ##
0x18, 0x30, 0x00, // ## ##
0x18, 0x60, 0x00, // ## ##
0x18, 0xC0, 0x00, // ## ##
0x01, 0x80, 0x00, // ##
0x03, 0x00, 0x00, // ##
0x06, 0x18, 0x00, // ## ##
0x0C, 0x18, 0x00, // ## ##
0x18, 0x18, 0x00, // ## ##
0x30, 0x18, 0x00, // ## ##
0x3F, 0xF8, 0x00, // ###########
0x3F, 0xF8, 0x00, // ###########
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @4248 '[' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x01, 0xF0, 0x00, // #####
0x01, 0xF0, 0x00, // #####
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0xF0, 0x00, // #####
0x01, 0xF0, 0x00, // #####
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @4320 '\' (17 pixels wide)
0x18, 0x00, 0x00, // ##
0x18, 0x00, 0x00, // ##
0x1C, 0x00, 0x00, // ###
0x0C, 0x00, 0x00, // ##
0x0E, 0x00, 0x00, // ###
0x06, 0x00, 0x00, // ##
0x06, 0x00, 0x00, // ##
0x03, 0x00, 0x00, // ##
0x03, 0x00, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x00, 0xC0, 0x00, // ##
0x00, 0xC0, 0x00, // ##
0x00, 0x60, 0x00, // ##
0x00, 0x60, 0x00, // ##
0x00, 0x70, 0x00, // ###
0x00, 0x30, 0x00, // ##
0x00, 0x38, 0x00, // ###
0x00, 0x18, 0x00, // ##
0x00, 0x18, 0x00, // ##
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @4392 ']' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x0F, 0x80, 0x00, // #####
0x0F, 0x80, 0x00, // #####
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x0F, 0x80, 0x00, // #####
0x0F, 0x80, 0x00, // #####
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @4464 '^' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x80, 0x00, // #
0x01, 0xC0, 0x00, // ###
0x03, 0xE0, 0x00, // #####
0x07, 0x70, 0x00, // ### ###
0x06, 0x30, 0x00, // ## ##
0x0C, 0x18, 0x00, // ## ##
0x18, 0x0C, 0x00, // ## ##
0x10, 0x04, 0x00, // # #
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @4536 '_' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0xFF, 0xFF, 0x00, // ################
0xFF, 0xFF, 0x00, // ################
// @4608 '`' (17 pixels wide)
0x00, 0x00, 0x00, //
0x03, 0x00, 0x00, // ##
0x03, 0x80, 0x00, // ###
0x00, 0xE0, 0x00, // ###
0x00, 0x60, 0x00, // ##
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @4680 'a' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x0F, 0xC0, 0x00, // ######
0x1F, 0xE0, 0x00, // ########
0x00, 0x30, 0x00, // ##
0x00, 0x30, 0x00, // ##
0x07, 0xF0, 0x00, // #######
0x1F, 0xF0, 0x00, // #########
0x38, 0x30, 0x00, // ### ##
0x30, 0x30, 0x00, // ## ##
0x30, 0x70, 0x00, // ## ###
0x1F, 0xFC, 0x00, // ###########
0x0F, 0xBC, 0x00, // ##### ####
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @4752 'b' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x78, 0x00, 0x00, // ####
0x78, 0x00, 0x00, // ####
0x18, 0x00, 0x00, // ##
0x18, 0x00, 0x00, // ##
0x1B, 0xE0, 0x00, // ## #####
0x1F, 0xF8, 0x00, // ##########
0x1C, 0x18, 0x00, // ### ##
0x18, 0x0C, 0x00, // ## ##
0x18, 0x0C, 0x00, // ## ##
0x18, 0x0C, 0x00, // ## ##
0x18, 0x0C, 0x00, // ## ##
0x18, 0x0C, 0x00, // ## ##
0x1C, 0x18, 0x00, // ### ##
0x7F, 0xF8, 0x00, // ############
0x7B, 0xE0, 0x00, // #### #####
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @4824 'c' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x03, 0xEC, 0x00, // ##### ##
0x0F, 0xFC, 0x00, // ##########
0x1C, 0x1C, 0x00, // ### ###
0x38, 0x0C, 0x00, // ### ##
0x30, 0x0C, 0x00, // ## ##
0x30, 0x00, 0x00, // ##
0x30, 0x00, 0x00, // ##
0x38, 0x0C, 0x00, // ### ##
0x1C, 0x1C, 0x00, // ### ###
0x0F, 0xF8, 0x00, // #########
0x03, 0xF0, 0x00, // ######
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @4896 'd' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x78, 0x00, // ####
0x00, 0x78, 0x00, // ####
0x00, 0x18, 0x00, // ##
0x00, 0x18, 0x00, // ##
0x07, 0xD8, 0x00, // ##### ##
0x1F, 0xF8, 0x00, // ##########
0x18, 0x38, 0x00, // ## ###
0x30, 0x18, 0x00, // ## ##
0x30, 0x18, 0x00, // ## ##
0x30, 0x18, 0x00, // ## ##
0x30, 0x18, 0x00, // ## ##
0x30, 0x18, 0x00, // ## ##
0x18, 0x38, 0x00, // ## ###
0x1F, 0xFE, 0x00, // ############
0x07, 0xDE, 0x00, // ##### ####
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @4968 'e' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x07, 0xE0, 0x00, // ######
0x1F, 0xF8, 0x00, // ##########
0x18, 0x18, 0x00, // ## ##
0x30, 0x0C, 0x00, // ## ##
0x3F, 0xFC, 0x00, // ############
0x3F, 0xFC, 0x00, // ############
0x30, 0x00, 0x00, // ##
0x30, 0x00, 0x00, // ##
0x18, 0x0C, 0x00, // ## ##
0x1F, 0xFC, 0x00, // ###########
0x07, 0xF0, 0x00, // #######
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @5040 'f' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x01, 0xFC, 0x00, // #######
0x03, 0xFC, 0x00, // ########
0x06, 0x00, 0x00, // ##
0x06, 0x00, 0x00, // ##
0x3F, 0xF8, 0x00, // ###########
0x3F, 0xF8, 0x00, // ###########
0x06, 0x00, 0x00, // ##
0x06, 0x00, 0x00, // ##
0x06, 0x00, 0x00, // ##
0x06, 0x00, 0x00, // ##
0x06, 0x00, 0x00, // ##
0x06, 0x00, 0x00, // ##
0x06, 0x00, 0x00, // ##
0x3F, 0xF0, 0x00, // ##########
0x3F, 0xF0, 0x00, // ##########
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @5112 'g' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x07, 0xDE, 0x00, // ##### ####
0x1F, 0xFE, 0x00, // ############
0x18, 0x38, 0x00, // ## ###
0x30, 0x18, 0x00, // ## ##
0x30, 0x18, 0x00, // ## ##
0x30, 0x18, 0x00, // ## ##
0x30, 0x18, 0x00, // ## ##
0x30, 0x18, 0x00, // ## ##
0x18, 0x38, 0x00, // ## ###
0x1F, 0xF8, 0x00, // ##########
0x07, 0xD8, 0x00, // ##### ##
0x00, 0x18, 0x00, // ##
0x00, 0x18, 0x00, // ##
0x00, 0x38, 0x00, // ###
0x0F, 0xF0, 0x00, // ########
0x0F, 0xC0, 0x00, // ######
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @5184 'h' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x78, 0x00, 0x00, // ####
0x78, 0x00, 0x00, // ####
0x18, 0x00, 0x00, // ##
0x18, 0x00, 0x00, // ##
0x1B, 0xE0, 0x00, // ## #####
0x1F, 0xF0, 0x00, // #########
0x1C, 0x38, 0x00, // ### ###
0x18, 0x18, 0x00, // ## ##
0x18, 0x18, 0x00, // ## ##
0x18, 0x18, 0x00, // ## ##
0x18, 0x18, 0x00, // ## ##
0x18, 0x18, 0x00, // ## ##
0x18, 0x18, 0x00, // ## ##
0x7E, 0x7E, 0x00, // ###### ######
0x7E, 0x7E, 0x00, // ###### ######
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @5256 'i' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x1F, 0x80, 0x00, // ######
0x1F, 0x80, 0x00, // ######
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x3F, 0xFC, 0x00, // ############
0x3F, 0xFC, 0x00, // ############
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @5328 'j' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0xC0, 0x00, // ##
0x00, 0xC0, 0x00, // ##
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x1F, 0xF0, 0x00, // #########
0x1F, 0xF0, 0x00, // #########
0x00, 0x30, 0x00, // ##
0x00, 0x30, 0x00, // ##
0x00, 0x30, 0x00, // ##
0x00, 0x30, 0x00, // ##
0x00, 0x30, 0x00, // ##
0x00, 0x30, 0x00, // ##
0x00, 0x30, 0x00, // ##
0x00, 0x30, 0x00, // ##
0x00, 0x30, 0x00, // ##
0x00, 0x30, 0x00, // ##
0x00, 0x30, 0x00, // ##
0x00, 0x70, 0x00, // ###
0x1F, 0xE0, 0x00, // ########
0x1F, 0x80, 0x00, // ######
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @5400 'k' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x3C, 0x00, 0x00, // ####
0x3C, 0x00, 0x00, // ####
0x0C, 0x00, 0x00, // ##
0x0C, 0x00, 0x00, // ##
0x0C, 0xF8, 0x00, // ## #####
0x0C, 0xF8, 0x00, // ## #####
0x0C, 0xC0, 0x00, // ## ##
0x0D, 0x80, 0x00, // ## ##
0x0F, 0x80, 0x00, // #####
0x0F, 0x00, 0x00, // ####
0x0F, 0x80, 0x00, // #####
0x0D, 0xC0, 0x00, // ## ###
0x0C, 0xE0, 0x00, // ## ###
0x3C, 0x7C, 0x00, // #### #####
0x3C, 0x7C, 0x00, // #### #####
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @5472 'l' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x1F, 0x80, 0x00, // ######
0x1F, 0x80, 0x00, // ######
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x3F, 0xFC, 0x00, // ############
0x3F, 0xFC, 0x00, // ############
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @5544 'm' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0xF7, 0x78, 0x00, // #### ### ####
0xFF, 0xFC, 0x00, // ##############
0x39, 0xCC, 0x00, // ### ### ##
0x31, 0x8C, 0x00, // ## ## ##
0x31, 0x8C, 0x00, // ## ## ##
0x31, 0x8C, 0x00, // ## ## ##
0x31, 0x8C, 0x00, // ## ## ##
0x31, 0x8C, 0x00, // ## ## ##
0x31, 0x8C, 0x00, // ## ## ##
0xFD, 0xEF, 0x00, // ###### #### ####
0xFD, 0xEF, 0x00, // ###### #### ####
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @5616 'n' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x7B, 0xE0, 0x00, // #### #####
0x7F, 0xF0, 0x00, // ###########
0x1C, 0x38, 0x00, // ### ###
0x18, 0x18, 0x00, // ## ##
0x18, 0x18, 0x00, // ## ##
0x18, 0x18, 0x00, // ## ##
0x18, 0x18, 0x00, // ## ##
0x18, 0x18, 0x00, // ## ##
0x18, 0x18, 0x00, // ## ##
0x7E, 0x7E, 0x00, // ###### ######
0x7E, 0x7E, 0x00, // ###### ######
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @5688 'o' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x03, 0xC0, 0x00, // ####
0x0F, 0xF0, 0x00, // ########
0x1C, 0x38, 0x00, // ### ###
0x38, 0x1C, 0x00, // ### ###
0x30, 0x0C, 0x00, // ## ##
0x30, 0x0C, 0x00, // ## ##
0x30, 0x0C, 0x00, // ## ##
0x38, 0x1C, 0x00, // ### ###
0x1C, 0x38, 0x00, // ### ###
0x0F, 0xF0, 0x00, // ########
0x03, 0xC0, 0x00, // ####
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @5760 'p' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x7B, 0xE0, 0x00, // #### #####
0x7F, 0xF8, 0x00, // ############
0x1C, 0x18, 0x00, // ### ##
0x18, 0x0C, 0x00, // ## ##
0x18, 0x0C, 0x00, // ## ##
0x18, 0x0C, 0x00, // ## ##
0x18, 0x0C, 0x00, // ## ##
0x18, 0x0C, 0x00, // ## ##
0x1C, 0x18, 0x00, // ### ##
0x1F, 0xF8, 0x00, // ##########
0x1B, 0xE0, 0x00, // ## #####
0x18, 0x00, 0x00, // ##
0x18, 0x00, 0x00, // ##
0x18, 0x00, 0x00, // ##
0x7F, 0x00, 0x00, // #######
0x7F, 0x00, 0x00, // #######
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @5832 'q' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x07, 0xDE, 0x00, // ##### ####
0x1F, 0xFE, 0x00, // ############
0x18, 0x38, 0x00, // ## ###
0x30, 0x18, 0x00, // ## ##
0x30, 0x18, 0x00, // ## ##
0x30, 0x18, 0x00, // ## ##
0x30, 0x18, 0x00, // ## ##
0x30, 0x18, 0x00, // ## ##
0x18, 0x38, 0x00, // ## ###
0x1F, 0xF8, 0x00, // ##########
0x07, 0xD8, 0x00, // ##### ##
0x00, 0x18, 0x00, // ##
0x00, 0x18, 0x00, // ##
0x00, 0x18, 0x00, // ##
0x00, 0xFE, 0x00, // #######
0x00, 0xFE, 0x00, // #######
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @5904 'r' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x3E, 0x78, 0x00, // ##### ####
0x3E, 0xFC, 0x00, // ##### ######
0x07, 0xCC, 0x00, // ##### ##
0x07, 0x00, 0x00, // ###
0x06, 0x00, 0x00, // ##
0x06, 0x00, 0x00, // ##
0x06, 0x00, 0x00, // ##
0x06, 0x00, 0x00, // ##
0x06, 0x00, 0x00, // ##
0x3F, 0xF0, 0x00, // ##########
0x3F, 0xF0, 0x00, // ##########
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @5976 's' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x07, 0xF8, 0x00, // ########
0x0F, 0xF8, 0x00, // #########
0x18, 0x18, 0x00, // ## ##
0x18, 0x18, 0x00, // ## ##
0x1F, 0x80, 0x00, // ######
0x0F, 0xF0, 0x00, // ########
0x00, 0xF8, 0x00, // #####
0x18, 0x18, 0x00, // ## ##
0x18, 0x38, 0x00, // ## ###
0x1F, 0xF0, 0x00, // #########
0x1F, 0xE0, 0x00, // ########
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @6048 't' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x0C, 0x00, 0x00, // ##
0x0C, 0x00, 0x00, // ##
0x0C, 0x00, 0x00, // ##
0x0C, 0x00, 0x00, // ##
0x3F, 0xF0, 0x00, // ##########
0x3F, 0xF0, 0x00, // ##########
0x0C, 0x00, 0x00, // ##
0x0C, 0x00, 0x00, // ##
0x0C, 0x00, 0x00, // ##
0x0C, 0x00, 0x00, // ##
0x0C, 0x00, 0x00, // ##
0x0C, 0x00, 0x00, // ##
0x0C, 0x1C, 0x00, // ## ###
0x07, 0xFC, 0x00, // #########
0x03, 0xF0, 0x00, // ######
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @6120 'u' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x78, 0x78, 0x00, // #### ####
0x78, 0x78, 0x00, // #### ####
0x18, 0x18, 0x00, // ## ##
0x18, 0x18, 0x00, // ## ##
0x18, 0x18, 0x00, // ## ##
0x18, 0x18, 0x00, // ## ##
0x18, 0x18, 0x00, // ## ##
0x18, 0x18, 0x00, // ## ##
0x18, 0x38, 0x00, // ## ###
0x0F, 0xFE, 0x00, // ###########
0x07, 0xDE, 0x00, // ##### ####
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @6192 'v' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x7C, 0x3E, 0x00, // ##### #####
0x7C, 0x3E, 0x00, // ##### #####
0x18, 0x18, 0x00, // ## ##
0x18, 0x18, 0x00, // ## ##
0x0C, 0x30, 0x00, // ## ##
0x0C, 0x30, 0x00, // ## ##
0x06, 0x60, 0x00, // ## ##
0x06, 0x60, 0x00, // ## ##
0x07, 0xE0, 0x00, // ######
0x03, 0xC0, 0x00, // ####
0x03, 0xC0, 0x00, // ####
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @6264 'w' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x78, 0x3C, 0x00, // #### ####
0x78, 0x3C, 0x00, // #### ####
0x31, 0x18, 0x00, // ## # ##
0x33, 0x98, 0x00, // ## ### ##
0x33, 0x98, 0x00, // ## ### ##
0x1A, 0xB0, 0x00, // ## # # ##
0x1E, 0xF0, 0x00, // #### ####
0x1E, 0xF0, 0x00, // #### ####
0x1C, 0x60, 0x00, // ### ##
0x0C, 0x60, 0x00, // ## ##
0x0C, 0x60, 0x00, // ## ##
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @6336 'x' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x3E, 0x7C, 0x00, // ##### #####
0x3E, 0x7C, 0x00, // ##### #####
0x0C, 0x30, 0x00, // ## ##
0x06, 0x60, 0x00, // ## ##
0x03, 0xC0, 0x00, // ####
0x01, 0x80, 0x00, // ##
0x03, 0xC0, 0x00, // ####
0x06, 0x60, 0x00, // ## ##
0x0C, 0x30, 0x00, // ## ##
0x3E, 0x7C, 0x00, // ##### #####
0x3E, 0x7C, 0x00, // ##### #####
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @6408 'y' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x7E, 0x1F, 0x00, // ###### #####
0x7E, 0x1F, 0x00, // ###### #####
0x18, 0x0C, 0x00, // ## ##
0x0C, 0x18, 0x00, // ## ##
0x0C, 0x18, 0x00, // ## ##
0x06, 0x30, 0x00, // ## ##
0x06, 0x30, 0x00, // ## ##
0x03, 0x60, 0x00, // ## ##
0x03, 0xE0, 0x00, // #####
0x01, 0xC0, 0x00, // ###
0x00, 0xC0, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x03, 0x00, 0x00, // ##
0x3F, 0xC0, 0x00, // ########
0x3F, 0xC0, 0x00, // ########
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @6480 'z' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x1F, 0xF8, 0x00, // ##########
0x1F, 0xF8, 0x00, // ##########
0x18, 0x30, 0x00, // ## ##
0x18, 0x60, 0x00, // ## ##
0x00, 0xC0, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x03, 0x00, 0x00, // ##
0x06, 0x18, 0x00, // ## ##
0x0C, 0x18, 0x00, // ## ##
0x1F, 0xF8, 0x00, // ##########
0x1F, 0xF8, 0x00, // ##########
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @6552 '{' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0xE0, 0x00, // ###
0x01, 0xE0, 0x00, // ####
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x03, 0x80, 0x00, // ###
0x07, 0x00, 0x00, // ###
0x03, 0x80, 0x00, // ###
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0xE0, 0x00, // ####
0x00, 0xE0, 0x00, // ###
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @6624 '|' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @6696 '}' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x07, 0x00, 0x00, // ###
0x07, 0x80, 0x00, // ####
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0xC0, 0x00, // ###
0x00, 0xE0, 0x00, // ###
0x01, 0xC0, 0x00, // ###
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x01, 0x80, 0x00, // ##
0x07, 0x80, 0x00, // ####
0x07, 0x00, 0x00, // ###
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
// @6768 '~' (17 pixels wide)
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x0E, 0x00, 0x00, // ###
0x1F, 0x18, 0x00, // ##### ##
0x3B, 0xB8, 0x00, // ### ### ###
0x31, 0xF0, 0x00, // ## #####
0x00, 0xE0, 0x00, // ###
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
0x00, 0x00, 0x00, //
};
sFONT Font24 = {
Font24_Table,
17, /* Width */
24, /* Height */
};
/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
/**
******************************************************************************
* @file Font8.c
* @author MCD Application Team
* @version V1.0.0
* @date 18-February-2014
* @brief This file provides text Font8 for STM32xx-EVAL's LCD driver.
******************************************************************************
* @attention
*
* <h2><center>&copy; COPYRIGHT(c) 2014 STMicroelectronics</center></h2>
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* 3. Neither the name of STMicroelectronics nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
******************************************************************************
*/
/* Includes ------------------------------------------------------------------*/
#include "fonts.h"
//
// Font data for Courier New 12pt
//
const uint8_t Font8_Table[] =
{
// @0 ' ' (5 pixels wide)
0x00, //
0x00, //
0x00, //
0x00, //
0x00, //
0x00, //
0x00, //
0x00, //
// @8 '!' (5 pixels wide)
0x20, // #
0x20, // #
0x20, // #
0x20, // #
0x00, //
0x20, // #
0x00, //
0x00, //
// @16 '"' (5 pixels wide)
0x50, // # #
0x50, // # #
0x00, //
0x00, //
0x00, //
0x00, //
0x00, //
0x00, //
// @24 '#' (5 pixels wide)
0x28, // # #
0x50, // # #
0xF8, // #####
0x50, // # #
0xF8, // #####
0x50, // # #
0xA0, // # #
0x00, //
// @32 '$' (5 pixels wide)
0x20, // #
0x30, // ##
0x60, // ##
0x30, // ##
0x10, // #
0x60, // ##
0x20, // #
0x00, //
// @40 '%' (5 pixels wide)
0x20, // #
0x20, // #
0x18, // ##
0x60, // ##
0x10, // #
0x10, // #
0x00, //
0x00, //
// @48 '&' (5 pixels wide)
0x00, //
0x38, // ###
0x20, // #
0x60, // ##
0x50, // # #
0x78, // ####
0x00, //
0x00, //
// @56 ''' (5 pixels wide)
0x20, // #
0x20, // #
0x20, // #
0x00, //
0x00, //
0x00, //
0x00, //
0x00, //
// @64 '(' (5 pixels wide)
0x10, // #
0x20, // #
0x20, // #
0x20, // #
0x20, // #
0x20, // #
0x10, // #
0x00, //
// @72 ')' (5 pixels wide)
0x40, // #
0x20, // #
0x20, // #
0x20, // #
0x20, // #
0x20, // #
0x40, // #
0x00, //
// @80 '*' (5 pixels wide)
0x20, // #
0x70, // ###
0x20, // #
0x50, // # #
0x00, //
0x00, //
0x00, //
0x00, //
// @88 '+' (5 pixels wide)
0x00, //
0x20, // #
0x20, // #
0xF8, // #####
0x20, // #
0x20, // #
0x00, //
0x00, //
// @96 ',' (5 pixels wide)
0x00, //
0x00, //
0x00, //
0x00, //
0x10, // #
0x20, // #
0x20, // #
0x00, //
// @104 '-' (5 pixels wide)
0x00, //
0x00, //
0x00, //
0x70, // ###
0x00, //
0x00, //
0x00, //
0x00, //
// @112 '.' (5 pixels wide)
0x00, //
0x00, //
0x00, //
0x00, //
0x00, //
0x20, // #
0x00, //
0x00, //
// @120 '/' (5 pixels wide)
0x10, // #
0x20, // #
0x20, // #
0x20, // #
0x40, // #
0x40, // #
0x80, // #
0x00, //
// @128 '0' (5 pixels wide)
0x20, // #
0x50, // # #
0x50, // # #
0x50, // # #
0x50, // # #
0x20, // #
0x00, //
0x00, //
// @136 '1' (5 pixels wide)
0x60, // ##
0x20, // #
0x20, // #
0x20, // #
0x20, // #
0xF8, // #####
0x00, //
0x00, //
// @144 '2' (5 pixels wide)
0x20, // #
0x50, // # #
0x20, // #
0x20, // #
0x40, // #
0x70, // ###
0x00, //
0x00, //
// @152 '3' (5 pixels wide)
0x20, // #
0x50, // # #
0x10, // #
0x20, // #
0x10, // #
0x60, // ##
0x00, //
0x00, //
// @160 '4' (5 pixels wide)
0x10, // #
0x30, // ##
0x50, // # #
0x78, // ####
0x10, // #
0x38, // ###
0x00, //
0x00, //
// @168 '5' (5 pixels wide)
0x70, // ###
0x40, // #
0x60, // ##
0x10, // #
0x50, // # #
0x20, // #
0x00, //
0x00, //
// @176 '6' (5 pixels wide)
0x30, // ##
0x40, // #
0x60, // ##
0x50, // # #
0x50, // # #
0x60, // ##
0x00, //
0x00, //
// @184 '7' (5 pixels wide)
0x70, // ###
0x50, // # #
0x10, // #
0x20, // #
0x20, // #
0x20, // #
0x00, //
0x00, //
// @192 '8' (5 pixels wide)
0x20, // #
0x50, // # #
0x20, // #
0x50, // # #
0x50, // # #
0x20, // #
0x00, //
0x00, //
// @200 '9' (5 pixels wide)
0x30, // ##
0x50, // # #
0x50, // # #
0x30, // ##
0x10, // #
0x60, // ##
0x00, //
0x00, //
// @208 ':' (5 pixels wide)
0x00, //
0x00, //
0x20, // #
0x00, //
0x00, //
0x20, // #
0x00, //
0x00, //
// @216 ';' (5 pixels wide)
0x00, //
0x00, //
0x10, // #
0x00, //
0x10, // #
0x20, // #
0x00, //
0x00, //
// @224 '<' (5 pixels wide)
0x00, //
0x10, // #
0x20, // #
0xC0, // ##
0x20, // #
0x10, // #
0x00, //
0x00, //
// @232 '=' (5 pixels wide)
0x00, //
0x70, // ###
0x00, //
0x70, // ###
0x00, //
0x00, //
0x00, //
0x00, //
// @240 '>' (5 pixels wide)
0x00, //
0x40, // #
0x20, // #
0x18, // ##
0x20, // #
0x40, // #
0x00, //
0x00, //
// @248 '?' (5 pixels wide)
0x20, // #
0x50, // # #
0x10, // #
0x20, // #
0x00, //
0x20, // #
0x00, //
0x00, //
// @256 '@' (5 pixels wide)
0x30, // ##
0x48, // # #
0x48, // # #
0x58, // # ##
0x48, // # #
0x40, // #
0x38, // ###
0x00, //
// @264 'A' (5 pixels wide)
0x60, // ##
0x20, // #
0x50, // # #
0x70, // ###
0x88, // # #
0xD8, // ## ##
0x00, //
0x00, //
// @272 'B' (5 pixels wide)
0xF0, // ####
0x48, // # #
0x70, // ###
0x48, // # #
0x48, // # #
0xF0, // ####
0x00, //
0x00, //
// @280 'C' (5 pixels wide)
0x70, // ###
0x50, // # #
0x40, // #
0x40, // #
0x40, // #
0x30, // ##
0x00, //
0x00, //
// @288 'D' (5 pixels wide)
0xF0, // ####
0x48, // # #
0x48, // # #
0x48, // # #
0x48, // # #
0xF0, // ####
0x00, //
0x00, //
// @296 'E' (5 pixels wide)
0xF8, // #####
0x48, // # #
0x60, // ##
0x40, // #
0x48, // # #
0xF8, // #####
0x00, //
0x00, //
// @304 'F' (5 pixels wide)
0xF8, // #####
0x48, // # #
0x60, // ##
0x40, // #
0x40, // #
0xE0, // ###
0x00, //
0x00, //
// @312 'G' (5 pixels wide)
0x70, // ###
0x40, // #
0x40, // #
0x58, // # ##
0x50, // # #
0x30, // ##
0x00, //
0x00, //
// @320 'H' (5 pixels wide)
0xE8, // ### #
0x48, // # #
0x78, // ####
0x48, // # #
0x48, // # #
0xE8, // ### #
0x00, //
0x00, //
// @328 'I' (5 pixels wide)
0x70, // ###
0x20, // #
0x20, // #
0x20, // #
0x20, // #
0x70, // ###
0x00, //
0x00, //
// @336 'J' (5 pixels wide)
0x38, // ###
0x10, // #
0x10, // #
0x50, // # #
0x50, // # #
0x20, // #
0x00, //
0x00, //
// @344 'K' (5 pixels wide)
0xD8, // ## ##
0x50, // # #
0x60, // ##
0x70, // ###
0x50, // # #
0xD8, // ## ##
0x00, //
0x00, //
// @352 'L' (5 pixels wide)
0xE0, // ###
0x40, // #
0x40, // #
0x40, // #
0x48, // # #
0xF8, // #####
0x00, //
0x00, //
// @360 'M' (5 pixels wide)
0xD8, // ## ##
0xD8, // ## ##
0xD8, // ## ##
0xA8, // # # #
0x88, // # #
0xD8, // ## ##
0x00, //
0x00, //
// @368 'N' (5 pixels wide)
0xD8, // ## ##
0x68, // ## #
0x68, // ## #
0x58, // # ##
0x58, // # ##
0xE8, // ### #
0x00, //
0x00, //
// @376 'O' (5 pixels wide)
0x30, // ##
0x48, // # #
0x48, // # #
0x48, // # #
0x48, // # #
0x30, // ##
0x00, //
0x00, //
// @384 'P' (5 pixels wide)
0xF0, // ####
0x48, // # #
0x48, // # #
0x70, // ###
0x40, // #
0xE0, // ###
0x00, //
0x00, //
// @392 'Q' (5 pixels wide)
0x30, // ##
0x48, // # #
0x48, // # #
0x48, // # #
0x48, // # #
0x30, // ##
0x18, // ##
0x00, //
// @400 'R' (5 pixels wide)
0xF0, // ####
0x48, // # #
0x48, // # #
0x70, // ###
0x48, // # #
0xE8, // ### #
0x00, //
0x00, //
// @408 'S' (5 pixels wide)
0x70, // ###
0x50, // # #
0x20, // #
0x10, // #
0x50, // # #
0x70, // ###
0x00, //
0x00, //
// @416 'T' (5 pixels wide)
0xF8, // #####
0xA8, // # # #
0x20, // #
0x20, // #
0x20, // #
0x70, // ###
0x00, //
0x00, //
// @424 'U' (5 pixels wide)
0xD8, // ## ##
0x48, // # #
0x48, // # #
0x48, // # #
0x48, // # #
0x30, // ##
0x00, //
0x00, //
// @432 'V' (5 pixels wide)
0xD8, // ## ##
0x88, // # #
0x48, // # #
0x50, // # #
0x50, // # #
0x30, // ##
0x00, //
0x00, //
// @440 'W' (5 pixels wide)
0xD8, // ## ##
0x88, // # #
0xA8, // # # #
0xA8, // # # #
0xA8, // # # #
0x50, // # #
0x00, //
0x00, //
// @448 'X' (5 pixels wide)
0xD8, // ## ##
0x50, // # #
0x20, // #
0x20, // #
0x50, // # #
0xD8, // ## ##
0x00, //
0x00, //
// @456 'Y' (5 pixels wide)
0xD8, // ## ##
0x88, // # #
0x50, // # #
0x20, // #
0x20, // #
0x70, // ###
0x00, //
0x00, //
// @464 'Z' (5 pixels wide)
0x78, // ####
0x48, // # #
0x10, // #
0x20, // #
0x48, // # #
0x78, // ####
0x00, //
0x00, //
// @472 '[' (5 pixels wide)
0x30, // ##
0x20, // #
0x20, // #
0x20, // #
0x20, // #
0x20, // #
0x30, // ##
0x00, //
// @480 '\' (5 pixels wide)
0x80, // #
0x40, // #
0x40, // #
0x20, // #
0x20, // #
0x20, // #
0x10, // #
0x00, //
// @488 ']' (5 pixels wide)
0x60, // ##
0x20, // #
0x20, // #
0x20, // #
0x20, // #
0x20, // #
0x60, // ##
0x00, //
// @496 '^' (5 pixels wide)
0x20, // #
0x20, // #
0x50, // # #
0x00, //
0x00, //
0x00, //
0x00, //
0x00, //
// @504 '_' (5 pixels wide)
0x00, //
0x00, //
0x00, //
0x00, //
0x00, //
0x00, //
0x00, //
0xF8, // #####
// @512 '`' (5 pixels wide)
0x20, // #
0x10, // #
0x00, //
0x00, //
0x00, //
0x00, //
0x00, //
0x00, //
// @520 'a' (5 pixels wide)
0x00, //
0x00, //
0x30, // ##
0x10, // #
0x70, // ###
0x78, // ####
0x00, //
0x00, //
// @528 'b' (5 pixels wide)
0xC0, // ##
0x40, // #
0x70, // ###
0x48, // # #
0x48, // # #
0xF0, // ####
0x00, //
0x00, //
// @536 'c' (5 pixels wide)
0x00, //
0x00, //
0x70, // ###
0x40, // #
0x40, // #
0x70, // ###
0x00, //
0x00, //
// @544 'd' (5 pixels wide)
0x18, // ##
0x08, // #
0x38, // ###
0x48, // # #
0x48, // # #
0x38, // ###
0x00, //
0x00, //
// @552 'e' (5 pixels wide)
0x00, //
0x00, //
0x70, // ###
0x70, // ###
0x40, // #
0x30, // ##
0x00, //
0x00, //
// @560 'f' (5 pixels wide)
0x10, // #
0x20, // #
0x70, // ###
0x20, // #
0x20, // #
0x70, // ###
0x00, //
0x00, //
// @568 'g' (5 pixels wide)
0x00, //
0x00, //
0x38, // ###
0x48, // # #
0x48, // # #
0x38, // ###
0x08, // #
0x30, // ##
// @576 'h' (5 pixels wide)
0xC0, // ##
0x40, // #
0x70, // ###
0x48, // # #
0x48, // # #
0xE8, // ### #
0x00, //
0x00, //
// @584 'i' (5 pixels wide)
0x20, // #
0x00, //
0x60, // ##
0x20, // #
0x20, // #
0x70, // ###
0x00, //
0x00, //
// @592 'j' (5 pixels wide)
0x20, // #
0x00, //
0x70, // ###
0x10, // #
0x10, // #
0x10, // #
0x10, // #
0x70, // ###
// @600 'k' (5 pixels wide)
0xC0, // ##
0x40, // #
0x58, // # ##
0x70, // ###
0x50, // # #
0xD8, // ## ##
0x00, //
0x00, //
// @608 'l' (5 pixels wide)
0x60, // ##
0x20, // #
0x20, // #
0x20, // #
0x20, // #
0x70, // ###
0x00, //
0x00, //
// @616 'm' (5 pixels wide)
0x00, //
0x00, //
0xD0, // ## #
0xA8, // # # #
0xA8, // # # #
0xA8, // # # #
0x00, //
0x00, //
// @624 'n' (5 pixels wide)
0x00, //
0x00, //
0xF0, // ####
0x48, // # #
0x48, // # #
0xC8, // ## #
0x00, //
0x00, //
// @632 'o' (5 pixels wide)
0x00, //
0x00, //
0x30, // ##
0x48, // # #
0x48, // # #
0x30, // ##
0x00, //
0x00, //
// @640 'p' (5 pixels wide)
0x00, //
0x00, //
0xF0, // ####
0x48, // # #
0x48, // # #
0x70, // ###
0x40, // #
0xE0, // ###
// @648 'q' (5 pixels wide)
0x00, //
0x00, //
0x38, // ###
0x48, // # #
0x48, // # #
0x38, // ###
0x08, // #
0x18, // ##
// @656 'r' (5 pixels wide)
0x00, //
0x00, //
0x78, // ####
0x20, // #
0x20, // #
0x70, // ###
0x00, //
0x00, //
// @664 's' (5 pixels wide)
0x00, //
0x00, //
0x30, // ##
0x20, // #
0x10, // #
0x60, // ##
0x00, //
0x00, //
// @672 't' (5 pixels wide)
0x00, //
0x40, // #
0xF0, // ####
0x40, // #
0x48, // # #
0x30, // ##
0x00, //
0x00, //
// @680 'u' (5 pixels wide)
0x00, //
0x00, //
0xD8, // ## ##
0x48, // # #
0x48, // # #
0x38, // ###
0x00, //
0x00, //
// @688 'v' (5 pixels wide)
0x00, //
0x00, //
0xC8, // ## #
0x48, // # #
0x30, // ##
0x30, // ##
0x00, //
0x00, //
// @696 'w' (5 pixels wide)
0x00, //
0x00, //
0xD8, // ## ##
0xA8, // # # #
0xA8, // # # #
0x50, // # #
0x00, //
0x00, //
// @704 'x' (5 pixels wide)
0x00, //
0x00, //
0x48, // # #
0x30, // ##
0x30, // ##
0x48, // # #
0x00, //
0x00, //
// @712 'y' (5 pixels wide)
0x00, //
0x00, //
0xD8, // ## ##
0x50, // # #
0x50, // # #
0x20, // #
0x20, // #
0x60, // ##
// @720 'z' (5 pixels wide)
0x00, //
0x00, //
0x78, // ####
0x50, // # #
0x28, // # #
0x78, // ####
0x00, //
0x00, //
// @728 '{' (5 pixels wide)
0x10, // #
0x20, // #
0x20, // #
0x60, // ##
0x20, // #
0x20, // #
0x10, // #
0x00, //
// @736 '|' (5 pixels wide)
0x20, // #
0x20, // #
0x20, // #
0x20, // #
0x20, // #
0x20, // #
0x20, // #
0x00, //
// @744 '}' (5 pixels wide)
0x40, // #
0x20, // #
0x20, // #
0x30, // ##
0x20, // #
0x20, // #
0x40, // #
0x00, //
// @752 '~' (5 pixels wide)
0x00, //
0x00, //
0x00, //
0x28, // # #
0x50, // # #
0x00, //
0x00, //
0x00, //
};
sFONT Font8 = {
Font8_Table,
5, /* Width */
8, /* Height */
};
/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
/**
******************************************************************************
* @file fonts.h
* @author MCD Application Team
* @version V1.0.0
* @date 18-February-2014
* @brief Header for fonts.c file
******************************************************************************
* @attention
*
* <h2><center>&copy; COPYRIGHT(c) 2014 STMicroelectronics</center></h2>
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* 3. Neither the name of STMicroelectronics nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
******************************************************************************
*/
/* Define to prevent recursive inclusion -------------------------------------*/
#ifndef TFLITE_INFERENCE_TEST_FONT_H_
#define TFLITE_INFERENCE_TEST_FONT_H_
/* Max size of bitmap will based on a font24 (17x24) */
#define MAX_HEIGHT_FONT 24
#define MAX_WIDTH_FONT 17
#define OFFSET_BITMAP 54
#ifdef __cplusplus
extern "C" {
#endif
/* Includes ------------------------------------------------------------------*/
#include <stdint.h>
typedef struct _tFont
{
const uint8_t *table;
uint16_t Width;
uint16_t Height;
} sFONT;
extern sFONT Font24;
extern sFONT Font20;
extern sFONT Font16;
extern sFONT Font12;
extern sFONT Font8;
#ifdef __cplusplus
}
#endif
#endif /* __FONTS_H */ // TFLITE_INFERENCE_TEST_FONT_H_
/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
aux_source_directory(. DIR_LCD_SRCS)
include_directories(../config)
include_directories(../font)
include_directories(../../src)
add_library(lcd ${DIR_LCD_SRCS})
target_link_libraries(
lcd
PUBLIC
config
font
src
pico_stdlib
pico_multicore
)
/*****************************************************************************
* | File : LCD_Driver.c
* | Author : Waveshare team
* | Function : LCD Drive function
* | Info :
* Image scanning
* Please use progressive scanning to generate images or fonts
*----------------
* | This version: V1.0
* | Date : 2018-01-11
* | Info : Basic version
*
******************************************************************************/
/**************************Intermediate driver layer**************************/
#include "LCD_Driver.h"
LCD_DIS sLCD_DIS;
uint8_t id;
/*******************************************************************************
function:
Hardware reset
*******************************************************************************/
static void LCD_Reset(void)
{
DEV_Digital_Write(LCD_RST_PIN,1);
Driver_Delay_ms(500);
DEV_Digital_Write(LCD_RST_PIN,0);
Driver_Delay_ms(500);
DEV_Digital_Write(LCD_RST_PIN,1);
Driver_Delay_ms(500);
}
void PWM_SetValue(uint16_t duty)
{
uint slice_num = pwm_gpio_to_slice_num(LCD_BKL_PIN);
pwm_set_wrap(slice_num, 10000);
pwm_set_chan_level(slice_num, PWM_CHAN_B, duty*10);
pwm_set_enabled(slice_num, true);
}
void LCD_SetBackLight(uint16_t value)
{
PWM_SetValue(value);
}
/*******************************************************************************
function:
Write register address and data
*******************************************************************************/
void LCD_WriteReg(uint8_t Reg)
{
DEV_Digital_Write(LCD_DC_PIN,0);
DEV_Digital_Write(LCD_CS_PIN,0);
SPI4W_Write_Byte(Reg);
DEV_Digital_Write(LCD_CS_PIN,1);
}
void LCD_WriteData(uint16_t Data)
{
if(LCD_2_8 == id){
DEV_Digital_Write(LCD_DC_PIN,1);
DEV_Digital_Write(LCD_CS_PIN,0);
SPI4W_Write_Byte((uint8_t)Data);
DEV_Digital_Write(LCD_CS_PIN,1);
}else{
DEV_Digital_Write(LCD_DC_PIN,1);
DEV_Digital_Write(LCD_CS_PIN,0);
SPI4W_Write_Byte(Data >> 8);
SPI4W_Write_Byte(Data & 0XFF);
DEV_Digital_Write(LCD_CS_PIN,1);
}
}
/*******************************************************************************
function:
Write register data
*******************************************************************************/
static void LCD_Write_AllData(uint16_t Data, uint32_t DataLen)
{
uint32_t i;
DEV_Digital_Write(LCD_DC_PIN,1);
DEV_Digital_Write(LCD_CS_PIN,0);
for(i = 0; i < DataLen; i++) {
SPI4W_Write_Byte(Data >> 8);
SPI4W_Write_Byte(Data & 0XFF);
}
DEV_Digital_Write(LCD_CS_PIN,1);
}
/*******************************************************************************
function:
Common register initialization
*******************************************************************************/
static void LCD_InitReg(void)
{
id = LCD_Read_Id();
if(LCD_2_8 == id){
LCD_WriteReg(0x11);
Driver_Delay_ms(100);
LCD_WriteReg(0x36);
LCD_WriteData(0x00);
LCD_WriteReg(0x3a);
LCD_WriteData(0x55);
LCD_WriteReg(0xb2);
LCD_WriteData(0x0c);
LCD_WriteData(0x0c);
LCD_WriteData(0x00);
LCD_WriteData(0x33);
LCD_WriteData(0x33);
LCD_WriteReg(0xb7);
LCD_WriteData(0x35);
LCD_WriteReg(0xbb);
LCD_WriteData(0x28);
LCD_WriteReg(0xc0);
LCD_WriteData(0x3c);
LCD_WriteReg(0xc2);
LCD_WriteData(0x01);
LCD_WriteReg(0xc3);
LCD_WriteData(0x0b);
LCD_WriteReg(0xc4);
LCD_WriteData(0x20);
LCD_WriteReg(0xc6);
LCD_WriteData(0x0f);
LCD_WriteReg(0xD0);
LCD_WriteData(0xa4);
LCD_WriteData(0xa1);
LCD_WriteReg(0xe0);
LCD_WriteData(0xd0);
LCD_WriteData(0x01);
LCD_WriteData(0x08);
LCD_WriteData(0x0f);
LCD_WriteData(0x11);
LCD_WriteData(0x2a);
LCD_WriteData(0x36);
LCD_WriteData(0x55);
LCD_WriteData(0x44);
LCD_WriteData(0x3a);
LCD_WriteData(0x0b);
LCD_WriteData(0x06);
LCD_WriteData(0x11);
LCD_WriteData(0x20);
LCD_WriteReg(0xe1);
LCD_WriteData(0xd0);
LCD_WriteData(0x02);
LCD_WriteData(0x07);
LCD_WriteData(0x0a);
LCD_WriteData(0x0b);
LCD_WriteData(0x18);
LCD_WriteData(0x34);
LCD_WriteData(0x43);
LCD_WriteData(0x4a);
LCD_WriteData(0x2b);
LCD_WriteData(0x1b);
LCD_WriteData(0x1c);
LCD_WriteData(0x22);
LCD_WriteData(0x1f);
LCD_WriteReg(0x55);
LCD_WriteData(0xB0);
LCD_WriteReg(0x29);
}else{
LCD_WriteReg(0x21);
LCD_WriteReg(0xC2); //Normal mode, increase can change the display quality, while increasing power consumption
LCD_WriteData(0x33);
LCD_WriteReg(0XC5);
LCD_WriteData(0x00);
LCD_WriteData(0x1e);//VCM_REG[7:0]. <=0X80.
LCD_WriteData(0x80);
LCD_WriteReg(0xB1);//Sets the frame frequency of full color normal mode
LCD_WriteData(0xB0);//0XB0 =70HZ, <=0XB0.0xA0=62HZ
LCD_WriteReg(0x36);
LCD_WriteData(0x28); //2 DOT FRAME MODE,F<=70HZ.
LCD_WriteReg(0XE0);
LCD_WriteData(0x0);
LCD_WriteData(0x13);
LCD_WriteData(0x18);
LCD_WriteData(0x04);
LCD_WriteData(0x0F);
LCD_WriteData(0x06);
LCD_WriteData(0x3a);
LCD_WriteData(0x56);
LCD_WriteData(0x4d);
LCD_WriteData(0x03);
LCD_WriteData(0x0a);
LCD_WriteData(0x06);
LCD_WriteData(0x30);
LCD_WriteData(0x3e);
LCD_WriteData(0x0f);
LCD_WriteReg(0XE1);
LCD_WriteData(0x0);
LCD_WriteData(0x13);
LCD_WriteData(0x18);
LCD_WriteData(0x01);
LCD_WriteData(0x11);
LCD_WriteData(0x06);
LCD_WriteData(0x38);
LCD_WriteData(0x34);
LCD_WriteData(0x4d);
LCD_WriteData(0x06);
LCD_WriteData(0x0d);
LCD_WriteData(0x0b);
LCD_WriteData(0x31);
LCD_WriteData(0x37);
LCD_WriteData(0x0f);
LCD_WriteReg(0X3A); //Set Interface Pixel Format
LCD_WriteData(0x55);
LCD_WriteReg(0x11);//sleep out
Driver_Delay_ms(120);
LCD_WriteReg(0x29);//Turn on the LCD display
}
}
/********************************************************************************
function: Set the display scan and color transfer modes
parameter:
Scan_dir : Scan direction
Colorchose : RGB or GBR color format
********************************************************************************/
void LCD_SetGramScanWay(LCD_SCAN_DIR Scan_dir)
{
uint16_t MemoryAccessReg_Data = 0; //addr:0x36
uint16_t DisFunReg_Data = 0; //addr:0xB6
if(LCD_2_8 == id){
/* it will support later */
//Pico-ResTouch-LCD-2.8
// switch(Scan_dir){
// case L2R_U2D:
// /* Memory access control: MY = 0, MX = 0, MV = 0, ML = 0 RGB = 0 MH = 0 NN = 0 NN = 0*/
// MemoryAccessReg_Data = 0x00;
// break;
// case L2R_D2U:
// /* Memory access control: MY = 0, MX = 0, MV = 0, ML = 1 RGB = 0 MH = 0 NN = 0 NN = 0*/
// MemoryAccessReg_Data = 0x10;
// break;
// case R2L_U2D:
// /* Memory access control: MY = 0, MX = 0, MV = 0, ML = 0 RGB = 0 MH = 1 NN = 0 NN = 0*/
// MemoryAccessReg_Data = 0x04;
// break;
// case R2L_D2U:
// /* Memory access control: MY = 0, MX = 0, MV = 0, ML = 1 RGB = 0 MH = 1 NN = 0 NN = 0*/
// MemoryAccessReg_Data = 0x14;
// break;
// case U2D_L2R: //0X2
// /* Memory access control: MY = 1, MX = 0, MV = 1, ML = 0 RGB = 0 MH = 0 NN = 0 NN = 0*/
// MemoryAccessReg_Data = 0xA0;
// break;
// case U2D_R2L: //0X6
// /* Memory access control: MY = 1, MX = 0, MV = 1, ML = 0 RGB = 0 MH = 1 NN = 0 NN = 0*/
// MemoryAccessReg_Data = 0xA4;
// break;
// case D2U_L2R: //0XA
// /* Memory access control: MY = 1, MX = 0, MV = 1, ML = 1 RGB = 0 MH = 0 NN = 0 NN = 0*/
// MemoryAccessReg_Data = 0xB0;
// break;
// case D2U_R2L: //0XE
// /* Memory access control: MY = 1, MX = 0, MV = 1, ML = 1 RGB = 0 MH = 1 NN = 0 NN = 0*/
// MemoryAccessReg_Data = 0xB4;
// break;
// }
sLCD_DIS.LCD_Scan_Dir = Scan_dir;
//Get GRAM and LCD width and height
//240*320,vertical default
// if(Scan_dir == L2R_U2D || Scan_dir == L2R_D2U || Scan_dir == R2L_U2D || Scan_dir == R2L_D2U) {
// sLCD_DIS.LCD_Dis_Column = LCD_2_8_WIDTH ;
// sLCD_DIS.LCD_Dis_Page = LCD_2_8_HEIGHT;
// } else {
// sLCD_DIS.LCD_Dis_Column = LCD_2_8_HEIGHT;
// sLCD_DIS.LCD_Dis_Page = LCD_2_8_WIDTH ;
// }
sLCD_DIS.LCD_Dis_Column = LCD_2_8_WIDTH ;
sLCD_DIS.LCD_Dis_Page = LCD_2_8_HEIGHT;
LCD_WriteReg(0x36);
// LCD_WriteData(MemoryAccessReg_Data);
LCD_WriteData(0x00);
}else{
//Pico-ResTouch-LCD-3.5
// Gets the scan direction of GRAM
switch (Scan_dir) {
case L2R_U2D:
/* Memory access control: MY = 0, MX = 0, MV = 0, ML = 0 */
/* Display Function control: NN = 0, GS = 0, SS = 1, SM = 0 */
MemoryAccessReg_Data = 0x08;
DisFunReg_Data = 0x22;
break;
case L2R_D2U:
/* Memory access control: MY = 0, MX = 0, MV = 0, ML = 0 */
/* Display Function control: NN = 0, GS = 1, SS = 1, SM = 0 */
MemoryAccessReg_Data = 0x08;
DisFunReg_Data = 0x62;
break;
case R2L_U2D:
/* Memory access control: MY = 0, MX = 0, MV = 0, ML = 0 */
/* Display Function control: NN = 0, GS = 0, SS = 0, SM = 0 */
MemoryAccessReg_Data = 0x08;
DisFunReg_Data = 0x02;
break;
case R2L_D2U:
/* Memory access control: MY = 0, MX = 0, MV = 0, ML = 0 */
/* Display Function control: NN = 0, GS = 1, SS = 0, SM = 0 */
MemoryAccessReg_Data = 0x08;
DisFunReg_Data = 0x42;
break;
case U2D_L2R: //0X2
/* Memory access control: MY = 0, MX = 0, MV = 1, ML = 0 X-Y Exchange*/
/* Display Function control: NN = 0, GS = 0, SS = 1, SM = 0 */
MemoryAccessReg_Data = 0x28;
DisFunReg_Data = 0x22;
break;
case U2D_R2L: //0X6
/* Memory access control: MY = 0, MX = 0, MV = 1, ML = 0 X-Y Exchange*/
/* Display Function control: NN = 0, GS = 0, SS = 0, SM = 0 */
MemoryAccessReg_Data = 0x28;
DisFunReg_Data = 0x02;
break;
case D2U_L2R: //0XA
/* Memory access control: MY = 0, MX = 0, MV = 1, ML = 0 X-Y Exchange*/
/* Display Function control: NN = 0, GS = 1, SS = 1, SM = 0 */
MemoryAccessReg_Data = 0x28;
DisFunReg_Data = 0x62;
break;
case D2U_R2L: //0XE
/* Memory access control: MY = 0, MX = 0, MV = 1, ML = 0 X-Y Exchange*/
/* Display Function control: NN = 0, GS = 1, SS = 0, SM = 0 */
MemoryAccessReg_Data = 0x28;
DisFunReg_Data = 0x42;
break;
}
//Get the screen scan direction
sLCD_DIS.LCD_Scan_Dir = Scan_dir;
//Get GRAM and LCD width and height
//480*320,horizontal default
if(Scan_dir == L2R_U2D || Scan_dir == L2R_D2U || Scan_dir == R2L_U2D || Scan_dir == R2L_D2U) {
sLCD_DIS.LCD_Dis_Column = LCD_3_5_HEIGHT ;
sLCD_DIS.LCD_Dis_Page = LCD_3_5_WIDTH ;
} else {
sLCD_DIS.LCD_Dis_Column = LCD_3_5_WIDTH ;
sLCD_DIS.LCD_Dis_Page = LCD_3_5_HEIGHT ;
}
// Set the read / write scan direction of the frame memory
LCD_WriteReg(0xB6);
LCD_WriteData(0X00);
LCD_WriteData(DisFunReg_Data);
LCD_WriteReg(0x36);
LCD_WriteData(MemoryAccessReg_Data);
}
}
/********************************************************************************
function:
initialization
********************************************************************************/
void LCD_Init(LCD_SCAN_DIR LCD_ScanDir, uint16_t LCD_BLval)
{
LCD_Reset();//Hardware reset
LCD_InitReg();//Set the initialization register
if(LCD_BLval > 1000)
LCD_BLval = 1000;
LCD_SetBackLight(LCD_BLval);
LCD_SetGramScanWay(LCD_ScanDir);//Set the display scan and color transfer modes
Driver_Delay_ms(200);
}
/********************************************************************************
function: Sets the start position and size of the display area
parameter:
Xstart : X direction Start coordinates
Ystart : Y direction Start coordinates
Xend : X direction end coordinates
Yend : Y direction end coordinates
********************************************************************************/
void LCD_SetWindow(POINT Xstart, POINT Ystart, POINT Xend, POINT Yend)
{
//set the X coordinates
LCD_WriteReg(0x2A);
LCD_WriteData(Xstart >> 8); //Set the horizontal starting point to the high octet
LCD_WriteData(Xstart & 0xff); //Set the horizontal starting point to the low octet
LCD_WriteData((Xend - 1) >> 8); //Set the horizontal end to the high octet
LCD_WriteData((Xend - 1) & 0xff); //Set the horizontal end to the low octet
//set the Y coordinates
LCD_WriteReg(0x2B);
LCD_WriteData(Ystart >> 8);
LCD_WriteData(Ystart & 0xff );
LCD_WriteData((Yend - 1) >> 8);
LCD_WriteData((Yend - 1) & 0xff);
LCD_WriteReg(0x2C);
}
/********************************************************************************
function: Set the display point (Xpoint, Ypoint)
parameter:
xStart : X direction Start coordinates
xEnd : X direction end coordinates
********************************************************************************/
void LCD_SetCursor(POINT Xpoint, POINT Ypoint)
{
LCD_SetWindow(Xpoint, Ypoint, Xpoint, Ypoint);
}
/********************************************************************************
function: Set show color
parameter:
Color : Set show color,16-bit depth
********************************************************************************/
void LCD_SetColor(COLOR Color , POINT Xpoint, POINT Ypoint)
{
LCD_Write_AllData(Color , (uint32_t)Xpoint * (uint32_t)Ypoint);
}
/********************************************************************************
function: Point (Xpoint, Ypoint) Fill the color
parameter:
Xpoint : The x coordinate of the point
Ypoint : The y coordinate of the point
Color : Set the color
********************************************************************************/
void LCD_SetPointlColor( POINT Xpoint, POINT Ypoint, COLOR Color)
{
if ((Xpoint <= sLCD_DIS.LCD_Dis_Column) && (Ypoint <= sLCD_DIS.LCD_Dis_Page)) {
LCD_SetCursor (Xpoint, Ypoint);
LCD_SetColor(Color, 1, 1);
}
}
/********************************************************************************
function: Fill the area with the color
parameter:
Xstart : Start point x coordinate
Ystart : Start point y coordinate
Xend : End point coordinates
Yend : End point coordinates
Color : Set the color
********************************************************************************/
void LCD_SetArealColor(POINT Xstart, POINT Ystart, POINT Xend, POINT Yend, COLOR Color)
{
if((Xend > Xstart) && (Yend > Ystart)) {
LCD_SetWindow(Xstart , Ystart , Xend , Yend );
LCD_SetColor ( Color , Xend - Xstart, Yend - Ystart);
}
}
/********************************************************************************
function:
Clear screen
********************************************************************************/
void LCD_Clear(COLOR Color)
{
LCD_SetArealColor(0, 0, sLCD_DIS.LCD_Dis_Column , sLCD_DIS.LCD_Dis_Page , Color);
}
uint8_t LCD_Read_Id(void)
{
uint8_t reg = 0xDC;
uint8_t tx_val = 0x00;
uint8_t rx_val;
DEV_Digital_Write(LCD_CS_PIN, 0);
DEV_Digital_Write(LCD_DC_PIN, 0);
SPI4W_Write_Byte(reg);
spi_write_read_blocking(spi1,&tx_val,&rx_val,1);
DEV_Digital_Write(LCD_CS_PIN, 1);
return rx_val;
}
/*****************************************************************************
* | File : LCD_Driver.h
* | Author : Waveshare team
* | Function : ILI9486 Drive function
* | Info :
* Image scanning:
* Please use progressive scanning to generate images or fonts
*----------------
* | This version: V1.0
* | Date : 2018-01-11
* | Info : Basic version
*
******************************************************************************/
/**************************Intermediate driver layer**************************/
#ifndef TFLITE_INFERENCE_TEST_LCD_DRIVER_H_
#define TFLITE_INFERENCE_TEST_LCD_DRIVER_H_
#ifdef __cplusplus
extern "C" {
#endif
#include "DEV_Config.h"
#define LCD_2_8 0x52
#define LCD_3_5 0x00
#define COLOR uint16_t //The variable type of the color (unsigned short)
#define POINT uint16_t //The type of coordinate (unsigned short)
#define LENGTH uint16_t //The type of coordinate (unsigned short)
/********************************************************************************
function:
Define the full screen height length of the display
********************************************************************************/
#define LCD_X_MAXPIXEL 480 //LCD width maximum memory
#define LCD_Y_MAXPIXEL 320 //LCD height maximum memory
#define LCD_X 0
#define LCD_Y 0
#define LCD_3_5_WIDTH (LCD_X_MAXPIXEL - 2 * LCD_X) //LCD width
#define LCD_3_5_HEIGHT LCD_Y_MAXPIXEL //LCD height
#define LCD_2_8_WIDTH 240 //LCD width
#define LCD_2_8_HEIGHT 320
/********************************************************************************
function:
scanning method
********************************************************************************/
typedef enum {
L2R_U2D = 0, //The display interface is displayed , left to right, up to down
L2R_D2U ,
R2L_U2D ,
R2L_D2U ,
U2D_L2R ,
U2D_R2L ,
D2U_L2R ,
D2U_R2L ,
} LCD_SCAN_DIR;
#define SCAN_DIR_DFT D2U_L2R //Default scan direction = L2R_U2D
/********************************************************************************
function:
Defines the total number of rows in the display area
********************************************************************************/
typedef struct {
LENGTH LCD_Dis_Column; //COLUMN
LENGTH LCD_Dis_Page; //PAGE
LCD_SCAN_DIR LCD_Scan_Dir;
POINT LCD_X_Adjust; //LCD x actual display position calibration
POINT LCD_Y_Adjust; //LCD y actual display position calibration
} LCD_DIS;
/********************************************************************************
function:
Macro definition variable name
********************************************************************************/
void LCD_Init(LCD_SCAN_DIR LCD_ScanDir, uint16_t LCD_BLval);
void LCD_SetGramScanWay(LCD_SCAN_DIR Scan_dir);
void LCD_WriteReg(uint8_t Reg);
void LCD_WriteData(uint16_t Data);
void LCD_SetWindow(POINT Xstart, POINT Ystart, POINT Xend, POINT Yend);
void LCD_SetCursor(POINT Xpoint, POINT Ypoint);
void LCD_SetColor(COLOR Color ,POINT Xpoint, POINT Ypoint);
void LCD_SetPointlColor(POINT Xpoint, POINT Ypoint, COLOR Color);
void LCD_SetArealColor(POINT Xstart, POINT Ystart, POINT Xend, POINT Yend,COLOR Color);
void LCD_Clear(COLOR Color);
uint8_t LCD_Read_Id(void);
void LCD_SetBackLight(uint16_t value);
#ifdef __cplusplus
}
#endif
#endif // TFLITE_INFERENCE_TEST_LCD_DRIVER_H_
/*****************************************************************************
* | File : LCD_GUI.c
* | Author : Waveshare team
* | Function : Achieve drawing: draw points, lines, boxes, circles and
* their size, solid dotted line, solid rectangle hollow
* rectangle, solid circle hollow circle.
* | Info :
* Achieve display characters: Display a single character, string, number
* Achieve time display: adaptive size display time minutes and seconds
*----------------
* | This version: V1.0
* | Date : 2017-08-16
* | Info : Basic version
*
******************************************************************************/
#include "LCD_GUI.h"
extern LCD_DIS sLCD_DIS;
extern uint8_t id;
/******************************************************************************
function: Coordinate conversion
******************************************************************************/
void GUI_Swop(POINT Point1, POINT Point2)
{
POINT Temp;
Temp = Point1;
Point1 = Point2;
Point2 = Temp;
}
/******************************************************************************
function: Coordinate conversion
******************************************************************************/
void GUI_Clear(COLOR Color)
{
LCD_Clear(Color);
}
/******************************************************************************
function: Draw Point(Xpoint, Ypoint) Fill the color
parameter:
Xpoint : The x coordinate of the point
Ypoint : The y coordinate of the point
Color : Set color
Dot_Pixel : point size
******************************************************************************/
void GUI_DrawPoint(POINT Xpoint, POINT Ypoint, COLOR Color,
DOT_PIXEL Dot_Pixel, DOT_STYLE DOT_STYLE)
{
if(Xpoint > sLCD_DIS.LCD_Dis_Column || Ypoint > sLCD_DIS.LCD_Dis_Page) {
//DEBUG("GUI_DrawPoint Input exceeds the normal display range\r\n");
return;
}
uint16_t XDir_Num , YDir_Num;
if(DOT_STYLE == DOT_STYLE_DFT) {
for(XDir_Num = 0; XDir_Num < 2 * Dot_Pixel - 1; XDir_Num++) {
for(YDir_Num = 0; YDir_Num < 2 * Dot_Pixel - 1; YDir_Num++) {
LCD_SetPointlColor(Xpoint + XDir_Num - Dot_Pixel, Ypoint + YDir_Num - Dot_Pixel, Color);
}
}
} else {
for(XDir_Num = 0; XDir_Num < Dot_Pixel; XDir_Num++) {
for(YDir_Num = 0; YDir_Num < Dot_Pixel; YDir_Num++) {
LCD_SetPointlColor(Xpoint + XDir_Num - 1, Ypoint + YDir_Num - 1, Color);
}
}
}
}
/******************************************************************************
function: Draw a line of arbitrary slope
parameter:
Xstart :Starting x point coordinates
Ystart :Starting x point coordinates
Xend :End point x coordinate
Yend :End point y coordinate
Color :The color of the line segment
******************************************************************************/
void GUI_DrawLine(POINT Xstart, POINT Ystart, POINT Xend, POINT Yend,
COLOR Color, LINE_STYLE Line_Style, DOT_PIXEL Dot_Pixel)
{
if(Xstart > sLCD_DIS.LCD_Dis_Column || Ystart > sLCD_DIS.LCD_Dis_Page ||
Xend > sLCD_DIS.LCD_Dis_Column || Yend > sLCD_DIS.LCD_Dis_Page) {
//DEBUG("GUI_DrawLine Input exceeds the normal display range\r\n");
return;
}
if(Xstart > Xend)
GUI_Swop(Xstart, Xend);
if(Ystart > Yend)
GUI_Swop(Ystart, Yend);
POINT Xpoint = Xstart;
POINT Ypoint = Ystart;
int32_t dx = (int32_t)Xend - (int32_t)Xstart >= 0 ? Xend - Xstart : Xstart - Xend;
int32_t dy = (int32_t)Yend - (int32_t)Ystart <= 0 ? Yend - Ystart : Ystart - Yend;
// Increment direction, 1 is positive, -1 is counter;
int32_t XAddway = Xstart < Xend ? 1 : -1;
int32_t YAddway = Ystart < Yend ? 1 : -1;
//Cumulative error
int32_t Esp = dx + dy;
int8_t Line_Style_Temp = 0;
for(;;) {
Line_Style_Temp++;
//Painted dotted line, 2 point is really virtual
if(Line_Style == LINE_DOTTED && Line_Style_Temp % 3 == 0) {
//DEBUG("LINE_DOTTED\r\n");
GUI_DrawPoint(Xpoint, Ypoint, LCD_BACKGROUND, Dot_Pixel, DOT_STYLE_DFT);
Line_Style_Temp = 0;
} else {
GUI_DrawPoint(Xpoint, Ypoint, Color, Dot_Pixel, DOT_STYLE_DFT);
}
if(2 * Esp >= dy) {
if(Xpoint == Xend) break;
Esp += dy;
Xpoint += XAddway;
}
if(2 * Esp <= dx) {
if(Ypoint == Yend) break;
Esp += dx;
Ypoint += YAddway;
}
}
}
/******************************************************************************
function: Draw a rectangle
parameter:
Xstart :Rectangular Starting x point coordinates
Ystart :Rectangular Starting x point coordinates
Xend :Rectangular End point x coordinate
Yend :Rectangular End point y coordinate
Color :The color of the Rectangular segment
Filled : Whether it is filled--- 1 solid 0:empty
******************************************************************************/
void GUI_DrawRectangle(POINT Xstart, POINT Ystart, POINT Xend, POINT Yend,
COLOR Color, DRAW_FILL Filled, DOT_PIXEL Dot_Pixel)
{
if(Xstart > sLCD_DIS.LCD_Dis_Column || Ystart > sLCD_DIS.LCD_Dis_Page ||
Xend > sLCD_DIS.LCD_Dis_Column || Yend > sLCD_DIS.LCD_Dis_Page) {
//DEBUG("Input exceeds the normal display range\r\n");
return;
}
if(Xstart > Xend)
GUI_Swop(Xstart, Xend);
if(Ystart > Yend)
GUI_Swop(Ystart, Yend);
if(Filled ) {
#if LOW_Speed_Show
POINT Ypoint;
for(Ypoint = Ystart; Ypoint < Yend; Ypoint++) {
GUI_DrawLine(Xstart, Ypoint, Xend, Ypoint, Color , LINE_SOLID, Dot_Pixel);
}
#elif HIGH_Speed_Show
LCD_SetArealColor( Xstart, Ystart, Xend, Yend, Color);
#endif
} else {
GUI_DrawLine(Xstart, Ystart, Xend, Ystart, Color , LINE_SOLID, Dot_Pixel);
GUI_DrawLine(Xstart, Ystart, Xstart, Yend, Color , LINE_SOLID, Dot_Pixel);
GUI_DrawLine(Xend, Yend, Xend, Ystart, Color , LINE_SOLID, Dot_Pixel);
GUI_DrawLine(Xend, Yend, Xstart, Yend, Color , LINE_SOLID, Dot_Pixel);
}
}
/******************************************************************************
function: Use the 8-point method to draw a circle of the
specified size at the specified position.
parameter:
X_Center :Center X coordinate
Y_Center :Center Y coordinate
Radius :circle Radius
Color :The color of the :circle segment
Filled : Whether it is filled: 1 filling 0:Do not
******************************************************************************/
void GUI_DrawCircle(POINT X_Center, POINT Y_Center, LENGTH Radius,
COLOR Color, DRAW_FILL Draw_Fill , DOT_PIXEL Dot_Pixel)
{
if(X_Center > sLCD_DIS.LCD_Dis_Column || Y_Center >= sLCD_DIS.LCD_Dis_Page) {
//DEBUG("GUI_DrawCircle Input exceeds the normal display range\r\n");
return;
}
//Draw a circle from(0, R) as a starting point
int16_t XCurrent, YCurrent;
XCurrent = 0;
YCurrent = Radius;
//Cumulative error,judge the next point of the logo
int16_t Esp = 3 - (Radius << 1 );
int16_t sCountY;
if(Draw_Fill == DRAW_FULL) {
while(XCurrent <= YCurrent ) { //Realistic circles
for(sCountY = XCurrent; sCountY <= YCurrent; sCountY ++ ) {
GUI_DrawPoint(X_Center + XCurrent, Y_Center + sCountY, Color, DOT_PIXEL_DFT, DOT_STYLE_DFT );//1
GUI_DrawPoint(X_Center - XCurrent, Y_Center + sCountY, Color, DOT_PIXEL_DFT, DOT_STYLE_DFT );//2
GUI_DrawPoint(X_Center - sCountY, Y_Center + XCurrent, Color, DOT_PIXEL_DFT, DOT_STYLE_DFT );//3
GUI_DrawPoint(X_Center - sCountY, Y_Center - XCurrent, Color, DOT_PIXEL_DFT, DOT_STYLE_DFT );//4
GUI_DrawPoint(X_Center - XCurrent, Y_Center - sCountY, Color, DOT_PIXEL_DFT, DOT_STYLE_DFT );//5
GUI_DrawPoint(X_Center + XCurrent, Y_Center - sCountY, Color, DOT_PIXEL_DFT, DOT_STYLE_DFT );//6
GUI_DrawPoint(X_Center + sCountY, Y_Center - XCurrent, Color, DOT_PIXEL_DFT, DOT_STYLE_DFT );//7
GUI_DrawPoint(X_Center + sCountY, Y_Center + XCurrent, Color, DOT_PIXEL_DFT, DOT_STYLE_DFT );
}
if(Esp < 0 )
Esp += 4 * XCurrent + 6;
else {
Esp += 10 + 4 * (XCurrent - YCurrent );
YCurrent --;
}
XCurrent ++;
}
} else { //Draw a hollow circle
while(XCurrent <= YCurrent ) {
GUI_DrawPoint(X_Center + XCurrent, Y_Center + YCurrent, Color, Dot_Pixel, DOT_STYLE_DFT );//1
GUI_DrawPoint(X_Center - XCurrent, Y_Center + YCurrent, Color, Dot_Pixel, DOT_STYLE_DFT );//2
GUI_DrawPoint(X_Center - YCurrent, Y_Center + XCurrent, Color, Dot_Pixel, DOT_STYLE_DFT );//3
GUI_DrawPoint(X_Center - YCurrent, Y_Center - XCurrent, Color, Dot_Pixel, DOT_STYLE_DFT );//4
GUI_DrawPoint(X_Center - XCurrent, Y_Center - YCurrent, Color, Dot_Pixel, DOT_STYLE_DFT );//5
GUI_DrawPoint(X_Center + XCurrent, Y_Center - YCurrent, Color, Dot_Pixel, DOT_STYLE_DFT );//6
GUI_DrawPoint(X_Center + YCurrent, Y_Center - XCurrent, Color, Dot_Pixel, DOT_STYLE_DFT );//7
GUI_DrawPoint(X_Center + YCurrent, Y_Center + XCurrent, Color, Dot_Pixel, DOT_STYLE_DFT );//0
if(Esp < 0 )
Esp += 4 * XCurrent + 6;
else {
Esp += 10 + 4 * (XCurrent - YCurrent );
YCurrent --;
}
XCurrent ++;
}
}
}
/******************************************************************************
function: Show English characters
parameter:
Xpoint :X coordinate
Ypoint :Y coordinate
Acsii_Char :To display the English characters
Font :A structure pointer that displays a character size
Color_Background : Select the background color of the English character
Color_Foreground : Select the foreground color of the English character
******************************************************************************/
void GUI_DisChar(POINT Xpoint, POINT Ypoint, const char Acsii_Char,
sFONT* Font, COLOR Color_Background, COLOR Color_Foreground)
{
POINT Page, Column;
if(Xpoint > sLCD_DIS.LCD_Dis_Column || Ypoint > sLCD_DIS.LCD_Dis_Page) {
//DEBUG("GUI_DisChar Input exceeds the normal display range\r\n");
return;
}
uint32_t Char_Offset = (Acsii_Char - ' ') * Font->Height * (Font->Width / 8 + (Font->Width % 8 ? 1 : 0));
const unsigned char *ptr = &Font->table[Char_Offset];
for(Page = 0; Page < Font->Height; Page ++ ) {
for(Column = 0; Column < Font->Width; Column ++ ) {
//To determine whether the font background color and screen background color is consistent
if(FONT_BACKGROUND == Color_Background) { //this process is to speed up the scan
if(*ptr & (0x80 >> (Column % 8)))
GUI_DrawPoint(Xpoint + Column, Ypoint + Page, Color_Foreground, DOT_PIXEL_DFT, DOT_STYLE_DFT);
} else {
if(*ptr & (0x80 >> (Column % 8))) {
GUI_DrawPoint(Xpoint + Column, Ypoint + Page, Color_Foreground, DOT_PIXEL_DFT, DOT_STYLE_DFT);
} else {
GUI_DrawPoint(Xpoint + Column, Ypoint + Page, Color_Background, DOT_PIXEL_DFT, DOT_STYLE_DFT);
}
}
//One pixel is 8 bits
if(Column % 8 == 7)
ptr++;
}/* Write a line */
if(Font->Width % 8 != 0)
ptr++;
}/* Write all */
}
/******************************************************************************
function: Display the string
parameter:
Xstart :X coordinate
Ystart :Y coordinate
pString :The first address of the English string to be displayed
Font :A structure pointer that displays a character size
Color_Background : Select the background color of the English character
Color_Foreground : Select the foreground color of the English character
******************************************************************************/
void GUI_DisString_EN(POINT Xstart, POINT Ystart, const char * pString,
sFONT* Font, COLOR Color_Background, COLOR Color_Foreground )
{
POINT Xpoint = Xstart;
POINT Ypoint = Ystart;
if(Xstart > sLCD_DIS.LCD_Dis_Column || Ystart > sLCD_DIS.LCD_Dis_Page) {
//DEBUG("GUI_DisString_EN Input exceeds the normal display range\r\n");
return;
}
while(* pString != '\0') {
//if X direction filled , reposition to(Xstart,Ypoint),Ypoint is Y direction plus the height of the character
if((Xpoint + Font->Width ) > sLCD_DIS.LCD_Dis_Column ) {
Xpoint = Xstart;
Ypoint += Font->Height;
}
// If the Y direction is full, reposition to(Xstart, Ystart)
if((Ypoint + Font->Height ) > sLCD_DIS.LCD_Dis_Page ) {
Xpoint = Xstart;
Ypoint = Ystart;
}
GUI_DisChar(Xpoint, Ypoint, * pString, Font, Color_Background, Color_Foreground);
//The next character of the address
pString ++;
//The next word of the abscissa increases the font of the broadband
Xpoint += Font->Width;
}
}
/******************************************************************************
function: Display the string
parameter:
Xstart :X coordinate
Ystart : Y coordinate
Nummber : The number displayed
Font :A structure pointer that displays a character size
Color_Background : Select the background color of the English character
Color_Foreground : Select the foreground color of the English character
******************************************************************************/
#define ARRAY_LEN 255
void GUI_DisNum(POINT Xpoint, POINT Ypoint, int32_t Nummber,
sFONT* Font, COLOR Color_Background, COLOR Color_Foreground )
{
int16_t Num_Bit = 0, Str_Bit = 0;
uint8_t Str_Array[ARRAY_LEN] = {0}, Num_Array[ARRAY_LEN] = {0};
uint8_t *pStr = Str_Array;
if(Xpoint > sLCD_DIS.LCD_Dis_Column || Ypoint > sLCD_DIS.LCD_Dis_Page) {
//DEBUG("GUI_DisNum Input exceeds the normal display range\r\n");
return;
}
//Converts a number to a string
while(Nummber) {
Num_Array[Num_Bit] = Nummber % 10 + '0';
Num_Bit++;
Nummber /= 10;
}
//The string is inverted
while(Num_Bit > 0) {
Str_Array[Str_Bit] = Num_Array[Num_Bit - 1];
Str_Bit ++;
Num_Bit --;
}
//show
GUI_DisString_EN(Xpoint, Ypoint, (const char*)pStr, Font, Color_Background, Color_Foreground );
}
/******************************************************************************
function: Display the bit map,1 byte = 8bit = 8 points
parameter:
Xpoint :X coordinate
Ypoint : Y coordinate
pMap : Pointing to the picture
Width :Bitmap Width
Height : Bitmap Height
note:
This function is suitable for bitmap, because a 16-bit data accounted for 16 points
******************************************************************************/
void GUI_Disbitmap(POINT Xpoint, POINT Ypoint, const unsigned char *pMap,
POINT Width, POINT Height)
{
POINT i, j, byteWidth = (Width + 7) / 8;
for(j = 0; j < Height; j++) {
for(i = 0; i < Width; i ++) {
if(*(pMap + j * byteWidth + i / 8) & (128 >> (i & 7))) {
GUI_DrawPoint(Xpoint + i, Ypoint + j, WHITE, DOT_PIXEL_DFT, DOT_STYLE_DFT);
}
}
}
}
/******************************************************************************
function: Display the Gray map,1 byte = 8bit = 2 points
parameter:
Xpoint :X coordinate
Ypoint : Y coordinate
pMap : Pointing to the picture
Width :Bitmap Width
Height : Bitmap Height
note:
This function is suitable for bitmap, because a 4-bit data accounted for 1 points
Please use the Image2lcd generated array
******************************************************************************/
void GUI_DisGrayMap(POINT Xpoint, POINT Ypoint, const unsigned char *pBmp)
{
//Get the Map header Gray, width, height
char Gray;
Gray = *(pBmp + 1);
POINT Height, Width;
Width = (*(pBmp + 3) << 8) | (*(pBmp + 2));
Height = (*(pBmp + 5) << 8) | (*(pBmp + 4));
POINT i, j;
if(Gray == 0x04) { //Sixteen gray levels
pBmp = pBmp + 6;
for(j = 0; j < Height; j++)
for(i = 0; i < Width / 2; i++) {
GUI_DrawPoint(Xpoint + i * 2, Ypoint + j, ~(*pBmp >> 4), DOT_PIXEL_DFT, DOT_STYLE_DFT);
GUI_DrawPoint(Xpoint + i * 2 + 1, Ypoint + j, ~*pBmp , DOT_PIXEL_DFT, DOT_STYLE_DFT);
pBmp++;
}
} else {
//DEBUG("Does not support type\r\n");
return;
}
}
sFONT *GUI_GetFontSize(POINT Dx, POINT Dy)
{
sFONT *Font;
if (Dx > Font24.Width && Dy > Font24.Height) {
Font = &Font24;
} else if ((Dx > Font20.Width && Dx < Font24.Width) &&
(Dy > Font20.Height && Dy < Font24.Height)) {
Font = &Font20;
} else if ((Dx > Font16.Width && Dx < Font20.Width) &&
(Dy > Font16.Height && Dy < Font20.Height)) {
Font = &Font16;
} else if ((Dx > Font12.Width && Dx < Font16.Width) &&
(Dy > Font12.Height && Dy < Font16.Height)) {
Font = &Font12;
} else if ((Dx > Font8.Width && Dx < Font12.Width) &&
(Dy > Font8.Height && Dy < Font12.Height)) {
Font = &Font8;
} else {
//DEBUG("Please change the display area size, or add a larger font to modify\r\n");
}
return Font;
}
/******************************************************************************
function: According to the display area adaptive display time
parameter:
xStart : X direction Start coordinates
Ystart : Y direction Start coordinates
Xend : X direction end coordinates
Yend : Y direction end coordinates
pTime : Pointer to the definition of the structure
Color : Set show color
note:
******************************************************************************/
void GUI_Showtime(POINT Xstart, POINT Ystart, POINT Xend, POINT Yend,
DEV_TIME *pTime, COLOR Color)
{
uint8_t value[10] = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9'};
sFONT *Font;
//According to the display area adaptive font size
POINT Dx = (Xend - Xstart) / 7;//Determine the spacing between characters
POINT Dy = Yend - Ystart; //determine the font size
Font = GUI_GetFontSize(Dx, Dy);
if ((pTime->Sec % 10) < 10 && (pTime->Sec % 10) > 0) {
LCD_SetArealColor(Xstart + Dx * 6, Ystart, Xend, Yend, WHITE);// xx:xx:x0
} else {
if ((pTime->Sec / 10) < 6 && (pTime->Sec / 10) > 0) {
LCD_SetArealColor(Xstart + Dx * 5, Ystart, Xend, Yend, WHITE);// xx:xx:00
} else {//sec = 60
pTime->Min = pTime->Min + 1;
pTime->Sec = 0;
if ((pTime->Min % 10) < 10 && (pTime->Min % 10) > 0) {
LCD_SetArealColor(Xstart + Dx * 3 + Dx / 2, Ystart, Xend, Yend, WHITE);// xx:x0:00
} else {
if ((pTime->Min / 10) < 6 && (pTime->Min / 10) > 0) {
LCD_SetArealColor(Xstart + Dx * 2 + Dx / 2, Ystart, Xend, Yend, WHITE);// xx:00:00
} else {//min = 60
pTime->Hour = pTime->Hour + 1;
pTime->Min = 0;
if ((pTime->Hour % 10) < 4 && (pTime->Hour % 10) > 0 && pTime->Hour < 24) {// x0:00:00
LCD_SetArealColor(Xstart + Dx, Ystart, Xend, Yend, WHITE);
} else {
pTime->Hour = 0;
pTime->Min = 0;
pTime->Sec = 0;
LCD_SetArealColor(Xstart, Ystart, Xend, Yend, WHITE);// 00:00:00
}
}
}
}
}
//Write data into the cache
GUI_DisChar(Xstart , Ystart, value[pTime->Hour / 10], Font, FONT_BACKGROUND, Color);
GUI_DisChar(Xstart + Dx , Ystart, value[pTime->Hour % 10], Font, FONT_BACKGROUND, Color);
GUI_DisChar(Xstart + Dx + Dx / 4 + Dx / 2 , Ystart, ':' , Font, FONT_BACKGROUND, Color);
GUI_DisChar(Xstart + Dx * 2 + Dx / 2 , Ystart, value[pTime->Min / 10] , Font, FONT_BACKGROUND, Color);
GUI_DisChar(Xstart + Dx * 3 + Dx / 2 , Ystart, value[pTime->Min % 10] , Font, FONT_BACKGROUND, Color);
GUI_DisChar(Xstart + Dx * 4 + Dx / 2 - Dx / 4, Ystart, ':' , Font, FONT_BACKGROUND, Color);
GUI_DisChar(Xstart + Dx * 5 , Ystart, value[pTime->Sec / 10] , Font, FONT_BACKGROUND, Color);
GUI_DisChar(Xstart + Dx * 6 , Ystart, value[pTime->Sec % 10] , Font, FONT_BACKGROUND, Color);
}
/******************************************************************************
function: GUI_Show
note:
Clear,
Draw Line,
Draw Rectangle,
Draw Rings,
Draw Olympic Rings,
Display String,
Show Pic
******************************************************************************/
void GUI_Show(void)
{
//DEBUG("LCD_Dis_Column = %d\r\n", sLCD_DIS.LCD_Dis_Column);
//DEBUG("LCD_Dis_Page = %d\r\n", sLCD_DIS.LCD_Dis_Page);
if(LCD_2_8==id){
GUI_Clear(WHITE);
//DEBUG("Draw Line\r\n");
GUI_DrawLine(0, 10, sLCD_DIS.LCD_Dis_Column , 10, RED, LINE_SOLID, DOT_PIXEL_2X2);
GUI_DrawLine(0, 20, sLCD_DIS.LCD_Dis_Column , 20, RED, LINE_DOTTED, DOT_PIXEL_DFT);
GUI_DrawLine(0, sLCD_DIS.LCD_Dis_Page - 20, sLCD_DIS.LCD_Dis_Column , sLCD_DIS.LCD_Dis_Page - 20, RED, LINE_DOTTED, DOT_PIXEL_DFT);
GUI_DrawLine(0, sLCD_DIS.LCD_Dis_Page - 10, sLCD_DIS.LCD_Dis_Column , sLCD_DIS.LCD_Dis_Page - 10, RED, LINE_SOLID, DOT_PIXEL_2X2);
//DEBUG("Draw Rectangle\r\n");
GUI_DrawRectangle(10, 30, sLCD_DIS.LCD_Dis_Column - 10, sLCD_DIS.LCD_Dis_Page - 30, BLUE, DRAW_EMPTY, DOT_PIXEL_DFT);
GUI_DrawRectangle(20, 40, sLCD_DIS.LCD_Dis_Column - 20, 60, BLUE, DRAW_FULL, DOT_PIXEL_DFT);
//DEBUG("Draw Olympic Rings\r\n");
uint16_t Cx1 = 100, Cy1 = 260, Cr = 10;
uint16_t Cx2 = Cx1 + (2.5 * Cr), Cy2 = Cy1;
uint16_t Cx3 = Cx1 + (5 * Cr), Cy3 = Cy1;
uint16_t Cx4 = ( Cx1 + Cx2 ) / 2, Cy4 = Cy1 + Cr;
uint16_t Cx5 = ( Cx2 + Cx3 ) / 2, Cy5 = Cy1 + Cr;
GUI_DrawCircle( Cx1, Cy1, Cr, BLUE, DRAW_EMPTY, DOT_PIXEL_2X2);
GUI_DrawCircle( Cx2, Cy2, Cr, BLACK, DRAW_EMPTY, DOT_PIXEL_2X2);
GUI_DrawCircle( Cx3, Cy3, Cr, RED, DRAW_EMPTY, DOT_PIXEL_2X2);
GUI_DrawCircle( Cx4, Cy4, Cr, YELLOW, DRAW_EMPTY, DOT_PIXEL_2X2);
GUI_DrawCircle( Cx5, Cy5, Cr, GREEN, DRAW_EMPTY, DOT_PIXEL_2X2);
//DEBUG("Draw Realistic circles\r\n");
GUI_DrawCircle(50, 220, 30, CYAN, DRAW_FULL, DOT_PIXEL_DFT);
GUI_DrawCircle(sLCD_DIS.LCD_Dis_Column - 50, 220, 30, CYAN, DRAW_FULL, DOT_PIXEL_DFT);
//DEBUG("Display String\r\n");
GUI_DisString_EN(10, 120, "WaveShare Electronic", &Font16, LCD_BACKGROUND, BLUE);
GUI_DisString_EN(40, 150, "2.8inch TFTLCD", &Font16, RED, BLUE);
//DEBUG("Display Nummber\r\n");
GUI_DisNum(40, 170, 1234567890, &Font12, LCD_BACKGROUND, BLUE);
}else{
GUI_Clear(WHITE);
if(sLCD_DIS.LCD_Dis_Column > sLCD_DIS.LCD_Dis_Page) { //Horizontal screen display
//DEBUG("Draw Line\r\n");
GUI_DrawLine(0, 10, LCD_3_5_WIDTH, 10, RED, LINE_SOLID, DOT_PIXEL_2X2);
GUI_DrawLine(0, 20, LCD_3_5_WIDTH, 20, RED, LINE_DOTTED, DOT_PIXEL_DFT);
GUI_DrawLine(0, 300, LCD_3_5_WIDTH, 300, RED, LINE_DOTTED, DOT_PIXEL_DFT);
GUI_DrawLine(0, 310, LCD_3_5_WIDTH, 310, RED, LINE_SOLID, DOT_PIXEL_2X2);
//DEBUG("Draw Rectangle\r\n");
GUI_DrawRectangle(10, 30, sLCD_DIS.LCD_Dis_Column - 10, sLCD_DIS.LCD_Dis_Page - 30, BLUE, DRAW_EMPTY, DOT_PIXEL_DFT);
GUI_DrawRectangle(20, 40, sLCD_DIS.LCD_Dis_Column - 20, 60, BLUE, DRAW_FULL, DOT_PIXEL_DFT);
//DEBUG("Draw Olympic Rings\r\n");
uint16_t Cx1 = 190, Cy1 = 240, Cr = 20;
uint16_t Cx2 = Cx1 + (2.5 * Cr), Cy2 = Cy1;
uint16_t Cx3 = Cx1 + (5 * Cr), Cy3 = Cy1;
uint16_t Cx4 = ( Cx1 + Cx2 ) / 2, Cy4 = Cy1 + Cr;
uint16_t Cx5 = ( Cx2 + Cx3 ) / 2, Cy5 = Cy1 + Cr;
GUI_DrawCircle( Cx1, Cy1, Cr, BLUE, DRAW_EMPTY, DOT_PIXEL_2X2);
GUI_DrawCircle( Cx2, Cy2, Cr, BLACK, DRAW_EMPTY, DOT_PIXEL_2X2);
GUI_DrawCircle( Cx3, Cy3, Cr, RED, DRAW_EMPTY, DOT_PIXEL_2X2);
GUI_DrawCircle( Cx4, Cy4, Cr, YELLOW, DRAW_EMPTY, DOT_PIXEL_2X2);
GUI_DrawCircle( Cx5, Cy5, Cr, GREEN, DRAW_EMPTY, DOT_PIXEL_2X2);
//DEBUG("Draw Realistic circles\r\n");
GUI_DrawCircle(50, 250, 30, CYAN, DRAW_FULL, DOT_PIXEL_DFT);
GUI_DrawCircle(sLCD_DIS.LCD_Dis_Column - 50, 250, 30, CYAN, DRAW_FULL, DOT_PIXEL_DFT);
//DEBUG("Display String\r\n");
GUI_DisString_EN(80, 80, "WaveShare Electronic", &Font24, LCD_BACKGROUND, BLUE);
GUI_DisString_EN(80, 120, "3.5inch TFTLCD", &Font20, RED, BLUE);
//DEBUG("Display Nummber\r\n");
GUI_DisNum(80, 150, 1234567890, &Font16, LCD_BACKGROUND, BLUE);
} else { //Vertical screen display
//DEBUG("Draw Line\r\n");
GUI_DrawLine(0, 10, sLCD_DIS.LCD_Dis_Column , 10, RED, LINE_SOLID, DOT_PIXEL_2X2);
GUI_DrawLine(0, 20, sLCD_DIS.LCD_Dis_Column , 20, RED, LINE_DOTTED, DOT_PIXEL_DFT);
GUI_DrawLine(0, sLCD_DIS.LCD_Dis_Page - 20, sLCD_DIS.LCD_Dis_Column , sLCD_DIS.LCD_Dis_Page - 20, RED, LINE_DOTTED, DOT_PIXEL_DFT);
GUI_DrawLine(0, sLCD_DIS.LCD_Dis_Page - 10, sLCD_DIS.LCD_Dis_Column , sLCD_DIS.LCD_Dis_Page - 10, RED, LINE_SOLID, DOT_PIXEL_2X2);
//DEBUG("Draw Rectangle\r\n");
GUI_DrawRectangle(10, 30, sLCD_DIS.LCD_Dis_Column - 10, sLCD_DIS.LCD_Dis_Page - 30, BLUE, DRAW_EMPTY, DOT_PIXEL_DFT);
GUI_DrawRectangle(20, 40, sLCD_DIS.LCD_Dis_Column - 20, 60, BLUE, DRAW_FULL, DOT_PIXEL_DFT);
//DEBUG("Draw Olympic Rings\r\n");
uint16_t Cx1 = 120, Cy1 = 300, Cr = 20;
uint16_t Cx2 = Cx1 + (2.5 * Cr), Cy2 = Cy1;
uint16_t Cx3 = Cx1 + (5 * Cr), Cy3 = Cy1;
uint16_t Cx4 = ( Cx1 + Cx2 ) / 2, Cy4 = Cy1 + Cr;
uint16_t Cx5 = ( Cx2 + Cx3 ) / 2, Cy5 = Cy1 + Cr;
GUI_DrawCircle( Cx1, Cy1, Cr, BLUE, DRAW_EMPTY, DOT_PIXEL_2X2);
GUI_DrawCircle( Cx2, Cy2, Cr, BLACK, DRAW_EMPTY, DOT_PIXEL_2X2);
GUI_DrawCircle( Cx3, Cy3, Cr, RED, DRAW_EMPTY, DOT_PIXEL_2X2);
GUI_DrawCircle( Cx4, Cy4, Cr, YELLOW, DRAW_EMPTY, DOT_PIXEL_2X2);
GUI_DrawCircle( Cx5, Cy5, Cr, GREEN, DRAW_EMPTY, DOT_PIXEL_2X2);
//DEBUG("Draw Realistic circles\r\n");
GUI_DrawCircle(50, 400, 30, CYAN, DRAW_FULL, DOT_PIXEL_DFT);
GUI_DrawCircle(sLCD_DIS.LCD_Dis_Column - 50, 400, 30, CYAN, DRAW_FULL, DOT_PIXEL_DFT);
//DEBUG("Display String\r\n");
GUI_DisString_EN(40, 120, "WaveShare Electronic", &Font24, LCD_BACKGROUND, BLUE);
GUI_DisString_EN(40, 180, "3.5inch TFTLCD", &Font20, RED, BLUE);
//DEBUG("Display Nummber\r\n");
GUI_DisNum(40, 210, 1234567890, &Font16, LCD_BACKGROUND, BLUE);
}
}
}
/*****************************************************************************
* | File : LCD_GUI.h
* | Author : Waveshare team
* | Function : Achieve drawing: draw points, lines, boxes, circles and
* their size, solid dotted line, solid rectangle hollow
* rectangle, solid circle hollow circle.
* | Info :
* Achieve display characters: Display a single character, string, number
* Achieve time display: adaptive size display time minutes and seconds
*----------------
* | This version: V1.0
* | Date : 2017-08-16
* | Info : Basic version
*
******************************************************************************/
/****************************Upper application layer**************************/
#ifndef TFLITE_INFERENCE_TEST_LCD_GUI_H_
#define TFLITE_INFERENCE_TEST_LCD_GUI_H_
#ifdef __cplusplus
extern "C" {
#endif
#include "LCD_Driver.h"
#include "fonts.h"
#define LOW_Speed_Show 0
#define HIGH_Speed_Show 1
/********************************************************************************
function:
dot pixel
********************************************************************************/
typedef enum {
DOT_PIXEL_1X1 = 1, // dot pixel 1 x 1
DOT_PIXEL_2X2 , // dot pixel 2 X 2
DOT_PIXEL_3X3 , // dot pixel 3 X 3
DOT_PIXEL_4X4 , // dot pixel 4 X 4
DOT_PIXEL_5X5 , // dot pixel 5 X 5
DOT_PIXEL_6X6 , // dot pixel 6 X 6
DOT_PIXEL_7X7 , // dot pixel 7 X 7
DOT_PIXEL_8X8 , // dot pixel 8 X 8
} DOT_PIXEL;
#define DOT_PIXEL_DFT DOT_PIXEL_1X1 //Default dot pilex
/********************************************************************************
function:
dot Fill style
********************************************************************************/
typedef enum {
DOT_FILL_AROUND = 1, // dot pixel 1 x 1
DOT_FILL_RIGHTUP , // dot pixel 2 X 2
} DOT_STYLE;
#define DOT_STYLE_DFT DOT_FILL_AROUND //Default dot pilex
/********************************************************************************
function:
solid line and dotted line
********************************************************************************/
typedef enum {
LINE_SOLID = 0,
LINE_DOTTED,
} LINE_STYLE;
/********************************************************************************
function:
DRAW Internal fill
********************************************************************************/
typedef enum {
DRAW_EMPTY = 0,
DRAW_FULL,
} DRAW_FILL;
/********************************************************************************
function:
time
********************************************************************************/
typedef struct {
uint16_t Year; //0000
uint8_t Month; //1 - 12
uint8_t Day; //1 - 30
uint8_t Hour; //0 - 23
uint8_t Min; //0 - 59
uint8_t Sec; //0 - 59
} DEV_TIME;
extern DEV_TIME sDev_time;
/********************************************************************************
function:
Defines commonly used colors for the display
********************************************************************************/
#define LCD_BACKGROUND WHITE //Default background color
#define FONT_BACKGROUND WHITE //Default font background color
#define FONT_FOREGROUND GRED //Default font foreground color
#define WHITE 0xFFFF
#define BLACK 0x0000
#define BLUE 0x001F
#define BRED 0XF81F
#define GRED 0XFFE0
#define GBLUE 0X07FF
#define RED 0xF800
#define MAGENTA 0xF81F
#define GREEN 0x07E0
#define CYAN 0x7FFF
#define YELLOW 0xFFE0
#define BROWN 0XBC40
#define BRRED 0XFC07
#define GRAY 0X8430
/********************************************************************************
function:
Macro definition variable name
********************************************************************************/
//Clear
void GUI_Clear(COLOR Color);
//Drawing
void GUI_DrawPoint(POINT Xpoint, POINT Ypoint, COLOR Color, DOT_PIXEL Dot_Pixel, DOT_STYLE Dot_FillWay);
void GUI_DrawLine(POINT Xstart, POINT Ystart, POINT Xend, POINT Yend, COLOR Color, LINE_STYLE Line_Style, DOT_PIXEL Dot_Pixel);
void GUI_DrawRectangle(POINT Xstart, POINT Ystart, POINT Xend, POINT Yend, COLOR Color, DRAW_FILL Filled , DOT_PIXEL Dot_Pixel );
void GUI_DrawCircle(POINT X_Center, POINT Y_Center, LENGTH Radius, COLOR Color, DRAW_FILL Draw_Fill , DOT_PIXEL Dot_Pixel );
//pic
void GUI_Disbitmap(POINT Xpoint, POINT Ypoint, const unsigned char *pMap, POINT Width, POINT Height);
void GUI_DisGrayMap(POINT Xpoint, POINT Ypoint, const unsigned char *pBmp);
//Display string
void GUI_DisChar(POINT Xstart, POINT Ystart, const char Acsii_Char, sFONT* Font, COLOR Color_Background, COLOR Color_Foreground);
void GUI_DisString_EN(POINT Xstart, POINT Ystart, const char * pString, sFONT* Font, COLOR Color_Background, COLOR Color_Foreground );
void GUI_DisNum(POINT Xpoint, POINT Ypoint, int32_t Nummber, sFONT* Font, COLOR Color_Background, COLOR Color_Foreground );
void GUI_Showtime(POINT Xstart, POINT Ystart, POINT Xend, POINT Yend, DEV_TIME *pTime, COLOR Color);
//show
void GUI_Show(void);
#ifdef __cplusplus
}
#endif
#endif // TFLITE_INFERENCE_TEST_LCD_GUI_H_
\ No newline at end of file
/*****************************************************************************
* | File : LCD_Touch.c
* | Author : Waveshare team
* | Function : LCD Touch Pad Driver and Draw
* | Info :
* Image scanning
* Please use progressive scanning to generate images or fonts
*----------------
* | This version: V1.0
* | Date : 2017-08-16
* | Info : Basic version
*
******************************************************************************/
#include "LCD_Touch.h"
#include "pico/multicore.h"
#include "pico/sync.h"
#include "DEV_Config.h"
extern LCD_DIS sLCD_DIS;
extern uint8_t id;
static TP_DEV sTP_DEV;
static TP_DRAW sTP_Draw;
static int total_width = DIGIT_INPUT_COUNT * (BOX_SIZE + 2 * BORDER_THICKNESS) + (DIGIT_INPUT_COUNT-1) * SPACE_BETWEEN_BOXES;
static int start_y = BOX_START_Y;
static int start_x;
static BOX_REFERENCE box_refs[4];
static INFERENCE* inference;
static uint32_t last_login_button_touch_time = 0;
/*******************************************************************************
function:
Read the ADC of the channel
parameter:
Channel_Cmd : 0x90: Read channel Y +, select the ADC resolution is 12 bits, set to differential mode
0xd0: Read channel x +, select the ADC resolution is 12 bits, set to differential mode
*******************************************************************************/
static uint16_t TP_Read_ADC(uint8_t CMD)
{
uint16_t Data = 0;
//A cycle of at least 400ns.
DEV_Digital_Write(TP_CS_PIN, 0);
SPI4W_Write_Byte(CMD);
Driver_Delay_us(200);
// dont write 0xff, it will block xpt2046
//Data = SPI4W_Read_Byte(0Xff);
Data = SPI4W_Read_Byte(0X00);
Data <<= 8; //7bit
Data |= SPI4W_Read_Byte(0X00);
//Data = SPI4W_Read_Byte(0Xff);
Data >>= 3; //5bit
DEV_Digital_Write(TP_CS_PIN, 1);
return Data;
}
/*******************************************************************************
function:
Read the 5th channel value and exclude the maximum and minimum returns the average
parameter:
Channel_Cmd : 0x90 :Read channel Y +
0xd0 :Read channel x +
*******************************************************************************/
#define READ_TIMES 5 //Number of readings
#define LOST_NUM 1 //Discard value
static uint16_t
TP_Read_ADC_Average(uint8_t Channel_Cmd)
{
uint8_t i, j;
uint16_t Read_Buff[READ_TIMES];
uint16_t Read_Sum = 0, Read_Temp = 0;
//LCD SPI speed = 3 MHz
spi_set_baudrate(SPI_PORT, 3000000);
//Read and save multiple samples
for (i = 0; i < READ_TIMES; i++)
{
Read_Buff[i] = TP_Read_ADC(Channel_Cmd);
Driver_Delay_us(200);
}
//LCD SPI speed = 18 MHz
spi_set_baudrate(SPI_PORT, 18000000);
//Sort from small to large
for (i = 0; i < READ_TIMES - 1; i++)
{
for (j = i + 1; j < READ_TIMES; j++)
{
if (Read_Buff[i] > Read_Buff[j])
{
Read_Temp = Read_Buff[i];
Read_Buff[i] = Read_Buff[j];
Read_Buff[j] = Read_Temp;
}
}
}
//Exclude the largest and the smallest
for (i = LOST_NUM; i < READ_TIMES - LOST_NUM; i++)
Read_Sum += Read_Buff[i];
//Averaging
Read_Temp = Read_Sum / (READ_TIMES - 2 * LOST_NUM);
return Read_Temp;
}
/*******************************************************************************
function:
Read X channel and Y channel AD value
parameter:
Channel_Cmd : 0x90 :Read channel Y +
0xd0 :Read channel x +
*******************************************************************************/
static void TP_Read_ADC_XY(uint16_t *pXCh_Adc, uint16_t *pYCh_Adc)
{
*pXCh_Adc = TP_Read_ADC_Average(0xD0);
*pYCh_Adc = TP_Read_ADC_Average(0x90);
}
/*******************************************************************************
function:
2 times to read the touch screen IC, and the two can not exceed the deviation,
ERR_RANGE, meet the conditions, then that the correct reading, otherwise the reading error.
parameter:
Channel_Cmd : pYCh_Adc = 0x90 :Read channel Y +
pXCh_Adc = 0xd0 :Read channel x +
*******************************************************************************/
#define ERR_RANGE 50 //tolerance scope
static bool TP_Read_TwiceADC(uint16_t *pXCh_Adc, uint16_t *pYCh_Adc)
{
uint16_t XCh_Adc1, YCh_Adc1, XCh_Adc2, YCh_Adc2;
//Read the ADC values Read the ADC values twice
TP_Read_ADC_XY(&XCh_Adc1, &YCh_Adc1);
Driver_Delay_us(10);
TP_Read_ADC_XY(&XCh_Adc2, &YCh_Adc2);
Driver_Delay_us(10);
//The ADC error used twice is greater than ERR_RANGE to take the average
if (((XCh_Adc2 <= XCh_Adc1 && XCh_Adc1 < XCh_Adc2 + ERR_RANGE) ||
(XCh_Adc1 <= XCh_Adc2 && XCh_Adc2 < XCh_Adc1 + ERR_RANGE)) &&
((YCh_Adc2 <= YCh_Adc1 && YCh_Adc1 < YCh_Adc2 + ERR_RANGE) ||
(YCh_Adc1 <= YCh_Adc2 && YCh_Adc2 < YCh_Adc1 + ERR_RANGE)))
{
*pXCh_Adc = (XCh_Adc1 + XCh_Adc2) / 2;
*pYCh_Adc = (YCh_Adc1 + YCh_Adc2) / 2;
return true;
}
//The ADC error used twice is less than ERR_RANGE returns failed
return false;
}
/*******************************************************************************
function:
Calculation
parameter:
chCoordType:
1 : calibration
0 : relative position
*******************************************************************************/
static uint8_t TP_Scan(uint8_t chCoordType)
{
//In X, Y coordinate measurement, IRQ is disabled and output is low
if (!DEV_Digital_Read(TP_IRQ_PIN))
{ //Press the button to press
//Read the physical coordinates
if (chCoordType)
{
TP_Read_TwiceADC(&sTP_DEV.Xpoint, &sTP_DEV.Ypoint);
//Read the screen coordinates
}
else if (TP_Read_TwiceADC(&sTP_DEV.Xpoint, &sTP_DEV.Ypoint))
{
if (LCD_2_8 == id)
{
sTP_Draw.Xpoint = sLCD_DIS.LCD_Dis_Column -
sTP_DEV.fXfac * sTP_DEV.Xpoint -
sTP_DEV.iXoff;
sTP_Draw.Ypoint = sLCD_DIS.LCD_Dis_Page -
sTP_DEV.fYfac * sTP_DEV.Ypoint -
sTP_DEV.iYoff;
}
else
{
//DEBUG("(Xad,Yad) = %d,%d\r\n",sTP_DEV.Xpoint,sTP_DEV.Ypoint);
if (sTP_DEV.TP_Scan_Dir == R2L_D2U)
{ //Converts the result to screen coordinates
sTP_Draw.Xpoint = sTP_DEV.fXfac * sTP_DEV.Xpoint +
sTP_DEV.iXoff;
sTP_Draw.Ypoint = sTP_DEV.fYfac * sTP_DEV.Ypoint +
sTP_DEV.iYoff;
}
else if (sTP_DEV.TP_Scan_Dir == L2R_U2D)
{
sTP_Draw.Xpoint = sLCD_DIS.LCD_Dis_Column -
sTP_DEV.fXfac * sTP_DEV.Xpoint -
sTP_DEV.iXoff;
sTP_Draw.Ypoint = sLCD_DIS.LCD_Dis_Page -
sTP_DEV.fYfac * sTP_DEV.Ypoint -
sTP_DEV.iYoff;
}
else if (sTP_DEV.TP_Scan_Dir == U2D_R2L)
{
sTP_Draw.Xpoint = sTP_DEV.fXfac * sTP_DEV.Ypoint +
sTP_DEV.iXoff;
sTP_Draw.Ypoint = sTP_DEV.fYfac * sTP_DEV.Xpoint +
sTP_DEV.iYoff;
}
else
{
sTP_Draw.Xpoint = sLCD_DIS.LCD_Dis_Column -
sTP_DEV.fXfac * sTP_DEV.Ypoint -
sTP_DEV.iXoff;
sTP_Draw.Ypoint = sLCD_DIS.LCD_Dis_Page -
sTP_DEV.fYfac * sTP_DEV.Xpoint -
sTP_DEV.iYoff;
}
// DEBUG("( x , y ) = %d,%d\r\n",sTP_Draw.Xpoint,sTP_Draw.Ypoint);
}
}
if (0 == (sTP_DEV.chStatus & TP_PRESS_DOWN))
{ //Not being pressed
sTP_DEV.chStatus = TP_PRESS_DOWN | TP_PRESSED;
sTP_DEV.Xpoint0 = sTP_DEV.Xpoint;
sTP_DEV.Ypoint0 = sTP_DEV.Ypoint;
}
}
else
{
if (sTP_DEV.chStatus & TP_PRESS_DOWN)
{ //0x80
sTP_DEV.chStatus &= ~(1 << 7); //0x00
}
else
{
sTP_DEV.Xpoint0 = 0;
sTP_DEV.Ypoint0 = 0;
sTP_DEV.Xpoint = 0xffff;
sTP_DEV.Ypoint = 0xffff;
}
}
return (sTP_DEV.chStatus & TP_PRESS_DOWN);
}
/*******************************************************************************
function:
Draw Cross
parameter:
Xpoint : The x coordinate of the point
Ypoint : The y coordinate of the point
Color : Set color
*******************************************************************************/
static void TP_DrawCross(POINT Xpoint, POINT Ypoint, COLOR Color)
{
GUI_DrawLine(Xpoint - 12, Ypoint, Xpoint + 12, Ypoint,
Color, LINE_SOLID, DOT_PIXEL_1X1);
GUI_DrawLine(Xpoint, Ypoint - 12, Xpoint, Ypoint + 12,
Color, LINE_SOLID, DOT_PIXEL_1X1);
GUI_DrawPoint(Xpoint, Ypoint, Color, DOT_PIXEL_2X2, DOT_FILL_AROUND);
GUI_DrawCircle(Xpoint, Ypoint, 6, Color, DRAW_EMPTY, DOT_PIXEL_1X1);
}
/*******************************************************************************
function:
The corresponding ADC value is displayed on the LC
parameter:
(Xpoint0 ,Xpoint0): The coordinates of the first point
(Xpoint1 ,Xpoint1): The coordinates of the second point
(Xpoint2 ,Xpoint2): The coordinates of the third point
(Xpoint3 ,Xpoint3): The coordinates of the fourth point
hwFac : Percentage of error
*******************************************************************************/
static void TP_ShowInfo(POINT Xpoint0, POINT Ypoint0,
POINT Xpoint1, POINT Ypoint1,
POINT Xpoint2, POINT Ypoint2,
POINT Xpoint3, POINT Ypoint3,
POINT hwFac)
{
if (LCD_2_8 == id)
{
}
else
{
sFONT *TP_Font = &Font16;
LENGTH TP_Dx = TP_Font->Width;
GUI_DrawRectangle(40, 160, 250, 270, WHITE, DRAW_FULL, DOT_PIXEL_1X1);
GUI_DisString_EN(40, 160, "x1", TP_Font, FONT_BACKGROUND, RED);
GUI_DisString_EN(40 + 100, 160, "y1", TP_Font, FONT_BACKGROUND, RED);
GUI_DisString_EN(40, 180, "x2", TP_Font, FONT_BACKGROUND, RED);
GUI_DisString_EN(40 + 100, 180, "y2", TP_Font, FONT_BACKGROUND, RED);
GUI_DisString_EN(40, 200, "x3", TP_Font, FONT_BACKGROUND, RED);
GUI_DisString_EN(40 + 100, 200, "y3", TP_Font, FONT_BACKGROUND, RED);
GUI_DisString_EN(40, 220, "x4", TP_Font, FONT_BACKGROUND, RED);
GUI_DisString_EN(40 + 100, 220, "y4", TP_Font, FONT_BACKGROUND, RED);
GUI_DisString_EN(40, 240, "fac is : ", TP_Font, FONT_BACKGROUND, RED);
GUI_DisNum(40 + 3 * TP_Dx, 160, Xpoint0, TP_Font, FONT_BACKGROUND, RED);
GUI_DisNum(40 + 3 * TP_Dx + 100, 160, Ypoint0, TP_Font, FONT_BACKGROUND, RED);
GUI_DisNum(40 + 3 * TP_Dx, 180, Xpoint1, TP_Font, FONT_BACKGROUND, RED);
GUI_DisNum(40 + 3 * TP_Dx + 100, 180, Ypoint1, TP_Font, FONT_BACKGROUND, RED);
GUI_DisNum(40 + 3 * TP_Dx, 200, Xpoint2, TP_Font, FONT_BACKGROUND, RED);
GUI_DisNum(40 + 3 * TP_Dx + 100, 200, Ypoint2, TP_Font, FONT_BACKGROUND, RED);
GUI_DisNum(40 + 3 * TP_Dx, 220, Xpoint3, TP_Font, FONT_BACKGROUND, RED);
GUI_DisNum(40 + 3 * TP_Dx + 100, 220, Ypoint3, TP_Font, FONT_BACKGROUND, RED);
GUI_DisNum(40 + 10 * TP_Dx, 240, hwFac, TP_Font, FONT_BACKGROUND, RED);
}
}
/*******************************************************************************
function:
Touch screen adjust
*******************************************************************************/
void TP_Adjust(void)
{
uint8_t cnt = 0;
uint16_t XYpoint_Arr[4][2];
uint32_t Dx, Dy;
uint16_t Sqrt1, Sqrt2;
float Dsqrt;
LCD_Clear(LCD_BACKGROUND);
GUI_DisString_EN(0, 60, "Please use the stylus click the cross"
"on the screen. The cross will always move until"
"the screen adjustment is completed.",
&Font16, FONT_BACKGROUND, RED);
uint8_t Mar_Val = 12;
TP_DrawCross(Mar_Val, Mar_Val, RED);
sTP_DEV.chStatus = 0;
while (1)
{
TP_Scan(1);
if ((sTP_DEV.chStatus & 0xC0) == TP_PRESSED)
{
sTP_DEV.chStatus &= ~(1 << 6);
XYpoint_Arr[cnt][0] = sTP_DEV.Xpoint;
XYpoint_Arr[cnt][1] = sTP_DEV.Ypoint;
printf("X%d,Y%d = %d,%d\r\n", cnt, cnt, XYpoint_Arr[cnt][0], XYpoint_Arr[cnt][1]);
cnt++;
Driver_Delay_ms(200);
switch (cnt)
{
case 1:
//DEBUG("not touch TP_IRQ 2 = %d\r\n", GET_TP_IRQ);
TP_DrawCross(Mar_Val, Mar_Val, WHITE);
TP_DrawCross(sLCD_DIS.LCD_Dis_Column - Mar_Val, Mar_Val, RED);
Driver_Delay_ms(200);
break;
case 2:
//DEBUG("not touch TP_IRQ 3 = %d\r\n", GET_TP_IRQ);
TP_DrawCross(sLCD_DIS.LCD_Dis_Column - Mar_Val, Mar_Val, WHITE);
TP_DrawCross(Mar_Val, sLCD_DIS.LCD_Dis_Page - Mar_Val, RED);
Driver_Delay_ms(200);
break;
case 3:
//DEBUG("not touch TP_IRQ 4 = %d\r\n", GET_TP_IRQ);
TP_DrawCross(Mar_Val, sLCD_DIS.LCD_Dis_Page - Mar_Val, WHITE);
TP_DrawCross(sLCD_DIS.LCD_Dis_Column - Mar_Val,
sLCD_DIS.LCD_Dis_Page - Mar_Val, RED);
Driver_Delay_ms(200);
break;
case 4:
// 1.Compare the X direction
Dx = abs((int16_t)(XYpoint_Arr[0][0] -
XYpoint_Arr[1][0])); //x1 - x2
Dy = abs((int16_t)(XYpoint_Arr[0][1] -
XYpoint_Arr[1][1])); //y1 - y2
Dx *= Dx;
Dy *= Dy;
Sqrt1 = sqrt(Dx + Dy);
Dx = abs((int16_t)(XYpoint_Arr[2][0] -
XYpoint_Arr[3][0])); //x3 - x4
Dy = abs((int16_t)(XYpoint_Arr[2][1] -
XYpoint_Arr[3][1])); //y3 - y4
Dx *= Dx;
Dy *= Dy;
Sqrt2 = sqrt(Dx + Dy);
Dsqrt = (float)Sqrt1 / Sqrt2;
if (Dsqrt < 0.95 || Dsqrt > 1.05 || Sqrt1 == 0 || Sqrt2 == 0)
{
//DEBUG("Adjust X direction \r\n");
cnt = 0;
TP_ShowInfo(XYpoint_Arr[0][0], XYpoint_Arr[0][1],
XYpoint_Arr[1][0], XYpoint_Arr[1][1],
XYpoint_Arr[2][0], XYpoint_Arr[2][1],
XYpoint_Arr[3][0], XYpoint_Arr[3][1],
Dsqrt * 100);
Driver_Delay_ms(1000);
TP_DrawCross(sLCD_DIS.LCD_Dis_Column - Mar_Val,
sLCD_DIS.LCD_Dis_Page - Mar_Val, WHITE);
TP_DrawCross(Mar_Val, Mar_Val, RED);
continue;
}
// 2.Compare the Y direction
Dx = abs((int16_t)(XYpoint_Arr[0][0] -
XYpoint_Arr[2][0])); //x1 - x3
Dy = abs((int16_t)(XYpoint_Arr[0][1] -
XYpoint_Arr[2][1])); //y1 - y3
Dx *= Dx;
Dy *= Dy;
Sqrt1 = sqrt(Dx + Dy);
Dx = abs((int16_t)(XYpoint_Arr[1][0] -
XYpoint_Arr[3][0])); //x2 - x4
Dy = abs((int16_t)(XYpoint_Arr[1][1] -
XYpoint_Arr[3][1])); //y2 - y4
Dx *= Dx;
Dy *= Dy;
Sqrt2 = sqrt(Dx + Dy); //
Dsqrt = (float)Sqrt1 / Sqrt2;
if (Dsqrt < 0.95 || Dsqrt > 1.05)
{
//DEBUG("Adjust Y direction \r\n");
cnt = 0;
TP_ShowInfo(XYpoint_Arr[0][0], XYpoint_Arr[0][1],
XYpoint_Arr[1][0], XYpoint_Arr[1][1],
XYpoint_Arr[2][0], XYpoint_Arr[2][1],
XYpoint_Arr[3][0], XYpoint_Arr[3][1],
Dsqrt * 100);
Driver_Delay_ms(1000);
TP_DrawCross(sLCD_DIS.LCD_Dis_Column - Mar_Val,
sLCD_DIS.LCD_Dis_Page - Mar_Val, WHITE);
TP_DrawCross(Mar_Val, Mar_Val, RED);
continue;
} //
//3.Compare diagonal
Dx = abs((int16_t)(XYpoint_Arr[1][0] -
XYpoint_Arr[2][0])); //x1 - x3
Dy = abs((int16_t)(XYpoint_Arr[1][1] -
XYpoint_Arr[2][1])); //y1 - y3
Dx *= Dx;
Dy *= Dy;
Sqrt1 = sqrt(Dx + Dy); //;
Dx = abs((int16_t)(XYpoint_Arr[0][0] -
XYpoint_Arr[3][0])); //x2 - x4
Dy = abs((int16_t)(XYpoint_Arr[0][1] -
XYpoint_Arr[3][1])); //y2 - y4
Dx *= Dx;
Dy *= Dy;
Sqrt2 = sqrt(Dx + Dy); //
Dsqrt = (float)Sqrt1 / Sqrt2;
if (Dsqrt < 0.95 || Dsqrt > 1.05)
{
printf("Adjust diagonal direction\r\n");
cnt = 0;
TP_ShowInfo(XYpoint_Arr[0][0], XYpoint_Arr[0][1],
XYpoint_Arr[1][0], XYpoint_Arr[1][1],
XYpoint_Arr[2][0], XYpoint_Arr[2][1],
XYpoint_Arr[3][0], XYpoint_Arr[3][1],
Dsqrt * 100);
Driver_Delay_ms(1000);
TP_DrawCross(sLCD_DIS.LCD_Dis_Column - Mar_Val,
sLCD_DIS.LCD_Dis_Page - Mar_Val, WHITE);
TP_DrawCross(Mar_Val, Mar_Val, RED);
continue;
}
//4.Get the scale factor and offset
//Get the scanning direction of the touch screen
sTP_DEV.TP_Scan_Dir = sLCD_DIS.LCD_Scan_Dir;
sTP_DEV.fXfac = 0;
//According to the display direction to get
//the corresponding scale factor and offset
if (sTP_DEV.TP_Scan_Dir == R2L_D2U)
{
printf("R2L_D2U\r\n");
sTP_DEV.fXfac = (float)(sLCD_DIS.LCD_Dis_Column - 2 * Mar_Val) /
(int16_t)(XYpoint_Arr[1][0] -
XYpoint_Arr[0][0]);
sTP_DEV.fYfac = (float)(sLCD_DIS.LCD_Dis_Page - 2 * Mar_Val) /
(int16_t)(XYpoint_Arr[2][1] -
XYpoint_Arr[0][1]);
sTP_DEV.iXoff = (sLCD_DIS.LCD_Dis_Column -
sTP_DEV.fXfac * (XYpoint_Arr[1][0] +
XYpoint_Arr[0][0])) /
2;
sTP_DEV.iYoff = (sLCD_DIS.LCD_Dis_Page -
sTP_DEV.fYfac * (XYpoint_Arr[2][1] +
XYpoint_Arr[0][1])) /
2;
}
else if (sTP_DEV.TP_Scan_Dir == L2R_U2D)
{
printf("L2R_U2D\r\n");
sTP_DEV.fXfac = (float)(sLCD_DIS.LCD_Dis_Column - 2 * Mar_Val) /
(int16_t)(XYpoint_Arr[0][0] -
XYpoint_Arr[1][0]);
sTP_DEV.fYfac = (float)(sLCD_DIS.LCD_Dis_Page - 2 * Mar_Val) /
(int16_t)(XYpoint_Arr[0][1] -
XYpoint_Arr[2][1]);
sTP_DEV.iXoff = (sLCD_DIS.LCD_Dis_Column -
sTP_DEV.fXfac * (XYpoint_Arr[0][0] +
XYpoint_Arr[1][0])) /
2;
sTP_DEV.iYoff = (sLCD_DIS.LCD_Dis_Page - sTP_DEV.fYfac *
(XYpoint_Arr[0][1] + XYpoint_Arr[2][1])) /
2;
}
else if (sTP_DEV.TP_Scan_Dir == U2D_R2L)
{
printf("U2D_R2L\r\n");
sTP_DEV.fXfac = (float)(sLCD_DIS.LCD_Dis_Column - 2 * Mar_Val) /
(int16_t)(XYpoint_Arr[1][1] - XYpoint_Arr[0][1]);
sTP_DEV.fYfac = (float)(sLCD_DIS.LCD_Dis_Page - 2 * Mar_Val) /
(int16_t)(XYpoint_Arr[2][0] - XYpoint_Arr[0][0]);
sTP_DEV.iXoff = (sLCD_DIS.LCD_Dis_Column -
sTP_DEV.fXfac * (XYpoint_Arr[1][1] +
XYpoint_Arr[0][1])) /
2;
sTP_DEV.iYoff = (sLCD_DIS.LCD_Dis_Page -
sTP_DEV.fYfac * (XYpoint_Arr[2][0] +
XYpoint_Arr[0][0])) /
2;
}
else
{
printf("D2U_L2R\r\n");
sTP_DEV.fXfac = (float)(sLCD_DIS.LCD_Dis_Column - 2 * Mar_Val) /
(int16_t)(XYpoint_Arr[0][1] -
XYpoint_Arr[1][1]);
sTP_DEV.fYfac = (float)(sLCD_DIS.LCD_Dis_Page - 2 * Mar_Val) /
(int16_t)(XYpoint_Arr[0][0] -
XYpoint_Arr[2][0]);
sTP_DEV.iXoff = (sLCD_DIS.LCD_Dis_Column -
sTP_DEV.fXfac * (XYpoint_Arr[0][1] +
XYpoint_Arr[1][1])) /
2;
sTP_DEV.iYoff = (sLCD_DIS.LCD_Dis_Page -
sTP_DEV.fYfac * (XYpoint_Arr[0][0] +
XYpoint_Arr[2][0])) /
2;
}
printf("sTP_DEV.fXfac = %f \r\n", sTP_DEV.fXfac);
printf("sTP_DEV.fYfac = %f \r\n", sTP_DEV.fYfac);
printf("sTP_DEV.iXoff = %d \r\n", sTP_DEV.iXoff);
printf("sTP_DEV.iYoff = %d \r\n", sTP_DEV.iYoff);
//6.Calibration is successful
LCD_Clear(LCD_BACKGROUND);
GUI_DisString_EN(35, 110, "Touch Screen Adjust OK!",
&Font16, FONT_BACKGROUND, RED);
Driver_Delay_ms(1000);
LCD_Clear(LCD_BACKGROUND);
return;
//Exception handling,Reset Initial value
default:
cnt = 0;
TP_DrawCross(sLCD_DIS.LCD_Dis_Column - Mar_Val,
sLCD_DIS.LCD_Dis_Page - Mar_Val, WHITE);
TP_DrawCross(Mar_Val, Mar_Val, RED);
GUI_DisString_EN(40, 26, "TP Need readjust!",
&Font16, FONT_BACKGROUND, RED);
break;
}
}
}
}
/*******************************************************************************
function:
Use the default calibration factor
*******************************************************************************/
void TP_GetAdFac(void)
{
if (LCD_2_8 == id)
{
sTP_DEV.fXfac = 0.066626;
sTP_DEV.fYfac = 0.089779;
sTP_DEV.iXoff = -20;
sTP_DEV.iYoff = -34;
}
else
{
if (sTP_DEV.TP_Scan_Dir == D2U_L2R)
{ //SCAN_DIR_DFT = D2U_L2R
sTP_DEV.fXfac = -0.132443;
sTP_DEV.fYfac = 0.089997;
sTP_DEV.iXoff = 516;
sTP_DEV.iYoff = -22;
}
else if (sTP_DEV.TP_Scan_Dir == L2R_U2D)
{
sTP_DEV.fXfac = 0.089697;
sTP_DEV.fYfac = 0.134792;
sTP_DEV.iXoff = -21;
sTP_DEV.iYoff = -39;
}
else if (sTP_DEV.TP_Scan_Dir == R2L_D2U)
{
sTP_DEV.fXfac = 0.089915;
sTP_DEV.fYfac = 0.133178;
sTP_DEV.iXoff = -22;
sTP_DEV.iYoff = -38;
}
else if (sTP_DEV.TP_Scan_Dir == U2D_R2L)
{
sTP_DEV.fXfac = -0.132906;
sTP_DEV.fYfac = 0.087964;
sTP_DEV.iXoff = 517;
sTP_DEV.iYoff = -20;
}
else
{
LCD_Clear(LCD_BACKGROUND);
GUI_DisString_EN(0, 60, "Does not support touch-screen \
calibration in this direction",
&Font16, FONT_BACKGROUND, RED);
}
}
}
/*******************************************************************************
function:
Paint the Delete key and paint color choose area
*******************************************************************************/
void TP_Dialog(void)
{
LCD_Clear(LCD_BACKGROUND);
if (LCD_2_8 == id)
{
GUI_DisString_EN(sLCD_DIS.LCD_Dis_Column - 60, 0,
"CLEAR", &Font16, RED, BLUE);
GUI_DisString_EN(sLCD_DIS.LCD_Dis_Column - 120, 0,
"AD", &Font16, RED, BLUE);
GUI_DrawRectangle(0, 0, 15, 15, BLUE, DRAW_FULL, DOT_PIXEL_1X1);
GUI_DrawRectangle(20, 0, 35, 15, GREEN, DRAW_FULL, DOT_PIXEL_1X1);
GUI_DrawRectangle(40, 0, 55, 15, RED, DRAW_FULL, DOT_PIXEL_1X1);
GUI_DrawRectangle(60, 0, 75, 15, YELLOW, DRAW_FULL, DOT_PIXEL_1X1);
GUI_DrawRectangle(80, 0, 95, 15, BLACK, DRAW_FULL, DOT_PIXEL_1X1);
}
else
{
//Horizontal screen display
if (sLCD_DIS.LCD_Dis_Column > sLCD_DIS.LCD_Dis_Page)
{
//Clear screen
GUI_DisString_EN(sLCD_DIS.LCD_Dis_Column - 60, 0,
"CLEAR", &Font16, RED, BLUE);
//adjustment
GUI_DisString_EN(sLCD_DIS.LCD_Dis_Column - 120, 0,
"AD", &Font16, RED, BLUE);
//choose the color
GUI_DrawRectangle(sLCD_DIS.LCD_Dis_Column - 50, 20,
sLCD_DIS.LCD_Dis_Column, 70,
BLUE, DRAW_FULL, DOT_PIXEL_1X1);
GUI_DrawRectangle(sLCD_DIS.LCD_Dis_Column - 50, 80,
sLCD_DIS.LCD_Dis_Column, 130,
GREEN, DRAW_FULL, DOT_PIXEL_1X1);
GUI_DrawRectangle(sLCD_DIS.LCD_Dis_Column - 50, 140,
sLCD_DIS.LCD_Dis_Column, 190,
RED, DRAW_FULL, DOT_PIXEL_1X1);
GUI_DrawRectangle(sLCD_DIS.LCD_Dis_Column - 50, 200,
sLCD_DIS.LCD_Dis_Column, 250,
YELLOW, DRAW_FULL, DOT_PIXEL_1X1);
GUI_DrawRectangle(sLCD_DIS.LCD_Dis_Column - 50, 260,
sLCD_DIS.LCD_Dis_Column, 310,
BLACK, DRAW_FULL, DOT_PIXEL_1X1);
}
else
{ //Vertical screen display
GUI_DisString_EN(sLCD_DIS.LCD_Dis_Column - 60, 0,
"CLEAR", &Font16, RED, BLUE);
GUI_DisString_EN(sLCD_DIS.LCD_Dis_Column - 120, 0,
"AD", &Font24, RED, BLUE);
GUI_DrawRectangle(20, 20, 70, 70, BLUE, DRAW_FULL, DOT_PIXEL_1X1);
GUI_DrawRectangle(80, 20, 130, 70, GREEN, DRAW_FULL, DOT_PIXEL_1X1);
GUI_DrawRectangle(140, 20, 190, 70, RED, DRAW_FULL, DOT_PIXEL_1X1);
GUI_DrawRectangle(200, 20, 250, 70, YELLOW, DRAW_FULL, DOT_PIXEL_1X1);
GUI_DrawRectangle(260, 20, 310, 70, BLACK, DRAW_FULL, DOT_PIXEL_1X1);
}
}
}
/*******************************************************************************
function:
Draw Board
*******************************************************************************/
void TP_DrawBoard(void)
{
// sTP_DEV.chStatus &= ~(1 << 6);
TP_Scan(0);
if (sTP_DEV.chStatus & TP_PRESS_DOWN)
{ //Press the button
//Horizontal screen
if (sTP_Draw.Xpoint < sLCD_DIS.LCD_Dis_Column &&
//Determine whether the law is legal
sTP_Draw.Ypoint < sLCD_DIS.LCD_Dis_Page)
{
spi_init(SPI_PORT, 10000000);
if (sLCD_DIS.LCD_Dis_Column > sLCD_DIS.LCD_Dis_Page && !inference->IsProcessing)
{
// printf("horizontal x:%d,y:%d\n", sTP_Draw.Xpoint, sTP_Draw.Ypoint);
if (
sTP_Draw.Xpoint > (sLCD_DIS.LCD_Dis_Column - 220) / 2 + 10 &&
sTP_Draw.Xpoint < (sLCD_DIS.LCD_Dis_Column - 220) / 2 + 90 &&
sTP_Draw.Ypoint > 240 &&
sTP_Draw.Ypoint < 270
)
{
// --- LOGIN BUTTON PRESSED ---
// Handle debuncing
uint32_t current_time = to_ms_since_boot(get_absolute_time());
// Ignore further touches for a period after a valid touch
if (current_time - last_login_button_touch_time < IGNORE_INTERVAL_MS) {
return;
}
printf("Login button pressed.\n");
// Update the last touch time
last_login_button_touch_time = current_time;
// Convert written digit in 28x28 input shape
set_box_content();
// Call inference on different core
multicore_fifo_push_blocking(MULTICORE_RUN_INFERENCE_FLAG);
}
else if (sTP_Draw.Xpoint > (sLCD_DIS.LCD_Dis_Column - 220) / 2 + 120 &&
sTP_Draw.Xpoint < (sLCD_DIS.LCD_Dis_Column - 220) / 2 + 220 &&
sTP_Draw.Ypoint > 230 &&
sTP_Draw.Ypoint < 270)
{
// --- CLEAR BUTTON PRESSED ---
init_gui();
// reset_inference(NULL);
// clear_drawing();
}
else
{
int box_index = find_box_by_point();
if (box_index >= 0)
{
// drawing cross
GUI_DrawPoint(sTP_Draw.Xpoint - POINT_SPACE, sTP_Draw.Ypoint + POINT_SPACE,
sTP_Draw.Color, DOT_PIXEL_2X2, DOT_FILL_RIGHTUP);
GUI_DrawPoint(sTP_Draw.Xpoint + POINT_SPACE, sTP_Draw.Ypoint + POINT_SPACE,
sTP_Draw.Color, DOT_PIXEL_2X2, DOT_FILL_RIGHTUP);
GUI_DrawPoint(sTP_Draw.Xpoint, sTP_Draw.Ypoint,
sTP_Draw.Color, DOT_PIXEL_2X2, DOT_FILL_RIGHTUP);
GUI_DrawPoint(sTP_Draw.Xpoint - POINT_SPACE, sTP_Draw.Ypoint - POINT_SPACE,
sTP_Draw.Color, DOT_PIXEL_2X2, DOT_FILL_RIGHTUP);
GUI_DrawPoint(sTP_Draw.Xpoint + POINT_SPACE, sTP_Draw.Ypoint - POINT_SPACE,
sTP_Draw.Color, DOT_PIXEL_2X2, DOT_FILL_RIGHTUP);
int center_index_x = sTP_Draw.Xpoint - box_refs[box_index].start_x + BOX_PADDING;
int center_index_y = sTP_Draw.Ypoint - box_refs[box_index].start_y + BOX_PADDING;
box_refs[box_index].content[center_index_y][center_index_x] = 1;
box_refs[box_index].content[center_index_y + 1][center_index_x - 1] = 1;
box_refs[box_index].content[center_index_y + 1][center_index_x + 1] = 1;
box_refs[box_index].content[center_index_y - 1][center_index_x - 1] = 1;
box_refs[box_index].content[center_index_y + 1][center_index_x + 1] = 1;
box_refs[box_index].content[center_index_y - 1][center_index_x] = 1;
box_refs[box_index].content[center_index_y + 1][center_index_x] = 1;
box_refs[box_index].content[center_index_y][center_index_x - 1] = 1;
box_refs[box_index].content[center_index_y][center_index_x + 1] = 1;
box_refs[box_index].content[center_index_y + 2][center_index_x] = 1;
box_refs[box_index].content[center_index_y - 2][center_index_x] = 1;
box_refs[box_index].content[center_index_y][center_index_x - 2] = 1;
box_refs[box_index].content[center_index_y][center_index_x + 2] = 1;
}
}
}
spi_init(SPI_PORT, 5000000);
}
}
draw_inference_result();
SPI4W_Write_Byte(0xFF);
}
/**
* Convert handdrawing digit in shape 84x84 array into 784 1D vector
*/
void set_box_content(void) {
for (int index=0; index<DIGIT_INPUT_COUNT; index++) {
// Iterate over the output 4x4 array
for (int i = 0; i < INPUT_IMAGE_SIZE; i++) {
for (int j = 0; j < INPUT_IMAGE_SIZE; j++) {
int sum = 0;
// Calculate the sum of the 3x3 window
for (int wi = 0; wi < WINDOW_SIZE; wi++) {
for (int wj = 0; wj < WINDOW_SIZE; wj++) {
sum += box_refs[index].content[i * WINDOW_SIZE + wi][j * WINDOW_SIZE + wj];
}
}
float ratio = (float)sum / (float)(WINDOW_SIZE * WINDOW_SIZE);
if (ratio > 1.) ratio = 1.;
uint8_t value = (uint8_t)(255 * ratio);
// Outlier rejection
// if (value < 86) value = 0;
// Calculate the average and store it in the output array
inference->UserInputs[index].InputData[i*INPUT_IMAGE_SIZE + j] = value;
}
}
}
}
/**
* Check if point falls in any boxes
*/
int find_box_by_point(void)
{
int i = 0;
while (i < DIGIT_INPUT_COUNT) {
if (
box_refs[i].start_x + BOX_PADDING < sTP_Draw.Xpoint &&
sTP_Draw.Xpoint < box_refs[i].end_x - BOX_PADDING &&
box_refs[i].start_y + BOX_PADDING < sTP_Draw.Ypoint &&
sTP_Draw.Ypoint < box_refs[i].end_y - BOX_PADDING
) {
break;
}
i++;
}
return i == DIGIT_INPUT_COUNT ? -1 : i;
}
/**
* Erase any drawn contents in side the boxes
*/
void clear_drawing(void)
{
for (int i=0; i<DIGIT_INPUT_COUNT; i++) {
// Clear box content
GUI_DrawRectangle(box_refs[i].start_x, box_refs[i].start_y, box_refs[i].end_x, box_refs[i].end_y, WHITE, DRAW_FULL, DOT_PIXEL_1X1);
// Clear predicted label
GUI_DrawRectangle(box_refs[i].start_x, box_refs[i].start_y - 14, box_refs[i].end_x, box_refs[i].start_y - 2, WHITE, DRAW_FULL, DOT_PIXEL_1X1);
for (int row=0; row<BOX_SIZE; row++) {
for (int col=0; col<BOX_SIZE; col++) {
box_refs[i].content[row][col] = 0;
}
}
}
}
/**
* Draw inference result on the display right above each box
*/
void draw_inference_result(void)
{
for (int i=0; i<DIGIT_INPUT_COUNT; i++) {
if (inference->UserInputs[i].PredictedDigit >= 0) {
char result[25] = "Predicted: ";
char temp[2];
if (inference->UserInputs[i].PredictedDigit == UNKNOWN_PREDICTION) {
sprintf(temp, "%s", "-");
} else {
sprintf(temp, "%d", inference->UserInputs[i].PredictedDigit);
}
strcat(result, temp);
GUI_DisString_EN(box_refs[i].start_x + 2, box_refs[i].start_y - 12, result, &Font12, WHITE, BLACK);
}
}
}
void reinitialize_to_zero(uint8_t matrix[INPUT_IMAGE_SIZE * INPUT_IMAGE_SIZE]) {
for (int i = 0; i < INPUT_IMAGE_SIZE * INPUT_IMAGE_SIZE; i++) {
matrix[i] = 0;
}
}
/**
* Reset prediction result and input data
*/
void reset_inference(INFERENCE* _inference)
{
if (_inference != NULL) {
inference = _inference;
}
inference->IsProcessing = false;
for (int i=0; i<DIGIT_INPUT_COUNT; i++) {
reinitialize_to_zero(inference->UserInputs[i].InputData);
inference->UserInputs[i].PredictedDigit = -1;
}
}
void init_gui(void)
{
LCD_Clear(LCD_BACKGROUND);
TP_Scan(0);
start_x = (sLCD_DIS.LCD_Dis_Column - total_width) / 2;
// Clear inference data
if (inference != NULL) {
for (int i=0; i<DIGIT_INPUT_COUNT; i++) {
reinitialize_to_zero(inference->UserInputs[i].InputData);
inference->UserInputs[i].PredictedDigit = -1;
}
}
// Default color to black
sTP_Draw.Color = BLACK;
// Display "MACHINE LEARNING" and "FOR EMBEDDED SYSTEM" at the top of the screen
GUI_DisString_EN(100, 20, "MACHINE LEARNING", &Font24, WHITE, RED);
GUI_DisString_EN(80, 45, "FOR EMBEDDED SYSTEM", &Font24, WHITE, RED);
// Draw four boxes with black border and white inside
for (int i = 0; i < DIGIT_INPUT_COUNT; i++)
{
int x = start_x + i * (BOX_SIZE + 2 * BORDER_THICKNESS + SPACE_BETWEEN_BOXES);
int y = start_y;
// Draw black border
GUI_DrawRectangle(x - BORDER_THICKNESS, y - BORDER_THICKNESS, x + BOX_SIZE + BORDER_THICKNESS, y + BOX_SIZE + BORDER_THICKNESS, BLACK, DRAW_FULL, DOT_PIXEL_1X1);
// Draw white interior
GUI_DrawRectangle(x, y, x + BOX_SIZE, y + BOX_SIZE, WHITE, DRAW_FULL, DOT_PIXEL_1X1);
BOX_REFERENCE p = { .start_x = x, .start_y = y, .end_x = x + BOX_SIZE, .end_y = y + BOX_SIZE, .content = {0}};
box_refs[i] = p;
}
// Calculate positions for the "LOGIN" and "CLEAR" buttons
int button_width = 100;
int button_height = 40;
int button_space = 20; // Space between the two buttons
int buttons_total_width = 2 * button_width + button_space;
int buttons_start_x = (sLCD_DIS.LCD_Dis_Column - buttons_total_width) / 2;
int button_y = start_y + BOX_SIZE + 30;
// Draw "LOGIN" button
int login_button_x = buttons_start_x;
GUI_DrawRectangle(login_button_x, button_y, login_button_x + button_width, button_y + button_height, sTP_Draw.Color, DRAW_FULL, DOT_PIXEL_1X1);
GUI_DisString_EN(login_button_x + 15, button_y + 15, "LOGIN", &Font20, BLACK, WHITE);
// Draw "CLEAR" button
int clear_button_x = buttons_start_x + button_width + button_space;
GUI_DrawRectangle(clear_button_x, button_y, clear_button_x + button_width, button_y + button_height, sTP_Draw.Color, DRAW_FULL, DOT_PIXEL_1X1);
GUI_DisString_EN(clear_button_x + 15, button_y + 15, "CLEAR", &Font20, BLACK, WHITE);
}
/*******************************************************************************
function:
Touch pad initialization
*******************************************************************************/
void TP_Init(LCD_SCAN_DIR Lcd_ScanDir)
{
DEV_Digital_Write(TP_CS_PIN, 1);
sTP_DEV.TP_Scan_Dir = Lcd_ScanDir;
TP_Read_ADC_XY(&sTP_DEV.Xpoint, &sTP_DEV.Ypoint);
}
/*****************************************************************************
* | File : LCD_Touch.h
* | Author : Waveshare team
* | Function : LCD Touch Pad Driver and Draw
* | Info :
* Image scanning
* Please use progressive scanning to generate images or fonts
*----------------
* | This version: V1.0
* | Date : 2017-08-16
* | Info : Basic version
*
******************************************************************************/
#ifndef TFLITE_INFERENCE_TEST_LCD_TOUCH_H_
#define TFLITE_INFERENCE_TEST_LCD_TOUCH_H_
#ifdef __cplusplus
extern "C" {
#endif
#include "DEV_Config.h"
#include "LCD_Driver.h"
#include "LCD_GUI.h"
#include <math.h>
#include <stdio.h>
#include "pico/stdlib.h"
#include "pico/float.h"
#include "pico/multicore.h"
#include "pico/sync.h"
#define TP_PRESS_DOWN 0x80
#define TP_PRESSED 0x40
#define IGNORE_INTERVAL_MS 200
#define DIGIT_INPUT_COUNT 4
#define BOX_SIZE 84
#define BOX_START_Y 120 // Starting Y position for the boxes
#define BORDER_THICKNESS 2
#define BOX_PADDING 4
#define POINT_SPACE 2
#define WINDOW_SIZE 3
#define SPACE_BETWEEN_BOXES 10
//Touch screen structure
typedef struct {
POINT Xpoint0;
POINT Ypoint0;
POINT Xpoint;
POINT Ypoint;
uint8_t chStatus;
uint8_t chType;
int16_t iXoff;
int16_t iYoff;
float fXfac;
float fYfac;
//Select the coordinates of the XPT2046 touch \
screen relative to what scan direction
LCD_SCAN_DIR TP_Scan_Dir;
}TP_DEV;
//Brush structure
typedef struct{
POINT Xpoint;
POINT Ypoint;
COLOR Color;
DOT_PIXEL DotPixel;
}TP_DRAW;
typedef struct{
uint8_t InputData[INPUT_IMAGE_SIZE * INPUT_IMAGE_SIZE]; // 784 uint8_t array
int8_t PredictedDigit;
} USER_INPUT;
typedef struct{
// semaphore_t Semaphore;
bool IsProcessing;
USER_INPUT UserInputs[DIGIT_INPUT_COUNT]; // 4 inputs
} INFERENCE;
typedef struct{
int start_x;
int start_y;
int end_x;
int end_y;
uint8_t content[BOX_SIZE][BOX_SIZE];
} BOX_REFERENCE;
void TP_GetAdFac(void);
void TP_Adjust(void);
void TP_Dialog(void);
void TP_DrawBoard(void);
void TP_Init( LCD_SCAN_DIR Lcd_ScanDir );
void init_gui(void);
void reset_inference(INFERENCE* _inference);
int find_box_by_point(void);
void clear_drawing();
void draw_inference_result();
#ifdef __cplusplus
}
#endif
#endif // TFLITE_INFERENCE_TEST_LCD_TOUCH_H_
pico-tflmicro @ 03cbb1e7
Subproject commit 03cbb1e7b89792aef2c59e2dbe8cb2c81c049bbd
#include <cmath>
#include<iostream>
#include <cstdlib>
#include <iostream>
#include <stdio.h>
#include "pico/stdlib.h"
#include "pico/multicore.h"
#include "pico/sync.h"
#include "hardware/watchdog.h"
#include "hardware/sync.h"
#include "LCD_Driver.h"
#include "LCD_Touch.h"
#include "LCD_GUI.h"
#include "DEV_Config.h"
#include "model.h"
#include "model_settings.h"
#include "mnist_model_data.h"
using namespace std;
#define HALT_CORE_1() while (1) { tight_loop_contents(); }
INFERENCE inference;
Model ml_model;
mutex_t mutex; // Declare a mutex
int count_digits(int number) {
if (number == 0) {
return 1; // Special case for 0, which has 1 digit
}
number = abs(number); // Handle negative numbers
return std::floor(std::log10(number)) + 1;
}
// run core0 loop that displays UI and handle user interaction
void core1_entry() {
uint16_t cnt=0;
while(true) {
for(cnt=1000;cnt>2;cnt--)
{
LCD_SetBackLight(1000);
// pass the ML inputs, output, and semaphore
TP_DrawBoard();
}
}
}
int main(void)
{
System_Init();
mutex_init(&mutex); // Initialize the mutex
sleep_ms(5000);
// initialize LCD display
LCD_SCAN_DIR lcd_scan_dir = SCAN_DIR_DFT;
LCD_Init(lcd_scan_dir,1000);
TP_Init(lcd_scan_dir);
LCD_SCAN_DIR bmp_scan_dir = D2U_R2L;
TP_GetAdFac();
reset_inference(&inference);
init_gui();
// run core1 loop that handles user interface
multicore_launch_core1(core1_entry);
// initialize ML model
if (!ml_model.setup()) {
printf("Failed to initialize ML model!\n");
HALT_CORE_1();
}
printf("Model initialized\n");
uint8_t* test_image_input = ml_model.input_data();
if (test_image_input == nullptr) {
printf("Cannot set input\n");
HALT_CORE_1();
}
int byte_size = ml_model.byte_size();
if (!byte_size) {
printf("Byte size not found\n");
HALT_CORE_1();
}
while (true) {
// Block the process until data being filled
uint32_t g = multicore_fifo_pop_blocking();
// Acquire the mutex (blocking)
mutex_enter_blocking(&mutex);
inference.IsProcessing = true;
// Run inference and set predicted result
// This for loop is used for debugging purpose.
for (int index=0; index<DIGIT_INPUT_COUNT; index++) {
for (int i=0; i<INPUT_IMAGE_SIZE; i++) {
for (int j=0; j<INPUT_IMAGE_SIZE; j++) {
uint8_t num = inference.UserInputs[index].InputData[i*INPUT_IMAGE_SIZE + j];
int space = 3 - count_digits(num);
printf("%d", num);
for (int i = 0; i < space; ++i) {
printf(" ");
}
}
printf("\n");
}
memcpy(test_image_input, inference.UserInputs[index].InputData, byte_size);
int result = ml_model.predict();
if (result == -1) {
printf("Failed to run inference\n");
inference.UserInputs[index].PredictedDigit = UNKNOWN_PREDICTION;
} else {
printf("Predicted: %d\n", result);
inference.UserInputs[index].PredictedDigit = result;
}
sleep_ms(200);
}
printf("Login process finished.\n");
inference.IsProcessing = false;
//Return the resource
mutex_exit(&mutex);
}
return 0;
}
aux_source_directory(. DIR_MODELS_SRCS)
include_directories(../src)
add_library(models ${DIR_MODELS_SRCS})
target_include_directories(models PUBLIC src)
\ No newline at end of file
#include <cstdint>
#include "mnist_image_data.h"
const unsigned char mnist_image_data_0[] = {
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,248,254,254,254,254,233,109,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,253,253,253,253,253,253,252,101,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,26,146,159,54,125,224,253,226,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,253,240,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,7,0,0,0,9,180,250,95,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,244,125,0,0,0,0,161,253,120,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,7,55,73,0,102,213,64,0,0,0,7,175,253,190,0,0,0,0,
0,0,0,0,0,0,0,0,8,56,175,253,191,0,0,0,0,0,0,0,41,253,253,120,0,0,0,0,
0,0,0,0,0,0,0,0,75,253,253,252,156,0,0,0,0,0,0,0,48,253,253,120,0,0,0,0,
0,0,0,0,0,0,0,43,229,253,253,155,0,0,0,0,0,0,0,29,216,253,246,57,0,0,0,0,
0,0,0,0,0,0,0,215,254,254,80,0,0,0,0,0,0,0,0,118,255,255,177,0,0,0,0,0,
0,0,0,0,0,0,146,251,253,202,4,0,0,0,0,0,0,0,86,215,253,242,62,0,0,0,0,0,
0,0,0,0,0,97,251,253,228,55,0,0,0,0,0,0,0,0,201,253,253,107,0,0,0,0,0,0,
0,0,0,0,39,224,253,253,73,0,0,0,0,0,0,0,30,194,245,236,151,15,0,0,0,0,0,0,
0,0,0,0,227,253,253,189,11,0,0,0,0,0,0,29,207,253,253,199,0,0,0,0,0,0,0,0,
0,0,0,0,254,253,253,74,0,0,0,0,0,0,26,209,253,253,211,87,0,0,0,0,0,0,0,0,
0,0,0,0,255,253,253,39,0,9,41,55,174,174,213,253,253,219,45,0,0,0,0,0,0,0,0,0,
0,0,0,0,255,253,253,175,161,180,253,253,253,253,255,228,177,15,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,170,253,253,253,253,253,253,253,245,240,177,6,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,170,253,253,253,253,253,168,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
};
const unsigned char mnist_image_data_1[] = {
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,218,253,253,202,31,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,217,251,251,253,107,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,190,251,251,253,107,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,115,251,251,253,107,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,87,251,251,253,107,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,27,212,253,255,108,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,21,190,251,253,107,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,5,128,251,253,107,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,16,170,251,253,107,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,37,251,251,253,107,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,37,253,253,255,108,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,37,251,251,253,107,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,37,251,251,253,107,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,37,251,251,253,107,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,37,251,251,253,107,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,37,253,253,255,108,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,37,251,251,253,107,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,37,251,251,253,210,25,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,21,189,251,253,107,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,109,251,253,107,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
};
const unsigned char mnist_image_data_2[] = {
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,4,43,87,166,253,156,148,60,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,136,252,252,253,252,252,252,252,116,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,9,101,232,251,238,187,127,126,134,237,252,250,67,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,176,253,252,185,28,0,0,0,0,21,198,253,224,14,0,0,0,0,0,0,0,
0,0,0,0,0,0,98,246,218,42,4,0,0,0,0,0,0,106,253,252,21,0,0,0,0,0,0,0,
0,0,0,0,0,0,141,211,132,0,0,0,0,0,0,0,0,45,254,253,127,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,253,252,126,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,253,252,29,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,253,252,21,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,71,106,107,106,9,0,106,253,252,21,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,25,123,245,253,253,255,253,245,78,175,255,239,17,0,0,0,0,0,0,0,
0,0,0,0,0,0,57,128,227,252,174,98,63,125,231,252,252,252,253,168,0,0,0,0,0,0,0,0,
0,0,0,0,0,73,211,244,153,21,2,0,0,0,16,172,252,252,253,116,0,0,0,0,0,0,0,0,
0,0,0,0,0,232,236,66,0,0,0,0,0,0,0,48,252,252,253,89,0,0,0,0,0,0,0,0,
0,0,0,0,71,249,101,0,0,0,0,0,0,0,36,223,252,252,253,239,17,0,0,0,0,0,0,0,
0,0,0,0,85,253,102,0,0,0,0,0,18,123,253,253,253,236,255,253,38,0,0,0,0,0,0,0,
0,0,0,0,21,237,237,146,36,0,43,155,216,253,252,245,98,37,253,252,126,0,0,0,0,0,0,0,
0,0,0,0,0,125,245,252,242,232,242,252,252,223,126,27,0,0,156,252,223,0,0,0,0,0,0,0,
0,0,0,0,0,0,56,172,216,237,247,189,145,35,0,0,0,0,122,252,231,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,18,32,38,0,0,0,0,0,0,0,43,252,187,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
};
const unsigned char mnist_image_data_3[] = {
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,71,92,92,92,198,193,202,92,92,83,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,23,182,238,254,254,254,254,254,254,254,254,247,182,152,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,182,254,254,254,254,254,254,254,254,254,254,254,254,231,52,0,0,0,0,0,0,0,0,
0,0,0,0,0,182,254,254,238,83,57,57,57,57,62,221,246,254,254,123,0,0,0,0,0,0,0,0,
0,0,0,0,0,102,254,238,68,0,0,0,0,0,5,125,221,254,254,123,0,0,0,0,0,0,0,0,
0,0,0,0,0,3,40,35,0,0,0,0,0,49,163,254,254,254,246,99,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,128,140,252,254,254,254,254,123,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,28,67,67,99,231,252,254,254,254,254,248,114,5,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,108,254,254,254,254,254,254,254,254,254,230,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,17,251,254,254,254,254,254,254,254,254,254,254,248,221,40,0,0,0,0,0,0,0,0,
0,0,0,0,0,17,246,252,246,246,246,246,246,246,246,254,254,254,254,212,134,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,102,0,0,0,0,0,0,6,155,165,254,254,254,219,100,6,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,139,250,254,254,254,32,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,131,254,254,254,180,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,254,254,254,180,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,254,254,254,180,0,0,0,0,0,
0,0,0,0,0,0,0,46,58,58,58,58,58,58,64,223,223,223,249,254,255,254,142,0,0,0,0,0,
0,0,0,0,0,0,0,198,254,254,254,254,254,254,254,254,254,254,254,254,254,167,7,0,0,0,0,0,
0,0,0,0,0,0,0,198,254,254,254,254,254,254,254,254,254,254,242,180,142,7,0,0,0,0,0,0,
0,0,0,0,0,0,0,92,254,147,254,105,90,90,202,254,131,90,75,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
};
const unsigned char mnist_image_data_4[] = {
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,12,129,13,0,0,0,0,0,0,32,230,194,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,165,252,175,0,0,0,0,0,0,85,252,212,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,46,243,252,118,0,0,0,0,0,0,165,252,131,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,161,252,242,4,0,0,0,0,0,2,173,252,26,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,5,184,252,145,0,0,0,0,0,0,23,252,194,8,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,61,252,183,5,0,0,0,0,0,0,109,252,164,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,185,252,164,0,0,0,0,0,0,0,132,252,64,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,242,252,164,0,0,0,0,0,0,0,132,243,45,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,74,250,252,83,0,0,0,0,0,0,0,214,197,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,56,248,228,31,0,0,0,0,15,111,201,251,197,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,229,253,253,249,210,253,253,255,253,253,253,183,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,50,186,238,252,212,186,186,172,77,222,252,88,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,34,44,17,0,0,0,0,209,252,88,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,250,80,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,230,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,224,230,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,252,230,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,252,163,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,252,121,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,215,73,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
};
const unsigned char mnist_image_data_5[] = {
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,64,255,64,0,128,255,255,255,255,255,191,128,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,191,255,255,255,255,255,255,255,255,255,255,255,128,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,191,128,128,128,128,64,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,64,255,255,255,255,191,64,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,128,255,255,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,64,255,255,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,128,255,255,191,128,128,128,128,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,255,191,64,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,64,255,255,255,255,255,255,255,255,255,255,255,128,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,191,255,128,64,0,64,64,128,128,191,255,255,128,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,255,255,64,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,128,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,128,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,128,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,255,255,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,255,255,191,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,255,255,255,128,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,128,191,128,128,128,128,255,255,255,191,64,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,64,255,255,255,255,255,255,255,191,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,128,255,255,255,255,255,128,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
};
const unsigned char mnist_image_data_6[] = {
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,126,233,7,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,197,254,166,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,73,251,254,188,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,196,254,237,24,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,226,254,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,226,254,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,44,240,254,226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,7,160,254,254,220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,72,254,254,254,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,72,254,254,221,0,0,0,19,10,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,72,254,254,166,0,0,55,150,131,89,2,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,72,254,254,148,0,16,207,254,255,254,149,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,72,254,254,129,11,192,254,254,254,254,253,149,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,72,254,254,129,23,250,254,251,243,253,254,240,46,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,72,254,254,129,3,171,255,172,5,232,254,255,103,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,72,254,254,129,9,171,216,175,180,247,254,254,129,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,54,243,254,162,66,97,238,238,254,254,254,247,66,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,169,254,254,254,254,254,254,254,254,206,47,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,90,254,254,254,254,254,254,254,55,17,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,6,172,254,254,254,227,135,92,2,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
};
const unsigned char mnist_image_data_7[] = {
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,254,119,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,80,106,189,249,253,235,17,0,0,0,0,0,
0,0,0,0,0,0,0,3,91,116,82,116,149,208,207,228,253,254,253,253,253,67,0,0,0,0,0,0,
0,0,0,0,0,0,0,24,253,254,253,253,253,254,253,253,219,186,253,253,151,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,9,159,185,184,184,184,127,93,17,0,128,254,230,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,245,244,87,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,215,254,198,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,149,253,228,40,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,237,254,102,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,13,226,253,168,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,153,253,234,54,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,34,254,253,137,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,185,255,199,17,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,123,247,241,60,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,30,228,253,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,206,253,253,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,45,245,254,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,120,253,253,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,237,253,234,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,254,253,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
};
const unsigned char mnist_image_data_8[] = {
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,29,130,177,250,159,249,179,54,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,27,220,254,227,189,226,226,249,205,12,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,195,248,132,4,0,0,0,129,100,7,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,86,242,73,0,0,0,0,0,0,0,0,24,21,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,87,227,21,0,0,0,0,0,0,7,76,210,91,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,25,248,144,0,0,0,0,0,110,203,254,218,26,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,132,239,16,0,49,215,246,227,78,9,6,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,29,228,225,175,247,241,166,25,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,18,160,254,254,146,25,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,17,164,251,222,254,48,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,68,223,220,60,16,243,95,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,69,243,166,3,0,0,241,240,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,171,127,6,0,0,0,151,253,76,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,73,230,22,0,0,0,0,105,254,82,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,155,197,0,0,0,0,0,49,254,82,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,137,227,35,0,0,0,0,49,254,82,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,21,213,218,31,0,0,0,161,254,80,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,77,245,224,144,17,99,250,178,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,70,169,255,233,255,248,52,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,22,119,165,187,56,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
};
const unsigned char mnist_image_data_9[] = {
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,91,191,215,86,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,233,254,254,254,178,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,123,233,254,254,224,168,79,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,9,134,234,254,230,126,87,197,14,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,10,176,254,254,208,14,12,224,226,14,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,142,254,254,179,27,9,143,254,226,14,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,28,239,254,213,30,0,62,254,254,167,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,198,254,215,22,0,8,239,254,243,41,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,116,251,254,34,0,102,239,254,254,232,18,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,176,254,145,1,51,220,254,254,254,116,2,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,23,239,237,26,105,249,255,245,207,238,19,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,23,238,239,221,254,254,211,94,230,205,19,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,9,191,254,254,254,153,5,154,252,132,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,60,208,149,92,4,0,217,245,30,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,27,239,240,13,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,86,254,179,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,209,253,57,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,20,222,228,24,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,98,251,191,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,185,254,112,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
};
#include "mnist_model_data.h"
alignas(8) const unsigned char mnist_model_data[] = {
// TODO: 1. Copy your tflite C array and paste it here.
};
// TODO: 2. Change model data length
const int mnist_model_data_len = -1;
\ No newline at end of file
# This is a copy of <PICO_SDK_PATH>/external/pico_sdk_import.cmake
# This can be dropped into an external project to help locate this SDK
# It should be include()ed prior to project()
if (DEFINED ENV{PICO_SDK_PATH} AND (NOT PICO_SDK_PATH))
set(PICO_SDK_PATH $ENV{PICO_SDK_PATH})
message("Using PICO_SDK_PATH from environment ('${PICO_SDK_PATH}')")
endif ()
if (DEFINED ENV{PICO_SDK_FETCH_FROM_GIT} AND (NOT PICO_SDK_FETCH_FROM_GIT))
set(PICO_SDK_FETCH_FROM_GIT $ENV{PICO_SDK_FETCH_FROM_GIT})
message("Using PICO_SDK_FETCH_FROM_GIT from environment ('${PICO_SDK_FETCH_FROM_GIT}')")
endif ()
if (DEFINED ENV{PICO_SDK_FETCH_FROM_GIT_PATH} AND (NOT PICO_SDK_FETCH_FROM_GIT_PATH))
set(PICO_SDK_FETCH_FROM_GIT_PATH $ENV{PICO_SDK_FETCH_FROM_GIT_PATH})
message("Using PICO_SDK_FETCH_FROM_GIT_PATH from environment ('${PICO_SDK_FETCH_FROM_GIT_PATH}')")
endif ()
set(PICO_SDK_PATH "${PICO_SDK_PATH}" CACHE PATH "Path to the PICO SDK")
set(PICO_SDK_FETCH_FROM_GIT "${PICO_SDK_FETCH_FROM_GIT}" CACHE BOOL "Set to ON to fetch copy of PICO SDK from git if not otherwise locatable")
set(PICO_SDK_FETCH_FROM_GIT_PATH "${PICO_SDK_FETCH_FROM_GIT_PATH}" CACHE FILEPATH "location to download SDK")
if (NOT PICO_SDK_PATH)
if (PICO_SDK_FETCH_FROM_GIT)
include(FetchContent)
set(FETCHCONTENT_BASE_DIR_SAVE ${FETCHCONTENT_BASE_DIR})
if (PICO_SDK_FETCH_FROM_GIT_PATH)
get_filename_component(FETCHCONTENT_BASE_DIR "${PICO_SDK_FETCH_FROM_GIT_PATH}" REALPATH BASE_DIR "${CMAKE_SOURCE_DIR}")
endif ()
FetchContent_Declare(
pico_sdk
GIT_REPOSITORY https://github.com/raspberrypi/pico-sdk
GIT_TAG master
)
if (NOT pico_sdk)
message("Downloading PICO SDK")
FetchContent_Populate(pico_sdk)
set(PICO_SDK_PATH ${pico_sdk_SOURCE_DIR})
endif ()
set(FETCHCONTENT_BASE_DIR ${FETCHCONTENT_BASE_DIR_SAVE})
else ()
message(FATAL_ERROR
"PICO SDK location was not specified. Please set PICO_SDK_PATH or set PICO_SDK_FETCH_FROM_GIT to on to fetch from git."
)
endif ()
endif ()
get_filename_component(PICO_SDK_PATH "${PICO_SDK_PATH}" REALPATH BASE_DIR "${CMAKE_BINARY_DIR}")
if (NOT EXISTS ${PICO_SDK_PATH})
message(FATAL_ERROR "Directory '${PICO_SDK_PATH}' not found")
endif ()
set(PICO_SDK_INIT_CMAKE_FILE ${PICO_SDK_PATH}/pico_sdk_init.cmake)
if (NOT EXISTS ${PICO_SDK_INIT_CMAKE_FILE})
message(FATAL_ERROR "Directory '${PICO_SDK_PATH}' does not appear to contain the PICO SDK")
endif ()
set(PICO_SDK_PATH ${PICO_SDK_PATH} CACHE PATH "Path to the PICO SDK" FORCE)
include(${PICO_SDK_INIT_CMAKE_FILE})
aux_source_directory(. DIR_SRC_SRCS)
include_directories(../lib/pico-tflmicro)
add_library(src ${DIR_SRC_SRCS})
target_link_libraries(
src
PUBLIC
pico_stdlib
pico-tflmicro
)
#include <cmath>
#include<iostream>
#include <cstdlib>
#include <iostream>
#include "pico/stdlib.h"
#include "model.h"
#include "inference.h"
#include "model_settings.h"
#include "mnist_model_data.h"
#include "mnist_image_data.h"
using namespace std;
#define HALT_CORE_1() while (1) { tight_loop_contents(); }
const uint8_t* test_dataset[] = {
mnist_image_data_0,
mnist_image_data_1,
mnist_image_data_2,
mnist_image_data_3,
mnist_image_data_4,
mnist_image_data_5,
mnist_image_data_6,
mnist_image_data_7,
mnist_image_data_8,
mnist_image_data_9
};
int count_digits(int number) {
if (number == 0) {
return 1; // Special case for 0, which has 1 digit
}
number = abs(number); // Handle negative numbers
return std::floor(std::log10(number)) + 1;
}
void inference_test(void)
{
Model ml_model;
if (!ml_model.setup()) {
printf("Failed to initialize ML model!\n");
HALT_CORE_1();
}
printf("Model initialized\n");
uint8_t* test_image_input = ml_model.input_data();
if (test_image_input == nullptr) {
printf("Cannot set input\n");
HALT_CORE_1();
}
int byte_size = ml_model.byte_size();
if (!byte_size) {
printf("Byte size not found\n");
HALT_CORE_1();
}
while (true) {
int random = rand() % 10;
const uint8_t* sample_data = test_dataset[random];
for (int i=0; i<image_row_size; i++) {
for (int j=0; j<image_col_size; j++) {
int num = sample_data[image_col_size*i + j];
int space = 3 - count_digits(num);
printf("%d", num);
for (int i = 0; i < space; ++i) {
printf(" ");
}
}
printf("\n");
}
memcpy(test_image_input, sample_data, byte_size);
int result = ml_model.predict();
if (result == NAN) {
printf("Failed to run inference\n");
} else {
printf("Actual: %d, Predicted: %d\n", random, result);
}
sleep_ms(10000);
}
}
\ No newline at end of file
#ifndef TFLITE_INFERENCE_TEST_INFERENCE_H_
#define TFLITE_INFERENCE_TEST_INFERENCE_H_
#include <stdio.h>
#include <cstdint>
#include "pico/stdlib.h"
#include "pico/multicore.h"
// #include "hardware/irq.h"
#define DIGIT_SIZE 28
#define NUM_BOX 4
void inference_test(void);
#endif // TFLITE_INFERENCE_TEST_INFERENCE_H_
\ No newline at end of file
#ifndef TFLITE_INFERENCE_TEST_MNIST_IMAGE_DATA_H_
#define TFLITE_INFERENCE_TEST_MNIST_IMAGE_DATA_H_
#include <cstdint>
extern const uint8_t mnist_image_data_0[];
extern const uint8_t mnist_image_data_1[];
extern const uint8_t mnist_image_data_2[];
extern const uint8_t mnist_image_data_3[];
extern const uint8_t mnist_image_data_4[];
extern const uint8_t mnist_image_data_5[];
extern const uint8_t mnist_image_data_6[];
extern const uint8_t mnist_image_data_7[];
extern const uint8_t mnist_image_data_8[];
extern const uint8_t mnist_image_data_9[];
#endif // TFLITE_INFERENCE_TEST_MNIST_IMAGE_DATA_H_
#ifndef TFLITE_INFERENCE_TEST_MNIST_MODEL_DATA_H_
#define TFLITE_INFERENCE_TEST_MNIST_MODEL_DATA_H_
#include <cstdint>
extern const unsigned char mnist_model_data[];
extern const int mnist_model_data_len;
#endif // TFLITE_INFERENCE_TEST_MNIST_MODEL_DATA_H_
#include "tensorflow/lite/micro/tflite_bridge/micro_error_reporter.h"
#include "tensorflow/lite/schema/schema_generated.h"
#include "tensorflow/lite/micro/micro_mutable_op_resolver.h"
#include "tensorflow/lite/micro/micro_interpreter.h"
#include "model.h"
#include "model_settings.h"
// TODO: 4. Import your model data
Model::Model() :
model(nullptr),
interpreter(nullptr),
input(nullptr),
error_reporter(nullptr)
{
}
Model::~Model()
{
if (interpreter != NULL) {
delete interpreter;
interpreter = NULL;
}
if (model != NULL) {
delete model;
model = NULL;
}
if (input != NULL) {
delete input;
input = NULL;
}
if (error_reporter != NULL) {
delete error_reporter;
error_reporter = NULL;
}
}
int Model::setup()
{
static tflite::MicroErrorReporter micro_error_reporter;
error_reporter = &micro_error_reporter;
model = tflite::GetModel(/* TODO: 5. Load your model. */);
if (model->version() != TFLITE_SCHEMA_VERSION) {
TF_LITE_REPORT_ERROR(error_reporter,
"Model provided is schema version %d not equal "
"to supported version %d.",
model->version(), TFLITE_SCHEMA_VERSION);
return 0;
}
static tflite::MicroMutableOpResolver</* TODO: 6. Change operations resolver size. */> micro_op_resolver;
// TODO: 7. Add operations according to your model.
static uint8_t tensor_arena[arena_size];
// Build an interpreter to run the model with.
// NOLINTNEXTLINE(runtime-global-variables)
static tflite::MicroInterpreter static_interpreter(
model, micro_op_resolver, tensor_arena, arena_size);
interpreter = &static_interpreter;
// TODO: 8. Allocate tensor
// Get information about the memory area to use for the model's input.
input = interpreter->input(0);
return 1;
}
uint8_t* Model::input_data() {
if (input == nullptr) {
return nullptr;
}
return input->data.uint8;
}
int Model::byte_size() {
if (input == nullptr) {
return 0;
}
return input->bytes;
}
int Model::predict()
{
printf("Invocation started\n");
// TODO: 9. Run invoke inference, if error, return -1
printf("Invocation finished\n");
TfLiteTensor* output = interpreter->output(0);
int result = -1;
// TODO: 10. Return an index of the output neuron, which has maximum probability.
return result;
}
\ No newline at end of file
#ifndef TFLITE_INFERENCE_TEST_MODEL_H_
#define TFLITE_INFERENCE_TEST_MODEL_H_
#include "tensorflow/lite/micro/tflite_bridge/micro_error_reporter.h"
#include "tensorflow/lite/micro/micro_interpreter.h"
#include "tensorflow/lite/micro/micro_mutable_op_resolver.h"
#include "tensorflow/lite/schema/schema_generated.h"
class Model {
public:
Model();
virtual ~Model();
int setup();
int predict();
uint8_t* input_data();
int byte_size();
const tflite::Model* model = nullptr;
TfLiteTensor* input = nullptr;
tflite::MicroInterpreter* interpreter = nullptr;
tflite::ErrorReporter* error_reporter = nullptr;
private:
};
#endif // TFLITE_INFERENCE_TEST_MODEL_H_
\ No newline at end of file
#ifndef TFLITE_INFERENCE_TEST_MODEL_SETTINGS_H_
#define TFLITE_INFERENCE_TEST_MODEL_SETTINGS_H_
constexpr int kNumCols = 96;
constexpr int kNumRows = 96;
constexpr int kNumChannels = 1;
constexpr int kMaxImageSize = kNumCols * kNumRows * kNumChannels;
constexpr int kCategoryCount = 2;
constexpr int kPersonIndex = 1;
constexpr int kNotAPersonIndex = 0;
extern const char* kCategoryLabels[kCategoryCount];
constexpr int image_col_size = 28;
constexpr int image_row_size = 28;
constexpr int arena_size = -1; // TODO: 3. Edit this for your own model.
#endif // TFLITE_INFERENCE_TEST_MODEL_SETTINGS_H_
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment