diff options
Diffstat (limited to 'src/gdisp/mcufont/mf_bwfont.c')
-rw-r--r-- | src/gdisp/mcufont/mf_bwfont.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gdisp/mcufont/mf_bwfont.c b/src/gdisp/mcufont/mf_bwfont.c index b185b57f..8dc88f9d 100644 --- a/src/gdisp/mcufont/mf_bwfont.c +++ b/src/gdisp/mcufont/mf_bwfont.c @@ -6,6 +6,9 @@ */ #include "mf_bwfont.h" + +#ifndef MF_NO_COMPILE + #include <stdbool.h> /* Find the character range and index that contains a given glyph.. */ @@ -139,3 +142,5 @@ uint8_t mf_bwfont_character_width(const struct mf_font_s *font, return get_width(range, index); } + +#endif //MF_NO_COMPILE |