WIP: Sync from fork #2

Draft
CommanderRedYT wants to merge 2 commits from CommanderRedYT/main into main
4 changed files with 19 additions and 0 deletions

View File

@ -1,5 +1,9 @@
#include "TomThumb.h"
#include "sdkconfig.h"
#ifdef CONFIG_TFT_LOAD_GFXFF
namespace espgui {
#define TOMTHUMB_USE_EXTENDED 0
@ -430,3 +434,4 @@ const GFXfont TomThumb {
0x20, 0x7E, 6 };
} // namespace espgui
#endif

View File

@ -48,6 +48,10 @@
#pragma once
#include "sdkconfig.h"
#ifdef CONFIG_TFT_LOAD_GFXFF
// system includes
#include <cstdint>
@ -63,3 +67,4 @@ extern const GFXglyph TomThumbGlyphs[];
extern const GFXfont TomThumb;
} // namespace espgui
#endif

View File

@ -1,5 +1,8 @@
#include "din1451alt10pt8b.h"
#include "sdkconfig.h"
#ifdef CONFIG_TFT_LOAD_GFXFF
namespace espgui {
const uint8_t din1451alt10pt8bBitmaps[] = {
@ -461,3 +464,4 @@ const GFXfont din1451alt10pt8b {
// Approx. 4245 bytes
} // namespace espgui
#endif

View File

@ -1,5 +1,9 @@
#pragma once
#include "sdkconfig.h"
#ifdef CONFIG_TFT_LOAD_GFXFF
// system includes
#include <cstdint>
@ -15,3 +19,4 @@ extern const GFXglyph din1451alt10pt8bGlyphs[];
extern const GFXfont din1451alt10pt8b;
} // namespace espgui
#endif