fbergama / pigfx

PiGFX is a bare metal kernel for the Raspberry Pi that implements a basic ANSI terminal emulator with the additional support of some primitive graphics functions.
MIT License
278 stars 62 forks source link

How to load custom fonts? #59

Closed ProgrammingCube closed 3 years ago

ProgrammingCube commented 3 years ago

I'm making a cp 437 font for the pigfx, but I am unsure of how to load it from the sd card. The terminal codes don't seem to have a command to do so, but they do have a way to load 1 of the 3 trs font sizes.

chregu82 commented 3 years ago

Loading custom fonts at runtime is not implemented. At the moment the only possible way is to modify the source code with your own font.

ProgrammingCube commented 3 years ago

damn, got it! I'll try doing that