STM32H750XB_RT-THREAD/26-27-LTDC—液晶显示/4-LTDC—液晶显示中文(字库在SD卡)/字库文件/字模公式.txt
2025-07-21 14:34:29 +08:00

8 lines
190 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

寻址公式:
pos = ((High8bit-0xa1)*94+Low8bit-0xa1)*24*24/8;
其中24*24/8 的24*24为矩阵大小根据自己的配置修改。
工程中读取字模的函数为 bsp_spi_flash.c 文件的 GetGBKCode_from_EXFlash 。