X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=appconfig.h;h=6a372c80729aecab73df13fdb546c1c7c018fdd0;hb=6b2099c56772961182353617a8d4b839f6a1a6db;hp=38c345bc8a874c00bfd8b631274a1c2f40d73b9b;hpb=3fe111f7f4553bcddac984241cec6db0cbf81eb9;p=bertos.git diff --git a/appconfig.h b/appconfig.h index 38c345bc..6a372c80 100755 --- a/appconfig.h +++ b/appconfig.h @@ -1,8 +1,8 @@ /*! * \file * * * \brief DevLib configuration options @@ -46,6 +46,18 @@ /*#* *#* $Log$ + *#* Revision 1.11 2006/04/11 00:08:53 bernie + *#* Add smooth scrolling for menus. + *#* + *#* Revision 1.10 2006/03/22 09:48:51 bernie + *#* Add a few more config options. + *#* + *#* Revision 1.9 2006/02/24 00:27:35 bernie + *#* Enable kernel and fix Doxygen markup. + *#* + *#* Revision 1.8 2006/02/21 16:06:05 bernie + *#* Update copyright info. + *#* *#* Revision 1.7 2006/02/17 22:28:19 bernie *#* Add missing UART definitions. *#* @@ -66,25 +78,6 @@ *#* *#* Revision 1.1 2005/11/04 17:42:12 bernie *#* Move cfg/config.h to appconfig.h. - *#* - *#* Revision 1.1 2005/04/11 19:04:13 bernie - *#* Move top-level headers to cfg/ subdir. - *#* - *#* Revision 1.5 2004/12/08 08:04:28 bernie - *#* Add missing config options. - *#* - *#* Revision 1.4 2004/08/25 14:12:08 rasky - *#* Aggiornato il comment block dei log RCS - *#* - *#* Revision 1.3 2004/08/24 14:30:11 bernie - *#* Use new-style config macros for drv/timer.c - *#* - *#* Revision 1.2 2004/08/05 18:46:52 bernie - *#* Documentation improvements. - *#* - *#* Revision 1.1 2004/07/29 23:34:32 bernie - *#* Add template configuration file. - *#* *#*/ #ifndef CONFIG_COMMON_H @@ -105,11 +98,11 @@ #define CONFIG_PRINTF PRINTF_FULL /*! - * Multithreading kernel + * Multithreading kernel. * - * /sa config_kernel.h + * \sa config_kern.h */ -#define CONFIG_KERNEL 0 +#define CONFIG_KERNEL 1 /*! * \name Serial driver parameters @@ -199,7 +192,24 @@ /// Keyboard polling method #define CONFIG_KBD_POLL KBD_POLL_SOFTINT +/// Enable keyboard event delivery to observers +#define CONFIG_KBD_OBSERVER 0 + +/// Enable key beeps +#define CONFIG_KBD_BEEP 1 + +/*! + * \name Type for the chart dataset + * \{ + */ +#define CONFIG_CHART_TYPE_X uint8_t +#define CONFIG_CHART_TYPE_Y uint8_t +/*\}*/ + /// Enable button bar behind menus #define CONFIG_MENU_MENUBAR 0 +/// Enable smooth scrolling in menus +#define CONFIG_MENU_SMOOTH 1 + #endif /* CONFIG_COMMON_H */