?? font.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 + -