Mercurial > public > ostc4
diff Discovery/Inc/gfx_fonts.h @ 1016:0dd92e9b70a2 BootloaderOstc5
Bootloader use compressed fonts:
The previous Bootloader was larger than 128k => not fitting into the first sectors of the second flash bank. Most memory is occupied by the two fonts in use. In order to make the bootloader small enough for the bootloader update function the fonts need to be compressed. To avoid code changes in visualization functions the compressed fonts are decompressed into RAM and then used in the same way as before.
| author | Ideenmodellierer |
|---|---|
| date | Wed, 28 May 2025 17:20:44 +0200 |
| parents | bc6c90e20d9e |
| children |
line wrap: on
line diff
--- a/Discovery/Inc/gfx_fonts.h Tue May 06 21:56:03 2025 +0200 +++ b/Discovery/Inc/gfx_fonts.h Wed May 28 17:20:44 2025 +0200 @@ -55,8 +55,10 @@ extern const tFont Awe48; extern const tFont FontT24; +extern const tFont FontT24min; extern const tFont FontT42; extern const tFont FontT48; +extern const tFont FontT48min; extern const tFont FontT54; extern const tFont FontT84; extern const tFont FontT105;
