⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 font.c

📁 avr LCM SSD1289 color Graphical LCD Display Driver and graphic library
💻 C
字号:
/****************************************************************************
* File:         font.c
* Author:       jaruwit supa
* Compiler:     AVRGCC
* Description:  font library
* Notes:        Base on FontEditor written by H. Reddmann
*
******************************************************************************/
/* _____STANDARD INCLUDES____________________________________________________ */
#include <avr/io.h>
#include <avr/pgmspace.h>

/* _____PROJECT INCLUDES_____________________________________________________ */
#include "graphic.h"
#include "font.h"

/* _____LOCAL DEFINE_________________________________________________________ */
#define FONT_HEADER_SIZE            7     // header size of fonts

/* _____LOCAL VARIABLES______________________________________________________ */
uint8_t 	*FontPointer; 		//Font	Pointer
uint8_t 	rot = 0;			//Rot 0=0

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -