px-fwlib 0.10.0
Cross-platform embedded library and documentation for 8/16/32-bit microcontrollers generated with Doxygen 1.9.2
px_gfx_cfg_template.h
1#ifndef __PX_GFX_CFG_H__
2#define __PX_GFX_CFG_H__
3/* =============================================================================
4 ____ ___ ____ ___ _ _ ___ __ __ ___ __ __ TM
5 | _ \ |_ _| / ___| / _ \ | \ | | / _ \ | \/ | |_ _| \ \/ /
6 | |_) | | | | | | | | | | \| | | | | | | |\/| | | | \ /
7 | __/ | | | |___ | |_| | | |\ | | |_| | | | | | | | / \
8 |_| |___| \____| \___/ |_| \_| \___/ |_| |_| |___| /_/\_\
9
10 Copyright (c) 2018 Pieter Conradie <https://piconomix.com>
11
12 License: MIT
13 https://github.com/piconomix/px-fwlib/blob/master/LICENSE.md
14
15 Title: px_gfx_cfg.h : Simple monochrome graphics library config
16 Author(s): Pieter Conradie
17 Creation Date: 2018-03-29
18
19============================================================================= */
20
21/* _____STANDARD INCLUDES____________________________________________________ */
22
23/* _____PROJECT INCLUDES_____________________________________________________ */
24#include "px_defs.h"
25
26/// Display size X in pixels
27#define PX_GFX_DISP_SIZE_X 128
28
29/// Display size Y in pixels
30#define PX_GFX_DISP_SIZE_Y 64
31
32/// Maximum allocated string size
33#define PX_GFX_CFG_STR_BUFFER_SIZE 32
34
35/// Default font
36#define PX_GFX_CFG_DEFAULT_FONT px_gfx_font_5x7
37
38/* _____DEFINITIONS__________________________________________________________ */
39
40#endif