35 #ifndef CONTIKI_CONF_H_
36 #define CONTIKI_CONF_H_
40 #define CTK_CONF_MENU_KEY CH_ESC
41 #define CTK_CONF_WINDOWSWITCH_KEY 0x17
42 #define CTK_CONF_WIDGETUP_KEY 0x01
43 #define CTK_CONF_WIDGETDOWN_KEY '\t'
46 #define MOUSE_CONF_XTOC(x) ((x) * 2 / 7)
48 #define MOUSE_CONF_XTOC(x) ((x) / 7)
50 #define MOUSE_CONF_YTOC(y) ((y) / 8)
53 #define IRC_CONF_WIDTH 80
55 #define IRC_CONF_WIDTH 40
57 #define IRC_CONF_HEIGHT 23
59 #ifndef TELNETD_CONF_MAX_IDLE_TIME
60 #define TELNETD_CONF_MAX_IDLE_TIME 300
64 #define WWW_CONF_WEBPAGE_WIDTH 80
66 #define WWW_CONF_WEBPAGE_WIDTH 40
68 #define WWW_CONF_WEBPAGE_HEIGHT 19
69 #define WWW_CONF_HISTORY_SIZE 4
70 #define WWW_CONF_WGET_EXEC(url) exec("wget", url)