From 70fe24817e9854efc9427629e097cd1788bdadf5 Mon Sep 17 00:00:00 2001 From: oliverschmidt Date: Tue, 18 Dec 2007 17:51:20 +0000 Subject: [PATCH] Added target-specifc ctk (and www) configuration values. --- platform/apple2enh/contiki-conf.h | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/platform/apple2enh/contiki-conf.h b/platform/apple2enh/contiki-conf.h index de0b16f2c..c7c80beba 100644 --- a/platform/apple2enh/contiki-conf.h +++ b/platform/apple2enh/contiki-conf.h @@ -30,7 +30,7 @@ * * Author: Oliver Schmidt * - * $Id: contiki-conf.h,v 1.7 2007/11/27 22:03:29 oliverschmidt Exp $ + * $Id: contiki-conf.h,v 1.8 2007/12/18 17:51:20 oliverschmidt Exp $ */ #ifndef __CONTIKI_CONF_H__ @@ -45,7 +45,29 @@ #define UIP_CONF_UDP_CHECKSUMS 1 #define UIP_CONF_LOGGING 1 +#define CTK_CONF_MENU_KEY CH_ESC +#define CTK_CONF_WINDOWSWITCH_KEY 0x17 /* Ctrl-W */ +#define CTK_CONF_WIDGETUP_KEY 0x01 /* Ctrl-A */ +#define CTK_CONF_WIDGETDOWN_KEY '\t' /* Tab or Ctrl-I */ +#define CTK_CONF_WIDGET_FLAGS 0 +#define CTK_CONF_WINDOWS 0 +#define CTK_CONF_WINDOWMOVE 0 +#define CTK_CONF_WINDOWCLOSE 0 +#define CTK_CONF_ICONS 0 +#define CTK_CONF_MENUS 0 +#define CTK_CONF_SCREENSAVER 0 +#define CTK_CONF_MOUSE_SUPPORT 0 + #define WEBSERVER_CONF_CGI_CONNS UIP_CONNS #define WEBSERVER_CONF_CFS_CONNS 3 +#define WWW_CONF_WEBPAGE_HEIGHT 19 +#define WWW_CONF_HISTORY_SIZE 4 +#define WWW_CONF_MAX_URLLEN 78 +#define WWW_CONF_MAX_NUMPAGEWIDGETS 20 +#define WWW_CONF_MAX_FORMACTIONLEN 20 +#define WWW_CONF_MAX_FORMNAMELEN 20 +#define WWW_CONF_MAX_INPUTNAMELEN 20 +#define WWW_CONF_MAX_INPUTVALUELEN 20 + #endif /* __CONTIKI_CONF_H__ */