- 博客(4)
- 问答 (1)
- 收藏
- 关注
原创 嵌入式Linux开发学习——字符格式与LCD
⑤根据编码值 charcode 找到 glyph_index:glyph_index = FT_Get_Char_Index(face,charcode)上面的⑤⑥⑦可以使用一个函数代替:FT_Load_Char(face, charcode, FT_LOAD_RENDER),它就可以得到位图。⑥根据 glyph_index 取出 glyph:FT_Load_Glyph(face,glyph_index)③设置字体大小:FT_Set_Char_Sizes 或 FT_Set_Pixel_Sizes。
2023-07-31 23:31:42
302
1
原创 嵌入式Linux开发学习——文件IO
7 Miscellaneous (including macro packages and conventions), e.g. man(7), groff(7) / /杂项。5 File formats and conventions eg /etc/passwd // 文件格式和约定, 比如 man 5 passwd。4 Special files (usually found in /dev) // 特殊文件, 比如 man 4 tty。6 Games // 游戏。2、man手册的使用。
2023-07-30 20:31:22
136
1
原创 嵌入式Linux开发学习——Makefile
Makefile会执行第一个目标命令,当有多个目标时,需要在make后面跟上对应的目标,但当目标文件已经存在时,就执行不了clean操作,因此需要将clean定义为假想目标,此时不管源路径中存不存在clean文件,都可以执行clean操作。$(patsubst pattern,replacement,$(var))从var变量中取出每一个值,将符合pattern格式的值替换成replment格式的。$(filter-out pattern...,text) 在text中取出不符合pattern格式的值。
2023-07-30 20:02:16
152
1
空空如也
Ubuntu20.04增强工具安装失败
2021-05-30
TA创建的收藏夹 TA关注的收藏夹
TA关注的人
RSS订阅