From 6111814aec653e0e93cf21a54ad6538454307237 Mon Sep 17 00:00:00 2001 From: oliverschmidt Date: Sun, 31 Jan 2010 18:30:50 +0000 Subject: [PATCH] Added configuration values for the IRC client example. --- platform/apple2enh/contiki-conf.h | 6 +++++- platform/c64/contiki-conf.h | 6 +++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/platform/apple2enh/contiki-conf.h b/platform/apple2enh/contiki-conf.h index eba23ce59..cae382846 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.16 2010/01/30 20:48:31 oliverschmidt Exp $ + * $Id: contiki-conf.h,v 1.17 2010/01/31 18:30:50 oliverschmidt Exp $ */ #ifndef __CONTIKI_CONF_H__ @@ -48,9 +48,13 @@ #define MOUSE_CONF_XTOC(x) ((x) * 2 / 7) #define MOUSE_CONF_YTOC(y) ((y) / 8) +#define IRC_CONF_WIDTH 80 +#define IRC_CONF_HEIGHT 23 + #define WEBSERVER_CONF_CGI_CONNS UIP_CONNS #define WEBSERVER_CONF_CFS_CONNS 7 +#define WWW_CONF_WEBPAGE_WIDTH 80 #define WWW_CONF_WEBPAGE_HEIGHT 19 #define WWW_CONF_HISTORY_SIZE 4 #define WWW_CONF_MAX_URLLEN 78 diff --git a/platform/c64/contiki-conf.h b/platform/c64/contiki-conf.h index 32072b0e3..73e42f746 100644 --- a/platform/c64/contiki-conf.h +++ b/platform/c64/contiki-conf.h @@ -30,7 +30,7 @@ * * Author: Oliver Schmidt * - * $Id: contiki-conf.h,v 1.17 2010/01/30 20:48:31 oliverschmidt Exp $ + * $Id: contiki-conf.h,v 1.18 2010/01/31 18:30:50 oliverschmidt Exp $ */ #ifndef __CONTIKI_CONF_H__ @@ -56,10 +56,14 @@ #define WIDGETCOLOR_FWIN COLOR_LIGHTBLUE #define WIDGETCOLOR_HLINK COLOR_CYAN +#define IRC_CONF_WIDTH 40 +#define IRC_CONF_HEIGHT 24 + #define WEBSERVER_CONF_CGI_CONNS UIP_CONNS #define WEBSERVER_CONF_CFS_CONNS 8 #define WWW_CONF_WEBPAGE_WIDTH 40 +#define WWW_CONF_WEBPAGE_HEIGHT 20 #define WWW_CONF_HISTORY_SIZE 4 #define WWW_CONF_MAX_URLLEN 38 #define WWW_CONF_MAX_NUMPAGEWIDGETS 20