X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=examples%2Fdemo%2Fcfg%2Fcfg_gfx.h;h=59dde04c8ba87525b86d44ed48af4bbeeb31f0c9;hb=44c33872116ab2e2b96f9d919f926c4a9179d796;hp=096c427d6bd0a887c2339359a6e2f2f3f025486b;hpb=f2b95d2dc8b0763ca5265e80dcae8ffed6021742;p=bertos.git diff --git a/examples/demo/cfg/cfg_gfx.h b/examples/demo/cfg/cfg_gfx.h index 096c427d..59dde04c 100644 --- a/examples/demo/cfg/cfg_gfx.h +++ b/examples/demo/cfg/cfg_gfx.h @@ -32,43 +32,36 @@ * * \brief Configuration file for GFX module. * - * \version $Id$ - * * \author Daniele Basile */ #ifndef CFG_GFX_H #define CFG_GFX_H -/// Enable line clipping algorithm. +/** + * Enable line clipping algorithm. + * $WIZ$ type = "boolean" + */ #define CONFIG_GFX_CLIPPING 1 -/// Enable text rendering in bitmaps. +/** + * Enable text rendering in bitmaps. + * $WIZ$ type = "boolean" + */ #define CONFIG_GFX_TEXT 1 -/// Enable virtual coordinate system. +/** + * Enable virtual coordinate system. + * $WIZ$ type = "boolean" + */ #define CONFIG_GFX_VCOORDS 1 -/// Select bitmap pixel format. -#define CONFIG_BITMAP_FMT BITMAP_FMT_PLANAR_V_LSB - /** - * \name Type for the chart dataset - * \{ + * Select bitmap pixel format. + * $WIZ$ type = "enum" + * $WIZ$ value_list = "bitmap_format" */ -#define CONFIG_CHART_TYPE_X uint8_t -#define CONFIG_CHART_TYPE_Y uint8_t -/*\}*/ - - -/// Enable button bar behind menus -#define CONFIG_MENU_MENUBAR 0 -#define CONFIG_LEVELEDIT_TIMEOUT 0 -#define CONFIG_MENU_TIMEOUT 0 - -/// Enable smooth scrolling in menus -#define CONFIG_MENU_SMOOTH 0 - +#define CONFIG_BITMAP_FMT BITMAP_FMT_PLANAR_V_LSB #endif /* CFG_GFX_H */