From f6583713e24d19800f93733fb5adba6a8408b6f5 Mon Sep 17 00:00:00 2001 From: asterix Date: Mon, 13 Jun 2011 09:55:26 +0000 Subject: [PATCH] Revert commit. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@4954 38d2e660-2303-0410-9eaa-f027e97ec537 --- .../examples/sam3n-ek_display/cfg/cfg_menu.h | 67 +++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 boards/sam3n-ek/examples/sam3n-ek_display/cfg/cfg_menu.h diff --git a/boards/sam3n-ek/examples/sam3n-ek_display/cfg/cfg_menu.h b/boards/sam3n-ek/examples/sam3n-ek_display/cfg/cfg_menu.h new file mode 100644 index 00000000..bbfa1e76 --- /dev/null +++ b/boards/sam3n-ek/examples/sam3n-ek_display/cfg/cfg_menu.h @@ -0,0 +1,67 @@ +/** + * \file + * + * + * \brief Configuration file for Menu module. + * + * \author Daniele Basile + */ + +#ifndef CFG_MENU_H +#define CFG_MENU_H + +/** + * Enable button bar behind menus + * $WIZ$ type = "boolean" + */ +#define CONFIG_MENU_MENUBAR 0 + +/** + * Level Edit Timeout + * $WIZ$ type = "boolean" + */ +#define CONFIG_LEVELEDIT_TIMEOUT 0 + +/** + * Menu timeout + * $WIZ$ type = "boolean" + */ +#define CONFIG_MENU_TIMEOUT 0 + +/** + * Enable smooth scrolling in menus + * $WIZ$ type = "boolean" + */ +#define CONFIG_MENU_SMOOTH 1 + + +#endif /* CFG_MENU_H */ + -- 2.25.1