Initial commit
This commit is contained in:
20
FW/Core/my_src/font_text.h
Normal file
20
FW/Core/my_src/font_text.h
Normal file
@@ -0,0 +1,20 @@
|
||||
#ifndef __TEXT_H__
|
||||
#define __TEXT_H__
|
||||
//////////////////////////////////////////////////////////////////////////////////
|
||||
//本程序只供学习使用,未经作者许可,不得用于其它任何用途
|
||||
//ALIENTEK STM32开发板
|
||||
//汉字显示 驱动代码
|
||||
//正点原子@ALIENTEK
|
||||
//技术论坛:www.openedv.com
|
||||
//创建日期:2016/1/7
|
||||
//版本:V1.0
|
||||
//版权所有,盗版必究。
|
||||
//Copyright(C) 广州市星翼电子科技有限公司 2014-2024
|
||||
//All rights reserved
|
||||
//////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
void Get_HzMat(unsigned char *code,unsigned char *mat,unsigned char size); //得到汉字的点阵码
|
||||
void Show_Font(unsigned short x,unsigned short y,unsigned char *font,unsigned char size,unsigned char mode); //在指定位置显示一个汉字
|
||||
void Show_Str(unsigned short x,unsigned short y,unsigned short width,unsigned short height,unsigned char*str,unsigned char size,unsigned char mode); //在指定位置显示一个字符串
|
||||
void Show_Str_Mid(unsigned short x,unsigned short y,unsigned char*str,unsigned char size,unsigned char len);
|
||||
#endif
|
||||
Reference in New Issue
Block a user